Changeset 26304
- Timestamp:
- 06/08/21 11:53:02 (4 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/timestepping.js
r26300 r26304 47 47 if (solution=='TransientSolution'){ 48 48 checkfield(md,'fieldname','timestepping.time_step','numel',[1],'>',0,'NaN',1,'Inf',1); 49 checkfield(md,'fieldname','timestepping.time_step','numel',[1],'>=',0,'NaN',1,'Inf',1);50 49 } 51 50 } // }}} -
issm/trunk-jpl/src/m/classes/timestepping.m
r26303 r26304 60 60 if strcmp(solution,'TransientSolution'), 61 61 md = checkfield(md,'fieldname','timestepping.time_step','numel',[1],'>',0,'NaN',1,'Inf',1); 62 md = checkfield(md,'fieldname','timestepping.time_step','numel',[1],'>=',0,'NaN',1,'Inf',1);63 62 end 64 63 end % }}} -
issm/trunk-jpl/src/m/classes/timestepping.py
r26303 r26304 24 24 raise RuntimeError('constructor not supported') 25 25 #}}} 26 27 26 def __repr__(self): #{{{ 28 27 s = ' timestepping parameters:\n' … … 36 35 return s 37 36 #}}} 38 39 37 def setdefaultparameters(self): #{{{ 40 38 # Time between 2 time steps … … 50 48 return self 51 49 #}}} 52 53 50 def checkconsistency(self, md, solution, analyses): #{{{ 54 51 md = checkfield(md, 'fieldname', 'timestepping.start_time', 'numel', [1], 'NaN', 1, 'Inf', 1) … … 60 57 if solution == 'TransientSolution': 61 58 md = checkfield(md, 'fieldname', 'timestepping.time_step', 'numel', [1], '>', 0, 'NaN', 1, 'Inf', 1) 62 md = checkfield(md, 'fieldname', 'timestepping.time_step', 'numel', [1], '>=', 0, 'NaN', 1, 'Inf', 1)63 59 64 60 return md 65 61 #}}} 66 67 62 def marshall(self, prefix, md, fid): #{{{ 68 63 scale = md.constants.yts
Note:
See TracChangeset
for help on using the changeset viewer.