Changeset 26304


Ignore:
Timestamp:
06/08/21 11:53:02 (4 years ago)
Author:
Mathieu Morlighem
Message:

CHG: minor

Location:
issm/trunk-jpl/src/m/classes
Files:
3 edited

Legend:

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

    r26300 r26304  
    4747                if (solution=='TransientSolution'){
    4848                        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);
    5049                }
    5150        } // }}}
  • issm/trunk-jpl/src/m/classes/timestepping.m

    r26303 r26304  
    6060                        if strcmp(solution,'TransientSolution'),
    6161                                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);
    6362                        end
    6463                end % }}}
  • issm/trunk-jpl/src/m/classes/timestepping.py

    r26303 r26304  
    2424            raise RuntimeError('constructor not supported')
    2525    #}}}
    26 
    2726    def __repr__(self): #{{{
    2827        s = '   timestepping parameters:\n'
     
    3635        return s
    3736    #}}}
    38 
    3937    def setdefaultparameters(self): #{{{
    4038        # Time between 2 time steps
     
    5048        return self
    5149    #}}}
    52 
    5350    def checkconsistency(self, md, solution, analyses): #{{{
    5451        md = checkfield(md, 'fieldname', 'timestepping.start_time', 'numel', [1], 'NaN', 1, 'Inf', 1)
     
    6057        if solution == 'TransientSolution':
    6158            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)
    6359
    6460        return md
    6561    #}}}
    66 
    6762    def marshall(self, prefix, md, fid): #{{{
    6863        scale = md.constants.yts
Note: See TracChangeset for help on using the changeset viewer.