Changeset 16591
- Timestamp:
- 10/31/13 09:31:23 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/FemModel.cpp
r16589 r16591 244 244 245 245 } 246 /*}}}*/247 /*FUNCTION FemModel::OutputResults {{{*/248 void FemModel::OutputResults(void){249 250 _printf0_("write results to disk:\n");251 252 /*Just call the OutputResultsx module: */253 OutputResultsx(this->elements, this->nodes, this->vertices, this->loads, this->materials, this->parameters,this->results);254 255 }256 246 /*}}}*/ 257 247 /*FUNCTION FemModel::SetStaticComm {{{*/ -
issm/trunk-jpl/src/c/classes/FemModel.h
r16504 r16591 54 54 void InitFromFiles(char* rootpath, char* inputfilename, char* outputfilename, char* petscfilename, char* lockfilename, const int solution_type,const int* analyses,const int nummodels); 55 55 void Solve(void); 56 void OutputResults(void);57 56 void SetStaticComm(); 58 57 void SetCurrentConfiguration(int configuration_type); -
issm/trunk-jpl/src/c/cores/hydrology_core.cpp
r16518 r16591 73 73 /*unload results*/ 74 74 if(VerboseSolution()) _printf0_(" saving temporary results\n"); 75 OutputResultsx(femmodel ->elements, femmodel->nodes, femmodel->vertices, femmodel->loads, femmodel->materials, femmodel->parameters,femmodel->results);75 OutputResultsx(femmodel); 76 76 } 77 77 } … … 98 98 /*unload results*/ 99 99 if(VerboseSolution()) _printf0_(" saving temporary results\n"); 100 OutputResultsx(femmodel ->elements, femmodel->nodes, femmodel->vertices, femmodel->loads, femmodel->materials, femmodel->parameters,femmodel->results);100 OutputResultsx(femmodel); 101 101 } 102 102 } -
issm/trunk-jpl/src/c/cores/transient_core.cpp
r16518 r16591 172 172 } 173 173 if(VerboseSolution()) _printf0_(" saving temporary results\n"); 174 OutputResultsx(femmodel ->elements, femmodel->nodes, femmodel->vertices, femmodel->loads, femmodel->materials, femmodel->parameters,femmodel->results);174 OutputResultsx(femmodel); 175 175 } 176 176 } -
issm/trunk-jpl/src/c/main/issm.cpp
r15839 r16591 20 20 21 21 /*Output results: */ 22 femmodel->OutputResults();22 OutputResultsx(femmodel); 23 23 24 24 /*Wrap up: */ -
issm/trunk-jpl/src/c/modules/OutputResultsx/OutputResultsx.cpp
r16486 r16591 15 15 #include "../../classes/classes.h" 16 16 17 void OutputResultsx( Elements* elements, Nodes* nodes, Vertices* vertices, Loads* loads, Materials* materials, Parameters* parameters,Results* results){17 void OutputResultsx(FemModel* femmodel){ 18 18 19 19 int my_rank; … … 27 27 28 28 /*retrieve parameters: */ 29 parameters->FindParam(&dakota_analysis,QmuIsdakotaEnum);29 femmodel->parameters->FindParam(&dakota_analysis,QmuIsdakotaEnum); 30 30 31 31 /*recover my_rank:*/ … … 40 40 *therefore, we need to include the solutiontype into the filename: */ 41 41 if(my_rank==0){ 42 parameters->FindParam(&solutiontype,SolutionTypeEnum);42 femmodel->parameters->FindParam(&solutiontype,SolutionTypeEnum); 43 43 EnumToStringx(&solutiontypestring,solutiontype); 44 results->AddResult(new GenericExternalResult<char*>(results->Size()+1,SolutionTypeEnum,solutiontypestring,1,0));44 femmodel->results->AddResult(new GenericExternalResult<char*>(femmodel->results->Size()+1,SolutionTypeEnum,solutiontypestring,1,0)); 45 45 xDelete<char>(solutiontypestring); 46 46 } 47 47 48 48 /*Now, open file for writing, if not already done: */ 49 if(! parameters->Exist(OutputFilePointerEnum)){49 if(!femmodel->parameters->Exist(OutputFilePointerEnum)){ 50 50 51 51 /*We don't have a file pointer. Retrieve the output file name and open it for writing:*/ 52 parameters->FindParam(&outputfilename,OutputFileNameEnum);52 femmodel->parameters->FindParam(&outputfilename,OutputFileNameEnum); 53 53 54 54 /*What strategy? : */ 55 parameters->FindParam(&io_gather,SettingsIoGatherEnum);55 femmodel->parameters->FindParam(&io_gather,SettingsIoGatherEnum); 56 56 57 57 if(io_gather){ … … 61 61 else{ 62 62 /*We are opening different files for output on all cpus. Append the rank to the filename, and open: */ 63 parameters->FindParam(&fid,OutputFilePointerEnum);63 femmodel->parameters->FindParam(&fid,OutputFilePointerEnum); 64 64 sprintf(cpu_outputfilename,"%s.%i",outputfilename,my_rank); 65 65 fid=pfopen(cpu_outputfilename ,"wb"); … … 68 68 69 69 /*Add file pointer in parameters for further calls to OutputResultsx: */ 70 parameters->SetParam(fid,OutputFilePointerEnum);70 femmodel->parameters->SetParam(fid,OutputFilePointerEnum); 71 71 } 72 72 73 73 /*Write results to disk: */ 74 results->Write(parameters);74 femmodel->results->Write(femmodel->parameters); 75 75 76 76 /*Delete and reinitialize results, in parallel: */ 77 results->clear();77 femmodel->results->clear(); 78 78 79 79 /*Close output file? :*/ 80 /* WARNING: issm.cpp is taking care of it for now (quick fix)80 /*FIXME WARNING: issm.cpp is taking care of it for now (quick fix) 81 81 if((step==1) && (time==0)){ 82 82 if(io_gather){ -
issm/trunk-jpl/src/c/modules/OutputResultsx/OutputResultsx.h
r14996 r16591 14 14 #include "../../classes/classes.h" 15 15 16 void OutputResultsx( Elements* elements, Nodes* nodes, Vertices* vertices, Loads* loads, Materials* materials, Parameters* parameters, Results* results);16 void OutputResultsx(FemModel* femmodel); 17 17 18 18 #endif /* _OUTPUTRESULTS_H */
Note:
See TracChangeset
for help on using the changeset viewer.