Go to the source code of this file.
Functions | |
| void | poisson3D (double x[], int itol, double tol, int itmax) |
|
||||||||||||||||||||
|
Definition at line 54 of file finite_element_3D_poisson.h. References b, linbcg(), Ng, and printf(). Referenced by main(). 00055 { 00056 printf("\nSolving the 3D Poisson equation...\n"); 00057 00058 // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 00059 // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 00060 linbcg(Ng,b,x,itol,tol,itmax); 00061 // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 00062 // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 00063 00064 printf("Poisson equation solved...\n\n"); 00065 }
|