Changeset 25996
- Timestamp:
- 02/17/21 13:36:17 (4 years ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/model.m
r25988 r25996 39 39 steadystate = 0; 40 40 transient = 0; 41 levelset 41 levelset = 0; 42 42 calving = 0; 43 43 frontalforcings = 0; 44 love 45 gia 44 love = 0; 45 gia = 0; 46 46 esa = 0; 47 sampling = 0; 47 48 48 49 autodiff = 0; … … 187 188 end 188 189 end 189 end 190 end 191 %2021 February 17 192 if isa(md.sampling,'double'); md.sampling=sampling(); end 190 193 end% }}} 191 194 end … … 241 244 md.love = fourierlove(); 242 245 md.esa = esa(); 246 md.sampling = sampling(); 243 247 md.autodiff = autodiff(); 244 248 md.inversion = inversion(); … … 1505 1509 disp(sprintf('%19s: %-22s -- %s','esa' ,['[1x1 ' class(self.esa) ']'],'parameters for elastic adjustment solution')); 1506 1510 disp(sprintf('%19s: %-22s -- %s','love' ,['[1x1 ' class(self.love) ']'],'parameters for love solution')); 1511 disp(sprintf('%19s: %-22s -- %s','sampling' ,['[1x1 ' class(self.sampling) ']'],'parameters for stochastic sampler')); 1507 1512 disp(sprintf('%19s: %-22s -- %s','autodiff' ,['[1x1 ' class(self.autodiff) ']'],'automatic differentiation parameters')); 1508 1513 disp(sprintf('%19s: %-22s -- %s','inversion' ,['[1x1 ' class(self.inversion) ']'],'parameters for inverse methods')); -
issm/trunk-jpl/src/m/consistency/ismodelselfconsistent.m
r25952 r25996 78 78 elseif strcmp(solutiontype,'DamageEvolutionSolution') 79 79 analyses={'DamageEvolutionAnalysis'}; 80 elseif strcmp(solutiontype,'SamplingSolution') 81 analyses={'SamplingAnalysis'}; 80 82 else 81 83 error(' solution type: %s' , solutiontype, ' not supported yet!');
Note:
See TracChangeset
for help on using the changeset viewer.