Changeset 6412 for issm/trunk/src/c/solutions/steadystate_core.cpp
- Timestamp:
- 10/25/10 08:57:04 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/solutions/steadystate_core.cpp
r6323 r6412 32 32 for(;;){ 33 33 34 ISSMPRINTF(VerboseSolution(),"%s%i\n"," computing temperature and velocity for step: ",step);34 _printf_(VerboseSolution(),"%s%i\n"," computing temperature and velocity for step: ",step); 35 35 thermal_core(femmodel); 36 36 37 ISSMPRINTF(VerboseSolution(),"%s\n"," computing new velocity");37 _printf_(VerboseSolution(),"%s\n"," computing new velocity"); 38 38 diagnostic_core(femmodel); 39 39 40 40 if (step>1){ 41 ISSMPRINTF(VerboseSolution(),"%s\n"," checking velocity, temperature and pressure convergence");41 _printf_(VerboseSolution(),"%s\n"," checking velocity, temperature and pressure convergence"); 42 42 if(steadystateconvergence(femmodel)) break; 43 43 } 44 44 45 ISSMPRINTF(VerboseSolution(),"%s\n"," saving velocity, temperature and pressure to check for convergence at next step");45 _printf_(VerboseSolution(),"%s\n"," saving velocity, temperature and pressure to check for convergence at next step"); 46 46 InputDuplicatex(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VxEnum,VxOldEnum); 47 47 InputDuplicatex(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VyEnum,VyOldEnum); … … 55 55 56 56 if(solution_type==SteadystateSolutionEnum && !control_analysis){ 57 ISSMPRINTF(VerboseSolution()," saving results\n");57 _printf_(VerboseSolution()," saving results\n"); 58 58 InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VxEnum); 59 59 InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VyEnum);
Note:
See TracChangeset
for help on using the changeset viewer.