Changeset 19138
- Timestamp:
- 02/20/15 10:02:35 (10 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/ThermalAnalysis.cpp
r18930 r19138 8 8 void ThermalAnalysis::CreateConstraints(Constraints* constraints,IoModel* iomodel){/*{{{*/ 9 9 10 /*Intermediary*/ 11 int finiteelement = P1Enum; 12 10 13 /*Only 3d mesh supported*/ 11 int finiteelement = P1Enum; 12 if(iomodel->domaintype==Domain3DEnum){ 14 if(iomodel->domaintype!=Domain3DEnum) _error_("not supported yet"); 15 16 /*Specific case for PDD, we want the constaints to be updated by the PDD scheme itself*/ 17 bool isdynamic = false; 18 if(iomodel->solution_enum==ThermalSolutionEnum){ 19 /*No PDD scheme, keep default*/ 20 } 21 else if (iomodel->solution_enum==TransientSolutionEnum){ 22 int smb_model; 23 iomodel->Constant(&smb_model,SurfaceforcingsEnum); 24 if(smb_model==SMBpddEnum) isdynamic=true; 25 } 26 else{ 27 _error_("Solution "<<EnumToStringx(iomodel->solution_enum)<<" not supported yet"); 28 } 29 30 if(isdynamic){ 31 IoModelToDynamicConstraintsx(constraints,iomodel,ThermalSpctemperatureEnum,ThermalAnalysisEnum,finiteelement); 32 } 33 else{ 13 34 IoModelToConstraintsx(constraints,iomodel,ThermalSpctemperatureEnum,ThermalAnalysisEnum,finiteelement); 14 35 } -
issm/trunk-jpl/src/c/classes/FemModel.cpp
r19095 r19138 161 161 /*Open input file on cpu 0 and create IoModel */ 162 162 if(my_rank==0) IOMODEL = pfopen0(inputfilename ,"rb"); 163 IoModel* iomodel = new IoModel(IOMODEL, trace,X);163 IoModel* iomodel = new IoModel(IOMODEL,in_solution_type,trace,X); 164 164 165 165 /*Figure out what analyses are activated for this solution*/ -
issm/trunk-jpl/src/c/classes/IoModel.cpp
r18879 r19138 21 21 IoModel::IoModel(){/*{{{*/ 22 22 this->fid=NULL; 23 this->solution_enum=-1; 23 24 this->data=NULL; 24 25 this->independents=NULL; … … 50 51 } 51 52 /*}}}*/ 52 IoModel::IoModel(FILE* iomodel_handle, bool trace,IssmPDouble* X){/*{{{*/53 IoModel::IoModel(FILE* iomodel_handle,int solution_enum_in,bool trace,IssmPDouble* X){/*{{{*/ 53 54 54 55 bool autodiff=false; … … 60 61 /*Check that Enums are Synchronized*/ 61 62 this->CheckEnumSync(); 63 64 /*Keep track of solution*/ 65 this->solution_enum = solution_enum_in; 62 66 63 67 /*Initialize data: */ … … 240 244 } 241 245 /*}}}*/ 242 void IoModel::Constant(bool* poutput,int constant_enum){/*{{{*/246 void IoModel::Constant(bool* poutput,int constant_enum){/*{{{*/ 243 247 244 248 _assert_(constant_enum>=0); … … 248 252 } 249 253 /*}}}*/ 250 void IoModel::Constant(int* poutput,int constant_enum){/*{{{*/254 void IoModel::Constant(int* poutput,int constant_enum){/*{{{*/ 251 255 252 256 _assert_(constant_enum>=0); … … 256 260 } 257 261 /*}}}*/ 258 void IoModel::Constant(IssmDouble* poutput,int constant_enum){/*{{{*/262 void IoModel::Constant(IssmDouble* poutput,int constant_enum){/*{{{*/ 259 263 260 264 _assert_(constant_enum>=0); … … 264 268 } 265 269 /*}}}*/ 266 void IoModel::Constant(char** poutput,int constant_enum){/*{{{*/270 void IoModel::Constant(char** poutput,int constant_enum){/*{{{*/ 267 271 268 272 _assert_(constant_enum>=0); … … 291 295 } 292 296 /*}}}*/ 293 void IoModel::StartTrace(bool trace){/*{{{*/297 void IoModel::StartTrace(bool trace){/*{{{*/ 294 298 295 299 bool autodiff = false; … … 331 335 } 332 336 /*}}}*/ 333 void IoModel::DeclareIndependents(bool trace,IssmPDouble* X){/*{{{*/337 void IoModel::DeclareIndependents(bool trace,IssmPDouble* X){/*{{{*/ 334 338 335 339 int i; … … 1516 1520 } 1517 1521 /*}}}*/ 1518 void IoModel::FetchDataToInput(Elements* elements,int vector_enum,IssmDouble default_value){/*{{{*/1522 void IoModel::FetchDataToInput(Elements* elements,int vector_enum,IssmDouble default_value){/*{{{*/ 1519 1523 1520 1524 /*intermediary: */ … … 1541 1545 } 1542 1546 /*}}}*/ 1543 void IoModel::FetchDataToInput(Elements* elements,int vector_enum){/*{{{*/1547 void IoModel::FetchDataToInput(Elements* elements,int vector_enum){/*{{{*/ 1544 1548 1545 1549 /*intermediary: */ … … 1613 1617 } 1614 1618 /*}}}*/ 1615 void IoModel::LastIndex(int *pindex){/*{{{*/1619 void IoModel::LastIndex(int *pindex){/*{{{*/ 1616 1620 1617 1621 int my_rank; … … 1649 1653 } 1650 1654 /*}}}*/ 1651 /*FUNCTION IoModel::SetFilePointerToData{{{*/ 1652 FILE* IoModel::SetFilePointerToData(int* pcode,int* pvector_type, int data_enum){ 1655 FILE* IoModel::SetFilePointerToData(int* pcode,int* pvector_type, int data_enum){/*{{{*/ 1653 1656 1654 1657 int my_rank; -
issm/trunk-jpl/src/c/classes/IoModel.h
r18879 r19138 25 25 /*pointer to input file*/ 26 26 FILE *fid; 27 28 /*Solution*/ 29 int solution_enum; 27 30 28 31 /*Partitioning*/ … … 59 62 ~IoModel(); 60 63 IoModel(); 61 IoModel(FILE* iomodel_handle, bool trace,IssmPDouble* X);64 IoModel(FILE* iomodel_handle,int solution_enum_in,bool trace,IssmPDouble* X); 62 65 63 66 /*Input/Output*/ -
issm/trunk-jpl/src/c/cores/transient_core.cpp
r19047 r19138 23 23 bool isstressbalance,ismasstransport,isFS,isthermal,isgroundingline,isgia,islevelset,isdamageevolution,ishydrology,iscalving; 24 24 bool save_results,dakota_analysis; 25 bool time_adapt =false;25 bool time_adapt; 26 26 int output_frequency; 27 int domaintype,groundingline_migration; 28 int numoutputs = 0; 29 Analysis *analysis = NULL; 30 char** requested_outputs = NULL; 31 27 int domaintype,groundingline_migration,smb_model; 28 int numoutputs; 29 Analysis *analysis = NULL; 30 char **requested_outputs = NULL; 32 31 33 32 /*intermediary: */ 34 int step;33 int step; 35 34 IssmDouble time; 36 35 … … 54 53 femmodel->parameters->FindParam(&isFS,FlowequationIsFSEnum); 55 54 femmodel->parameters->FindParam(&iscalving,TransientIscalvingEnum); 55 femmodel->parameters->FindParam(&smb_model,SurfaceforcingsEnum); 56 56 if(isgroundingline) femmodel->parameters->FindParam(&groundingline_migration,GroundinglineMigrationEnum); 57 57 femmodel->parameters->FindParam(&numoutputs,TransientNumRequestedOutputsEnum); … … 83 83 if(isthermal && domaintype==Domain3DEnum){ 84 84 if(VerboseSolution()) _printf0_(" computing thermal regime\n"); 85 if(smb_model==SMBpddEnum) ResetBoundaryConditions(femmodel,ThermalAnalysisEnum); 85 86 thermal_core(femmodel); 86 87 }
Note:
See TracChangeset
for help on using the changeset viewer.