Ignore:
Timestamp:
06/22/20 22:29:05 (5 years ago)
Author:
Eric.Larour
Message:

CHG: significant changes to the organization of slr -> new solidearth class
that encompasses all of the slr fields.

File:
1 edited

Legend:

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

    r25074 r25118  
    2323                rifts            = 0;
    2424                dsl              = 0;
    25                 slr              = 0;
     25                solidearth       = 0;
    2626
    2727                debug            = 0;
     
    126126                        if isa(md.calving,'double'); md.calving=calving(); end
    127127                        %2016 February 3
    128                         if isa(md.slr,'double'); md.slr=slr(); end
     128                        if isa(md.slr,'double'); md.solidearth=solidearth(); end
    129129                        %2016 October 11
    130130                        if isa(md.esa,'double'); md.esa=esa(); end
     
    888888                        md.frontalforcings=extrude(md.frontalforcings,md);
    889889                        md.hydrology = extrude(md.hydrology,md);
    890                         md.slr = extrude(md.slr,md);
     890                        md.solidearth = extrude(md.solidearth,md);
    891891                        md.dsl = extrude(md.dsl,md);
    892892
     
    12091209                        md.friction         = friction();
    12101210                        md.rifts            = rifts();
    1211                         md.slr              = slr();
     1211                        md.solidearth       = solidearth();
    12121212                        md.dsl              = dsl();
    12131213                        md.timestepping     = timestepping();
     
    13901390                        disp(sprintf('%19s: %-22s -- %s','initialization'  ,['[1x1 ' class(self.initialization) ']'],'initial guess/state'));
    13911391                        disp(sprintf('%19s: %-22s -- %s','rifts'           ,['[1x1 ' class(self.rifts) ']'],'rifts properties'));
    1392                         disp(sprintf('%19s: %-22s -- %s','slr'             ,['[1x1 ' class(self.slr) ']'],'slr forcings'));
     1392                        disp(sprintf('%19s: %-22s -- %s','solidearth'      ,['[1x1 ' class(self.solidearth) ']'],'solidearth inputs and settings'));
    13931393                        disp(sprintf('%19s: %-22s -- %s','dsl'             ,['[1x1 ' class(self.dsl) ']'],'dynamic sea-level '));
    13941394                        disp(sprintf('%19s: %-22s -- %s','debug'           ,['[1x1 ' class(self.debug) ']'],'debugging tools (valgrind, gprof)'));
Note: See TracChangeset for help on using the changeset viewer.