Changeset 21158


Ignore:
Timestamp:
08/24/16 15:13:51 (9 years ago)
Author:
Mathieu Morlighem
Message:

CHG: do NOT allow ice levelset to be a time series, use md.levelset.spc instead (because MaskActiveNodes is set at t=0 and transient changes the time to t+dt, for which the mask needs to be updated)

File:
1 edited

Legend:

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

    r21155 r21158  
    4040
    4141                        md = checkfield(md,'fieldname','mask.groundedice_levelset','forcing',1,'NaN',1);
    42                         md = checkfield(md,'fieldname','mask.ice_levelset','forcing',1,'NaN',1);
     42                        md = checkfield(md,'fieldname','mask.ice_levelset','NaN',1,'size',[md.mesh.numberofvertices 1]);
    4343                        isice=(md.mask.ice_levelset<=0);
    4444                        if sum(isice)==0,
     
    5757                function marshall(self,prefix,md,fid) % {{{
    5858                        WriteData(fid,prefix,'object',self,'fieldname','groundedice_levelset','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
    59                         WriteData(fid,prefix,'object',self,'fieldname','ice_levelset','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
     59                        WriteData(fid,prefix,'object',self,'fieldname','ice_levelset','format','DoubleMat','mattype',1);
    6060                end % }}}
    6161                function savemodeljs(self,fid,modelname) % {{{
Note: See TracChangeset for help on using the changeset viewer.