Changeset 20093
- Timestamp:
- 02/08/16 15:15:15 (9 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/cores/steadystate_core.cpp
r17924 r20093 48 48 for(;;){ 49 49 50 if(VerboseSolution()) _printf0_(" computing temperature and velocity for step: " << step << "\n"); 51 thermal_core(femmodel); 52 if(!isenthalpy)femmodel->SetCurrentConfiguration(ThermalAnalysisEnum);/*Could be MeltingAnalysis...*/ 53 GetSolutionFromInputsx(&tg,femmodel); 50 /* Compute first velocity, then temperature due to high sensitivity of temperature to velocity. */ 51 if(VerboseSolution()) _printf0_(" computing velocity and temperature for step: " << step << "\n"); 54 52 55 53 if(VerboseSolution()) _printf0_(" computing new velocity\n"); 56 54 stressbalance_core(femmodel); 57 55 GetSolutionFromInputsx(&ug,femmodel); 56 57 thermal_core(femmodel); 58 if(!isenthalpy)femmodel->SetCurrentConfiguration(ThermalAnalysisEnum);/*Could be MeltingAnalysis...*/ 59 GetSolutionFromInputsx(&tg,femmodel); 58 60 59 61 if(step>1){
Note:
See TracChangeset
for help on using the changeset viewer.