Changeset 19138


Ignore:
Timestamp:
02/20/15 10:02:35 (10 years ago)
Author:
Mathieu Morlighem
Message:

CHG: allow spc temperatures to be reset by PDD scheme

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

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/analyses/ThermalAnalysis.cpp

    r18930 r19138  
    88void ThermalAnalysis::CreateConstraints(Constraints* constraints,IoModel* iomodel){/*{{{*/
    99
     10        /*Intermediary*/
     11        int finiteelement = P1Enum;
     12
    1013        /*Only 3d mesh supported*/
    11         int finiteelement = P1Enum;
    12         if(iomodel->domaintype==Domain3DEnum){
     14        if(iomodel->domaintype!=Domain3DEnum) _error_("not supported yet");
     15
     16        /*Specific case for PDD, we want the constaints to be updated by the PDD scheme itself*/
     17        bool isdynamic = false;
     18        if(iomodel->solution_enum==ThermalSolutionEnum){
     19                /*No PDD scheme, keep default*/
     20        }
     21        else if (iomodel->solution_enum==TransientSolutionEnum){
     22                int smb_model;
     23                iomodel->Constant(&smb_model,SurfaceforcingsEnum);
     24                if(smb_model==SMBpddEnum) isdynamic=true;
     25        }
     26        else{
     27                _error_("Solution "<<EnumToStringx(iomodel->solution_enum)<<" not supported yet");
     28        }
     29
     30        if(isdynamic){
     31                IoModelToDynamicConstraintsx(constraints,iomodel,ThermalSpctemperatureEnum,ThermalAnalysisEnum,finiteelement);
     32        }
     33        else{
    1334                IoModelToConstraintsx(constraints,iomodel,ThermalSpctemperatureEnum,ThermalAnalysisEnum,finiteelement);
    1435        }
  • issm/trunk-jpl/src/c/classes/FemModel.cpp

    r19095 r19138  
    161161        /*Open input file on cpu 0 and create IoModel */
    162162        if(my_rank==0) IOMODEL = pfopen0(inputfilename ,"rb");
    163         IoModel* iomodel = new IoModel(IOMODEL,trace,X);
     163        IoModel* iomodel = new IoModel(IOMODEL,in_solution_type,trace,X);
    164164
    165165        /*Figure out what analyses are activated for this solution*/
  • issm/trunk-jpl/src/c/classes/IoModel.cpp

    r18879 r19138  
    2121IoModel::IoModel(){/*{{{*/
    2222        this->fid=NULL;
     23        this->solution_enum=-1;
    2324        this->data=NULL;
    2425        this->independents=NULL;
     
    5051}
    5152/*}}}*/
    52 IoModel::IoModel(FILE* iomodel_handle,bool trace,IssmPDouble* X){/*{{{*/
     53IoModel::IoModel(FILE* iomodel_handle,int solution_enum_in,bool trace,IssmPDouble* X){/*{{{*/
    5354
    5455        bool autodiff=false;
     
    6061        /*Check that Enums are Synchronized*/
    6162        this->CheckEnumSync();
     63
     64        /*Keep track of solution*/
     65        this->solution_enum = solution_enum_in;
    6266
    6367        /*Initialize data: */
     
    240244}
    241245/*}}}*/
    242 void IoModel::Constant(bool* poutput,int constant_enum){/*{{{*/
     246void  IoModel::Constant(bool* poutput,int constant_enum){/*{{{*/
    243247
    244248        _assert_(constant_enum>=0);
     
    248252}
    249253/*}}}*/
    250 void IoModel::Constant(int* poutput,int constant_enum){/*{{{*/
     254void  IoModel::Constant(int* poutput,int constant_enum){/*{{{*/
    251255
    252256        _assert_(constant_enum>=0);
     
    256260}
    257261/*}}}*/
    258 void IoModel::Constant(IssmDouble* poutput,int constant_enum){/*{{{*/
     262void  IoModel::Constant(IssmDouble* poutput,int constant_enum){/*{{{*/
    259263
    260264        _assert_(constant_enum>=0);
     
    264268}
    265269/*}}}*/
    266 void IoModel::Constant(char** poutput,int constant_enum){/*{{{*/
     270void  IoModel::Constant(char** poutput,int constant_enum){/*{{{*/
    267271
    268272        _assert_(constant_enum>=0);
     
    291295}
    292296/*}}}*/
    293 void IoModel::StartTrace(bool trace){/*{{{*/
     297void  IoModel::StartTrace(bool trace){/*{{{*/
    294298
    295299        bool autodiff = false;
     
    331335}
    332336/*}}}*/
    333 void IoModel::DeclareIndependents(bool trace,IssmPDouble* X){/*{{{*/
     337void  IoModel::DeclareIndependents(bool trace,IssmPDouble* X){/*{{{*/
    334338
    335339        int  i;
     
    15161520}
    15171521/*}}}*/
    1518 void IoModel::FetchDataToInput(Elements* elements,int vector_enum,IssmDouble default_value){/*{{{*/
     1522void  IoModel::FetchDataToInput(Elements* elements,int vector_enum,IssmDouble default_value){/*{{{*/
    15191523
    15201524        /*intermediary: */
     
    15411545}
    15421546/*}}}*/
    1543 void IoModel::FetchDataToInput(Elements* elements,int vector_enum){/*{{{*/
     1547void  IoModel::FetchDataToInput(Elements* elements,int vector_enum){/*{{{*/
    15441548
    15451549        /*intermediary: */
     
    16131617}
    16141618/*}}}*/
    1615 void IoModel::LastIndex(int *pindex){/*{{{*/
     1619void  IoModel::LastIndex(int *pindex){/*{{{*/
    16161620
    16171621        int my_rank;
     
    16491653}
    16501654/*}}}*/
    1651 /*FUNCTION IoModel::SetFilePointerToData{{{*/
    1652 FILE* IoModel::SetFilePointerToData(int* pcode,int* pvector_type, int data_enum){
     1655FILE* IoModel::SetFilePointerToData(int* pcode,int* pvector_type, int data_enum){/*{{{*/
    16531656
    16541657        int my_rank;
  • issm/trunk-jpl/src/c/classes/IoModel.h

    r18879 r19138  
    2525                /*pointer to input file*/
    2626                FILE *fid;
     27
     28                /*Solution*/
     29                int   solution_enum;
    2730
    2831                /*Partitioning*/
     
    5962                ~IoModel();
    6063                IoModel();
    61                 IoModel(FILE* iomodel_handle,bool trace,IssmPDouble* X);
     64                IoModel(FILE* iomodel_handle,int solution_enum_in,bool trace,IssmPDouble* X);
    6265
    6366                /*Input/Output*/
  • issm/trunk-jpl/src/c/cores/transient_core.cpp

    r19047 r19138  
    2323        bool       isstressbalance,ismasstransport,isFS,isthermal,isgroundingline,isgia,islevelset,isdamageevolution,ishydrology,iscalving;
    2424        bool       save_results,dakota_analysis;
    25         bool       time_adapt=false;
     25        bool       time_adapt;
    2626        int        output_frequency;
    27         int        domaintype,groundingline_migration;
    28         int        numoutputs         = 0;
    29         Analysis  *analysis = NULL;
    30         char**     requested_outputs = NULL;
    31 
     27        int        domaintype,groundingline_migration,smb_model;
     28        int        numoutputs;
     29        Analysis  *analysis          = NULL;
     30        char     **requested_outputs = NULL;
    3231
    3332        /*intermediary: */
    34         int    step;
     33        int        step;
    3534        IssmDouble time;
    3635
     
    5453        femmodel->parameters->FindParam(&isFS,FlowequationIsFSEnum);
    5554        femmodel->parameters->FindParam(&iscalving,TransientIscalvingEnum);
     55        femmodel->parameters->FindParam(&smb_model,SurfaceforcingsEnum);
    5656        if(isgroundingline) femmodel->parameters->FindParam(&groundingline_migration,GroundinglineMigrationEnum);
    5757        femmodel->parameters->FindParam(&numoutputs,TransientNumRequestedOutputsEnum);
     
    8383                if(isthermal && domaintype==Domain3DEnum){
    8484                        if(VerboseSolution()) _printf0_("   computing thermal regime\n");
     85                        if(smb_model==SMBpddEnum) ResetBoundaryConditions(femmodel,ThermalAnalysisEnum);
    8586                        thermal_core(femmodel);
    8687                }
Note: See TracChangeset for help on using the changeset viewer.