Changeset 1954
- Timestamp:
- 08/26/09 15:06:48 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/parallel/thermal_core.cpp
r1901 r1954 37 37 int numberofnodes; 38 38 int nsteps; 39 double ndt; 39 40 double dt; 40 double ndt;41 41 42 42 int sub_analysis_type; … … 53 53 fem_t->FindParam((void*)&sub_analysis_type,"sub_analysis_type"); 54 54 fem_t->FindParam((void*)&debug,"debug"); 55 fem_t->FindParam((void*)&ndt,"ndt"); 55 56 fem_t->FindParam((void*)&dt,"dt"); 56 fem_t->FindParam((void*)&ndt,"ndt");57 57 58 if( ndt==0){58 if(dt==0){ 59 59 60 60 time=(double*)xmalloc(sizeof(double)); … … 107 107 108 108 /*Plug results into output dataset: */ 109 if( ndt==0){109 if(dt==0){ 110 110 result=new Result(results->Size()+1,0,1,"t_g",t_g[0]); 111 111 results->AddObject(result);
Note:
See TracChangeset
for help on using the changeset viewer.