Changeset 16476
- Timestamp:
- 10/21/13 09:48:52 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/steadystate_core.cpp
r16470 r16476 52 52 #ifdef _HAVE_THERMAL_ 53 53 thermal_core(femmodel); 54 femmodel->SetCurrentConfiguration(ThermalAnalysisEnum);/*Could be MeltingAnalysis...*/54 if(!isenthalpy)femmodel->SetCurrentConfiguration(ThermalAnalysisEnum);/*Could be MeltingAnalysis...*/ 55 55 GetSolutionFromInputsx(&tg,femmodel); 56 56 #else -
issm/trunk-jpl/src/c/analyses/thermal_core.cpp
r16470 r16476 47 47 48 48 /*Post process*/ 49 PostprocessingEnthalpyx(femmodel);49 if(solution_type!=SteadystateSolutionEnum) PostprocessingEnthalpyx(femmodel); 50 50 } 51 51 else{ 52 if(VerboseSolution()) _printf0_(" setting basal Dirichlet boundary conditions\n");53 femmodel->UpdateBasalConstraintsEnthalpyx();54 55 52 if(VerboseSolution()) _printf0_(" computing temperatures\n"); 56 53 femmodel->SetCurrentConfiguration(ThermalAnalysisEnum); -
issm/trunk-jpl/src/c/classes/FemModel.cpp
r16473 r16476 1402 1402 /*}}}*/ 1403 1403 #endif 1404 #ifdef _HAVE_THERMAL_1405 void FemModel::UpdateBasalConstraintsEnthalpyx(void){ /*{{{*/1406 1407 for(int i=0;i<elements->Size();i++){1408 Element* element=dynamic_cast<Element*>(elements->GetObjectByOffset(i));1409 element->UpdateBasalConstraintsEnthalpy();1410 }1411 1412 }1413 /*}}}*/1414 #endif -
issm/trunk-jpl/src/c/classes/FemModel.h
r16461 r16476 103 103 void HydrologyEPLupdateDomainx(void); 104 104 #endif 105 #ifdef _HAVE_THERMAL_106 void UpdateBasalConstraintsEnthalpyx(void);107 #endif108 105 }; 109 106
Note:
See TracChangeset
for help on using the changeset viewer.