Changeset 25289


Ignore:
Timestamp:
07/18/20 23:17:43 (5 years ago)
Author:
adhikari
Message:

CHG: skip computation for non-icy elements

File:
1 edited

Legend:

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

    r25288 r25289  
    49574957
    49584958        /*gia solution parameters:*/
    4959         IssmDouble lithosphere_thickness,mantle_viscosity;
     4959        IssmDouble lithosphere_thickness,mantle_viscosity,ice_mask;
    49604960
    49614961        /*output: */
     
    49714971        this->parameters->FindParam(&gsize,MeshNumberofverticesEnum);
    49724972        this->parameters->FindParam(&yts,ConstantsYtsEnum);
    4973 
     4973       
    49744974        /*recover gia solution parameters: */
    49754975        int cross_section_shape;
     
    49864986        IssmDouble mantle_density            = FindParam(MaterialsMantleDensityEnum);
    49874987        IssmDouble rho_ice                   = FindParam(MaterialsRhoIceEnum);
     4988
     4989        /*recover ice mask*/
     4990        Input2* ice_mask_input=this->GetInput2(MaskIceLevelsetEnum);
     4991        ice_mask_input->GetInputAverage(&ice_mask);
     4992
     4993        /*early return if we are NOT on an icy element:*/
     4994        if (ice_mask==1) return;
    49884995
    49894996        /*pull thickness averages! */
Note: See TracChangeset for help on using the changeset viewer.