Changeset 16591


Ignore:
Timestamp:
10/31/13 09:31:23 (11 years ago)
Author:
Mathieu Morlighem
Message:

CHG: simplifying prototype for OutputResultsx

Location:
issm/trunk-jpl/src/c
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/FemModel.cpp

    r16589 r16591  
    244244
    245245        }
    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 }
    256246/*}}}*/
    257247/*FUNCTION FemModel::SetStaticComm {{{*/
  • issm/trunk-jpl/src/c/classes/FemModel.h

    r16504 r16591  
    5454                void InitFromFiles(char* rootpath, char* inputfilename, char* outputfilename, char* petscfilename, char* lockfilename, const int solution_type,const int* analyses,const int nummodels);
    5555                void Solve(void);
    56                 void OutputResults(void);
    5756                void SetStaticComm();
    5857                void SetCurrentConfiguration(int configuration_type);
  • issm/trunk-jpl/src/c/cores/hydrology_core.cpp

    r16518 r16591  
    7373                                /*unload results*/
    7474                                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);
    7676                        }
    7777                }
     
    9898                                /*unload results*/
    9999                                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);
    101101                        }
    102102                }
  • issm/trunk-jpl/src/c/cores/transient_core.cpp

    r16518 r16591  
    172172                        }
    173173                        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);
    175175                }
    176176        }
  • issm/trunk-jpl/src/c/main/issm.cpp

    r15839 r16591  
    2020
    2121        /*Output results: */
    22         femmodel->OutputResults();
     22        OutputResultsx(femmodel);
    2323
    2424        /*Wrap up: */
  • issm/trunk-jpl/src/c/modules/OutputResultsx/OutputResultsx.cpp

    r16486 r16591  
    1515#include "../../classes/classes.h"
    1616
    17 void OutputResultsx(Elements* elements, Nodes* nodes, Vertices* vertices, Loads* loads, Materials* materials, Parameters* parameters,Results* results){
     17void OutputResultsx(FemModel* femmodel){
    1818
    1919        int         my_rank;
     
    2727
    2828        /*retrieve parameters: */
    29         parameters->FindParam(&dakota_analysis,QmuIsdakotaEnum);
     29        femmodel->parameters->FindParam(&dakota_analysis,QmuIsdakotaEnum);
    3030
    3131        /*recover my_rank:*/
     
    4040         *therefore, we need to include the solutiontype into the filename: */
    4141        if(my_rank==0){
    42                 parameters->FindParam(&solutiontype,SolutionTypeEnum);
     42                femmodel->parameters->FindParam(&solutiontype,SolutionTypeEnum);
    4343                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));
    4545                xDelete<char>(solutiontypestring);
    4646        }
    4747
    4848        /*Now, open file for writing, if not already done: */
    49         if(!parameters->Exist(OutputFilePointerEnum)){
     49        if(!femmodel->parameters->Exist(OutputFilePointerEnum)){
    5050
    5151                /*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);
    5353
    5454                /*What strategy? : */
    55                 parameters->FindParam(&io_gather,SettingsIoGatherEnum);
     55                femmodel->parameters->FindParam(&io_gather,SettingsIoGatherEnum);
    5656
    5757                if(io_gather){
     
    6161                else{
    6262                        /*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);
    6464                        sprintf(cpu_outputfilename,"%s.%i",outputfilename,my_rank);
    6565                        fid=pfopen(cpu_outputfilename ,"wb");
     
    6868
    6969                /*Add file pointer in parameters for further calls to OutputResultsx: */
    70                 parameters->SetParam(fid,OutputFilePointerEnum);
     70                femmodel->parameters->SetParam(fid,OutputFilePointerEnum);
    7171        }
    7272
    7373        /*Write results to disk: */
    74         results->Write(parameters);
     74        femmodel->results->Write(femmodel->parameters);
    7575
    7676        /*Delete and reinitialize results, in parallel: */
    77         results->clear();
     77        femmodel->results->clear();
    7878
    7979        /*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)
    8181          if((step==1) && (time==0)){
    8282          if(io_gather){
  • issm/trunk-jpl/src/c/modules/OutputResultsx/OutputResultsx.h

    r14996 r16591  
    1414#include "../../classes/classes.h"
    1515
    16 void OutputResultsx(Elements* elements, Nodes* nodes, Vertices* vertices, Loads* loads,  Materials* materials, Parameters* parameters, Results* results);
     16void OutputResultsx(FemModel* femmodel);
    1717
    1818#endif  /* _OUTPUTRESULTS_H */
Note: See TracChangeset for help on using the changeset viewer.