Go to the source code of this file.
Functions | |
| void | def_d_base_all (void) |
|
|
Definition at line 31 of file def_d_base_all.h. References d_base_geo, d_base_ref, d_theta(), dim, ng, and printf(). Referenced by main(). 00032 { 00033 int k,n; 00034 00035 // printf("\n"); 00036 00037 for(k=0;k<dim;k++) 00038 for(n=0;n<ng;n++){ 00039 d_base_geo[k][n]=d_theta(n,k); 00040 // printf("d_base_geo[%d][%d][%d] = %g\n",k,n,l,d_base_geo[k][n][l]); 00041 } 00042 00043 // printf("\n"); 00044 00045 for(k=0;k<dim;k++) 00046 for(n=0;n<ng;n++){ 00047 d_base_ref[k][n]=d_theta(n,k); 00048 // printf("d_base_ref[%d][%d][%d] = %g\n",k,n,l,d_base_ref[k][n][l]); 00049 } 00050 00051 printf("d_base_geo[][] and d_base_ref[][] are now defined...\n"); 00052 }
|