Changeset 25118 for issm/trunk-jpl/src/m/classes/model.m
- Timestamp:
- 06/22/20 22:29:05 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/model.m
r25074 r25118 23 23 rifts = 0; 24 24 dsl = 0; 25 s lr= 0;25 solidearth = 0; 26 26 27 27 debug = 0; … … 126 126 if isa(md.calving,'double'); md.calving=calving(); end 127 127 %2016 February 3 128 if isa(md.slr,'double'); md.s lr=slr(); end128 if isa(md.slr,'double'); md.solidearth=solidearth(); end 129 129 %2016 October 11 130 130 if isa(md.esa,'double'); md.esa=esa(); end … … 888 888 md.frontalforcings=extrude(md.frontalforcings,md); 889 889 md.hydrology = extrude(md.hydrology,md); 890 md.s lr = extrude(md.slr,md);890 md.solidearth = extrude(md.solidearth,md); 891 891 md.dsl = extrude(md.dsl,md); 892 892 … … 1209 1209 md.friction = friction(); 1210 1210 md.rifts = rifts(); 1211 md.s lr = slr();1211 md.solidearth = solidearth(); 1212 1212 md.dsl = dsl(); 1213 1213 md.timestepping = timestepping(); … … 1390 1390 disp(sprintf('%19s: %-22s -- %s','initialization' ,['[1x1 ' class(self.initialization) ']'],'initial guess/state')); 1391 1391 disp(sprintf('%19s: %-22s -- %s','rifts' ,['[1x1 ' class(self.rifts) ']'],'rifts properties')); 1392 disp(sprintf('%19s: %-22s -- %s','s lr' ,['[1x1 ' class(self.slr) ']'],'slr forcings'));1392 disp(sprintf('%19s: %-22s -- %s','solidearth' ,['[1x1 ' class(self.solidearth) ']'],'solidearth inputs and settings')); 1393 1393 disp(sprintf('%19s: %-22s -- %s','dsl' ,['[1x1 ' class(self.dsl) ']'],'dynamic sea-level ')); 1394 1394 disp(sprintf('%19s: %-22s -- %s','debug' ,['[1x1 ' class(self.debug) ']'],'debugging tools (valgrind, gprof)'));
Note:
See TracChangeset
for help on using the changeset viewer.