Changeset 22157


Ignore:
Timestamp:
10/09/17 19:13:51 (7 years ago)
Author:
Eric.Larour
Message:

CHG: diverse

Location:
issm/branches/trunk-larour-NatGeoScience2016/src/m/classes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-larour-NatGeoScience2016/src/m/classes/mask.m

    r21158 r22157  
    5656                end % }}}
    5757                function marshall(self,prefix,md,fid) % {{{
     58                        WriteData(fid,prefix,'name','md.mask.type','data',class(md.mask),'format','String');
    5859                        WriteData(fid,prefix,'object',self,'fieldname','groundedice_levelset','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
    5960                        WriteData(fid,prefix,'object',self,'fieldname','ice_levelset','format','DoubleMat','mattype',1);
  • issm/branches/trunk-larour-NatGeoScience2016/src/m/classes/maskpsl.m

    r21759 r22157  
    6868                end % }}}
    6969                function marshall(self,prefix,md,fid) % {{{
     70                        WriteData(fid,prefix,'name','md.mask.type','data',class(md.mask),'format','String');
    7071                        WriteData(fid,prefix,'object',self,'class','mask','fieldname','groundedice_levelset','format','DoubleMat','mattype',1);
    7172                        WriteData(fid,prefix,'object',self,'class','mask','fieldname','ice_levelset','format','DoubleMat','mattype',1);
  • issm/branches/trunk-larour-NatGeoScience2016/src/m/classes/sealevelmodel.m

    r22155 r22157  
    6666                        end
    6767
    68 
    69 
     68                        %make sure steric_rate is the same everywhere:
     69                        for i=1:length(slm.icecaps),
     70                                md= slm.icecaps{i};
     71                                if ~isempty(find(md.slr.steric_rate - slm.earth.slr.steric_rate(slm.earth.slr.transitions{i}))),
     72                                        error(sprintf('steric rate on ice cap %s is not the same as for the earth\n',md.miscellaneous.name));
     73                                end
     74                        end
    7075
    7176                end
Note: See TracChangeset for help on using the changeset viewer.