Changeset 12515 for issm/trunk-jpl/src/c/objects/FemModel.cpp
- Timestamp:
- 06/22/12 16:56:14 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/objects/FemModel.cpp
r12511 r12515 50 50 for(i=0;i<nummodels;i++){ 51 51 52 _printf_(VerboseMProcessor()," Processing finite element model of analysis %s:\n",EnumToStringx(analysis_type_list[i]));52 if(VerboseMProcessor()) _pprintLine_(" Processing finite element model of analysis " << EnumToStringx(analysis_type_list[i]) << ":"); 53 53 analysis_type=analysis_type_list[i]; 54 54 this->SetCurrentConfiguration(analysis_type); 55 55 56 56 if(i==0){ 57 _printf_(VerboseMProcessor()," creating vertex degrees of freedom\n");57 if(VerboseMProcessor()) _pprintLine_(" creating vertex degrees of freedom"); 58 58 VerticesDofx(vertices,parameters); //only call once, we only have one set of vertices 59 59 } 60 60 61 _printf_(VerboseMProcessor()," resolving node constraints\n");61 if(VerboseMProcessor()) _pprintLine_(" resolving node constraints"); 62 62 SpcNodesx(nodes,constraints,parameters,analysis_type); 63 63 64 _printf_(VerboseMProcessor()," creating nodal degrees of freedom\n");64 if(VerboseMProcessor()) _pprintLine_(" creating nodal degrees of freedom"); 65 65 NodesDofx(nodes,parameters,analysis_type); 66 66 67 _printf_(VerboseMProcessor()," configuring element and loads\n");67 if(VerboseMProcessor()) _pprintLine_(" configuring element and loads"); 68 68 ConfigureObjectsx(elements, loads, nodes, vertices, materials,parameters); 69 69 } … … 145 145 if(this->parameters->Exist(PetscOptionsStringsEnum)){ 146 146 PetscOptionsFromAnalysis(this->parameters,analysis_type); 147 _printf_(VerboseSolver()," petsc Options set for analysis type: %s\n",EnumToStringx(analysis_type));147 if(VerboseSolver()) _pprintLine_(" petsc Options set for analysis type: " << EnumToStringx(analysis_type)); 148 148 } 149 149 #endif
Note:
See TracChangeset
for help on using the changeset viewer.