Changeset 9030
- Timestamp:
- 07/18/11 08:09:41 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/solutions/diagnostic_core.cpp
r8926 r9030 49 49 if(ishutter){ 50 50 51 _printf_(Verbose Control(),"%s\n"," computing hutter velocities");51 _printf_(VerboseSolution(),"%s\n"," computing hutter velocities"); 52 52 53 53 //Take the last velocity into account so that the velocity on the MacAyeal domain is not zero … … 62 62 if (ismacayealpattyn ^ isstokes){ // ^ = xor 63 63 64 _printf_(Verbose Control(),"%s\n"," computing velocities");64 _printf_(VerboseSolution(),"%s\n"," computing velocities"); 65 65 femmodel->SetCurrentConfiguration(DiagnosticHorizAnalysisEnum); 66 66 solver_nonlinear(femmodel,modify_loads); … … 69 69 if (ismacayealpattyn && isstokes){ 70 70 71 _printf_(Verbose Control(),"%s\n"," computing coupling macayealpattyn and stokes velocities and pressure ");71 _printf_(VerboseSolution(),"%s\n"," computing coupling macayealpattyn and stokes velocities and pressure "); 72 72 solver_stokescoupling_nonlinear(femmodel,conserve_loads); 73 73 } … … 75 75 if (dim==3 & (ishutter || ismacayealpattyn)){ 76 76 77 _printf_(Verbose Control(),"%s\n"," computing vertical velocities");77 _printf_(VerboseSolution(),"%s\n"," computing vertical velocities"); 78 78 femmodel->SetCurrentConfiguration(DiagnosticVertAnalysisEnum); 79 79 solver_linear(femmodel); … … 82 82 83 83 if(solution_type==DiagnosticSolutionEnum && !control_analysis){ 84 _printf_(Verbose Control()," saving results\n");84 _printf_(VerboseSolution()," saving results\n"); 85 85 InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VxEnum); 86 86 InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VyEnum);
Note:
See TracChangeset
for help on using the changeset viewer.