Changeset 15203


Ignore:
Timestamp:
06/06/13 16:23:19 (12 years ago)
Author:
Mathieu Morlighem
Message:

CHG: do not check GIA stuff if not in analyses

Location:
issm/trunk-jpl/src/m/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/matdamageice.m

    r15131 r15203  
    103103                        md = checkfield(md,'materials.rheology_Z','>',0,'size',[md.mesh.numberofvertices 1]);
    104104                        md = checkfield(md,'materials.rheology_law','values',{'None' 'Paterson' 'Arrhenius'});
    105                         md = checkfield(md,'materials.lithosphere_shear_modulus','>',0,'numel',1);
    106                         md = checkfield(md,'materials.lithosphere_density','>',0,'numel',1);
    107                         md = checkfield(md,'materials.mantle_shear_modulus','>',0,'numel',1);
    108                         md = checkfield(md,'materials.mantle_density','>',0,'numel',1);
     105
     106                        if ismember(GiaAnalysisEnum(),analyses),
     107                                md = checkfield(md,'materials.lithosphere_shear_modulus','>',0,'numel',1);
     108                                md = checkfield(md,'materials.lithosphere_density','>',0,'numel',1);
     109                                md = checkfield(md,'materials.mantle_shear_modulus','>',0,'numel',1);
     110                                md = checkfield(md,'materials.mantle_density','>',0,'numel',1);
     111                        end
    109112
    110113                end % }}}
  • issm/trunk-jpl/src/m/classes/matice.m

    r15131 r15203  
    101101                        md = checkfield(md,'materials.rheology_n','>',0,'size',[md.mesh.numberofelements 1]);
    102102                        md = checkfield(md,'materials.rheology_law','values',{'None' 'Paterson' 'Arrhenius'});
    103                         md = checkfield(md,'materials.lithosphere_shear_modulus','>',0,'numel',1);
    104                         md = checkfield(md,'materials.lithosphere_density','>',0,'numel',1);
    105                         md = checkfield(md,'materials.mantle_shear_modulus','>',0,'numel',1);
    106                         md = checkfield(md,'materials.mantle_density','>',0,'numel',1);
     103
     104                        if ismember(GiaAnalysisEnum(),analyses),
     105                                md = checkfield(md,'materials.lithosphere_shear_modulus','>',0,'numel',1);
     106                                md = checkfield(md,'materials.lithosphere_density','>',0,'numel',1);
     107                                md = checkfield(md,'materials.mantle_shear_modulus','>',0,'numel',1);
     108                                md = checkfield(md,'materials.mantle_density','>',0,'numel',1);
     109                        end
    107110
    108111                end % }}}
Note: See TracChangeset for help on using the changeset viewer.