Changeset 1823
- Timestamp:
- 08/24/09 17:45:07 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/parallel/transient_core.cpp
r851 r1823 13 13 #include "../issm.h" 14 14 15 void transient_core(DataSet* results, FemModel* fems, ParameterInputs* inputs){15 void transient_core(DataSet* results,Model* model, ParameterInputs* inputs){ 16 16 17 17 extern int my_rank; … … 22 22 int dim=-1; 23 23 24 25 fem_p=fems+5; 24 fem_p=model->Prognostic(); 26 25 27 26 //first recover parameters common to all solutions … … 30 29 //branch out 31 30 if(dim==2){ 32 transient_core_2d(results, fems,inputs);31 transient_core_2d(results,model,inputs); 33 32 } 34 33 else if(dim==3){ 35 transient_core_3d(results, fems,inputs);34 transient_core_3d(results,model,inputs); 36 35 } 37 36 else throw ErrorException(__FUNCT__,exprintf("%s%i%s"," dimension ",dim," not supported yet!"));
Note:
See TracChangeset
for help on using the changeset viewer.