Changeset 22044


Ignore:
Timestamp:
09/05/17 14:33:52 (8 years ago)
Author:
Mathieu Morlighem
Message:

CHG: sigma max can now be a vector (if necessary)

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

Legend:

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

    r21931 r22044  
    6161                        break;
    6262                case CalvingDevEnum:
     63                        iomodel->FetchDataToInput(elements,"md.calving.stress_threshold_groundedice",CalvingStressThresholdGroundediceEnum);
     64                        iomodel->FetchDataToInput(elements,"md.calving.stress_threshold_floatingice",CalvingStressThresholdFloatingiceEnum);
    6365                        iomodel->FetchDataToInput(elements,"md.calving.meltingrate",CalvingMeltingrateEnum);
    6466                        break;
     
    8082                case DefaultCalvingEnum:
    8183                case CalvingLevermannEnum:
    82                         break;
    8384                case CalvingDevEnum:
    84                         parameters->AddObject(iomodel->CopyConstantObject("md.calving.stress_threshold_groundedice",CalvingStressThresholdGroundediceEnum));
    85                         parameters->AddObject(iomodel->CopyConstantObject("md.calving.stress_threshold_floatingice",CalvingStressThresholdFloatingiceEnum));
    8685                        break;
    8786                case CalvingMinthicknessEnum:
  • issm/trunk-jpl/src/c/classes/Elements/Penta.cpp

    r21931 r22044  
    207207        Input* vy_input = inputs->GetInput(VyAverageEnum); _assert_(vy_input);
    208208        Input* gr_input = inputs->GetInput(MaskGroundediceLevelsetEnum); _assert_(gr_input);
     209        Input* smax_fl_input = inputs->GetInput(CalvingStressThresholdFloatingiceEnum); _assert_(smax_fl_input);
     210        Input* smax_gr_input = inputs->GetInput(CalvingStressThresholdGroundediceEnum); _assert_(smax_gr_input);
    209211        IssmDouble  B   = this->GetMaterialParameter(MaterialsRheologyBbarEnum);
    210212        IssmDouble  n   = this->GetMaterialParameter(MaterialsRheologyNEnum);
    211         this->parameters->FindParam(&sigma_max_floating,CalvingStressThresholdFloatingiceEnum);
    212         this->parameters->FindParam(&sigma_max_grounded,CalvingStressThresholdGroundediceEnum);
    213213
    214214        /* Start looping on the number of vertices: */
     
    221221                vy_input->GetInputValue(&vy,gauss);
    222222                gr_input->GetInputValue(&groundedice,gauss);
     223                smax_fl_input->GetInputValue(&sigma_max_floating,gauss);
     224                smax_gr_input->GetInputValue(&sigma_max_grounded,gauss);
    223225                vel=sqrt(vx*vx+vy*vy)+1.e-14;
    224226
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r21946 r22044  
    226226        Input* vy_input = inputs->GetInput(VyEnum); _assert_(vy_input);
    227227        Input* gr_input = inputs->GetInput(MaskGroundediceLevelsetEnum); _assert_(gr_input);
     228        Input* smax_fl_input = inputs->GetInput(CalvingStressThresholdFloatingiceEnum); _assert_(smax_fl_input);
     229        Input* smax_gr_input = inputs->GetInput(CalvingStressThresholdGroundediceEnum); _assert_(smax_gr_input);
    228230        IssmDouble  B   = this->GetMaterialParameter(MaterialsRheologyBbarEnum);
    229231        IssmDouble  n   = this->GetMaterialParameter(MaterialsRheologyNEnum);
    230         this->parameters->FindParam(&sigma_max_floating,CalvingStressThresholdFloatingiceEnum);
    231         this->parameters->FindParam(&sigma_max_grounded,CalvingStressThresholdGroundediceEnum);
    232232
    233233        /* Start looping on the number of vertices: */
     
    240240                vy_input->GetInputValue(&vy,gauss);
    241241                gr_input->GetInputValue(&groundedice,gauss);
     242                smax_fl_input->GetInputValue(&sigma_max_floating,gauss);
     243                smax_gr_input->GetInputValue(&sigma_max_grounded,gauss);
    242244                vel=sqrt(vx*vx+vy*vy)+1.e-14;
    243245
Note: See TracChangeset for help on using the changeset viewer.