Index: wflow-py/Sandbox/wflow_w3.py =================================================================== diff -u -r58f139b2afc2424fc9f8796934878bd6e49c31de -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/Sandbox/wflow_w3.py (.../wflow_w3.py) (revision 58f139b2afc2424fc9f8796934878bd6e49c31de) +++ wflow-py/Sandbox/wflow_w3.py (.../wflow_w3.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -1076,7 +1076,7 @@ if o == '-c': configfile = a if o == '-s': timestepsecs = int(a) - starttime = dt.datetime(1990,0o1,0o1) + starttime = dt.datetime(1990,1,1) if _lastTimeStep < _firstTimeStep: print("The starttimestep (" + str(_firstTimeStep) + ") is smaller than the last timestep (" + str( Index: wflow-py/Sandbox/wflow_w3ra_v2.py =================================================================== diff -u -r0040bd54b0f7000f114e1bd023e2a508b5d1a4ba -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/Sandbox/wflow_w3ra_v2.py (.../wflow_w3ra_v2.py) (revision 0040bd54b0f7000f114e1bd023e2a508b5d1a4ba) +++ wflow-py/Sandbox/wflow_w3ra_v2.py (.../wflow_w3ra_v2.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -918,7 +918,7 @@ print("Failed to get timesteps from runinfo file: " + runinfoFile) exit(2) else: - starttime = dt.datetime(1990,0o1,0o1) + starttime = dt.datetime(1990,1,1) if _lastTimeStep < _firstTimeStep: print("The starttimestep (" + str(_firstTimeStep) + ") is smaller than the last timestep (" + str( Index: wflow-py/UnitTests/Testwflow_hbv.py =================================================================== diff -u -r58f139b2afc2424fc9f8796934878bd6e49c31de -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/UnitTests/Testwflow_hbv.py (.../Testwflow_hbv.py) (revision 58f139b2afc2424fc9f8796934878bd6e49c31de) +++ wflow-py/UnitTests/Testwflow_hbv.py (.../Testwflow_hbv.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -22,7 +22,7 @@ configfile="wflow_hbv.ini" wflow_cloneMap = 'wflow_catchment.map' caseName="wflow_hbv" - starttime = starttime = datetime.datetime(1990,0o1,0o1) + starttime = starttime = datetime.datetime(1990,1,1) myModel = wf.WflowModel(wflow_cloneMap, caseName,runId,configfile) # initialise the framework Index: wflow-py/UnitTests/Testwflow_hbv2.py =================================================================== diff -u -r58f139b2afc2424fc9f8796934878bd6e49c31de -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/UnitTests/Testwflow_hbv2.py (.../Testwflow_hbv2.py) (revision 58f139b2afc2424fc9f8796934878bd6e49c31de) +++ wflow-py/UnitTests/Testwflow_hbv2.py (.../Testwflow_hbv2.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -22,7 +22,7 @@ configfile="wflow_hbv_hr.ini" wflow_cloneMap = 'wflow_catchment.map' caseName="wflow_hbv" - starttime = starttime = datetime.datetime(1990,0o1,0o1) + starttime = starttime = datetime.datetime(1990,1,1) myModel = wf.WflowModel(wflow_cloneMap, caseName,runId,configfile) # initialise the framework Index: wflow-py/wflow/wf_DynamicFramework.py =================================================================== diff -u -r0040bd54b0f7000f114e1bd023e2a508b5d1a4ba -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/wflow/wf_DynamicFramework.py (.../wf_DynamicFramework.py) (revision 0040bd54b0f7000f114e1bd023e2a508b5d1a4ba) +++ wflow-py/wflow/wf_DynamicFramework.py (.../wf_DynamicFramework.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -54,7 +54,7 @@ an interval base method (each model timestep is the interval between two input timesteps) """ - def __init__(self, datetimestart=dt.datetime(1990, 0o1, 0o1),datetimeend=dt.datetime(1990, 0o1, 0o5), + def __init__(self, datetimestart=dt.datetime(1990, 1, 1),datetimeend=dt.datetime(1990, 1, 5), timestepsecs=86400,mode='steps'): self.runStartTime = datetimestart self.runEndTime = datetimeend @@ -501,7 +501,7 @@ # \param firstTimestep sets the starting timestep of the model (optional, # default is 1) # - def __init__(self, userModel, lastTimeStep=0, firstTimestep=1, datetimestart=dt.datetime(1990, 0o1, 0o1), + def __init__(self, userModel, lastTimeStep=0, firstTimestep=1, datetimestart=dt.datetime(1990, 1, 1), timestepsecs=86400): frameworkBase.FrameworkBase.__init__(self) Index: wflow-py/wflow/wflow_hbv.py =================================================================== diff -u -r58f139b2afc2424fc9f8796934878bd6e49c31de -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/wflow/wflow_hbv.py (.../wflow_hbv.py) (revision 58f139b2afc2424fc9f8796934878bd6e49c31de) +++ wflow-py/wflow/wflow_hbv.py (.../wflow_hbv.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -1556,7 +1556,7 @@ print("Failed to get timesteps from runinfo file: " + runinfoFile) sys.exit(2) else: - starttime = dt.datetime(1990,0o1,0o1) + starttime = dt.datetime(1990,1,1) if _lastTimeStep < _firstTimeStep: print("The starttimestep (" + str(_firstTimeStep) +") is smaller than the last timestep (" + str(_lastTimeStep) + ")") Index: wflow-py/wflow/wflow_lintul.py =================================================================== diff -u -r0040bd54b0f7000f114e1bd023e2a508b5d1a4ba -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/wflow/wflow_lintul.py (.../wflow_lintul.py) (revision 0040bd54b0f7000f114e1bd023e2a508b5d1a4ba) +++ wflow-py/wflow/wflow_lintul.py (.../wflow_lintul.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -997,7 +997,7 @@ if (len(opts) <= 1): usage() - # starttime = dt.datetime(1990,01,01) + # starttime = dt.datetime(1990, 1, 1) starttime = dt.datetime(1981, 9, 27) myModel = WflowModel(wflow_cloneMap, caseName, runId, configfile) Index: wflow-py/wflow/wflow_pcrglobwb.py =================================================================== diff -u -r58f139b2afc2424fc9f8796934878bd6e49c31de -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/wflow/wflow_pcrglobwb.py (.../wflow_pcrglobwb.py) (revision 58f139b2afc2424fc9f8796934878bd6e49c31de) +++ wflow-py/wflow/wflow_pcrglobwb.py (.../wflow_pcrglobwb.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -683,7 +683,7 @@ if o == '-d': staticmaps = a - starttime = dt.datetime(1990,0o1,0o1) + starttime = dt.datetime(1990,1,1) if _lastTimeStep < _firstTimeStep: print("The starttimestep (" + str(_firstTimeStep) + ") is smaller than the last timestep (" + str( Index: wflow-py/wflow/wflow_routing.py =================================================================== diff -u -r58f139b2afc2424fc9f8796934878bd6e49c31de -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/wflow/wflow_routing.py (.../wflow_routing.py) (revision 58f139b2afc2424fc9f8796934878bd6e49c31de) +++ wflow-py/wflow/wflow_routing.py (.../wflow_routing.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -1049,7 +1049,7 @@ - starttime = dt.datetime(1990,0o1,0o1) + starttime = dt.datetime(1990,1,1) if _lastTimeStep < _firstTimeStep: print("The starttimestep (" + str(_firstTimeStep) + ") is smaller than the last timestep (" + str( Index: wflow-py/wflow/wflow_sbm.py =================================================================== diff -u -r0040bd54b0f7000f114e1bd023e2a508b5d1a4ba -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/wflow/wflow_sbm.py (.../wflow_sbm.py) (revision 0040bd54b0f7000f114e1bd023e2a508b5d1a4ba) +++ wflow-py/wflow/wflow_sbm.py (.../wflow_sbm.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -3082,7 +3082,7 @@ if o == '-l': exec("loglevel = logging." + a) - starttime = dt.datetime(1990,0o1,0o1) + starttime = dt.datetime(1990,1,1) if _lastTimeStep < _firstTimeStep: print("The starttimestep (" + str(_firstTimeStep) + ") is smaller than the last timestep (" + str( Index: wflow-py/wflow/wflow_sbm_old.py =================================================================== diff -u -r0040bd54b0f7000f114e1bd023e2a508b5d1a4ba -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/wflow/wflow_sbm_old.py (.../wflow_sbm_old.py) (revision 0040bd54b0f7000f114e1bd023e2a508b5d1a4ba) +++ wflow-py/wflow/wflow_sbm_old.py (.../wflow_sbm_old.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -2177,7 +2177,7 @@ if o == '-l': exec("loglevel = logging." + a) - starttime = dt.datetime(1990,0o1,0o1) + starttime = dt.datetime(1990,1,1) if _lastTimeStep < _firstTimeStep: print("The starttimestep (" + str(_firstTimeStep) + ") is smaller than the last timestep (" + str( Index: wflow-py/wflow/wflow_sphy.py =================================================================== diff -u -r58f139b2afc2424fc9f8796934878bd6e49c31de -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/wflow/wflow_sphy.py (.../wflow_sphy.py) (revision 58f139b2afc2424fc9f8796934878bd6e49c31de) +++ wflow-py/wflow/wflow_sphy.py (.../wflow_sphy.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -1785,7 +1785,7 @@ print("Failed to get timesteps from runinfo file: " + runinfoFile) sys.exit(2) else: - starttime = dt.datetime(1990,0o1,0o1) + starttime = dt.datetime(1990,1,1) if _lastTimeStep < _firstTimeStep: print("The starttimestep (" + str(_firstTimeStep) +") is smaller than the last timestep (" + str(_lastTimeStep) + ")") Index: wflow-py/wflow/wflow_topoflex.py =================================================================== diff -u -r0040bd54b0f7000f114e1bd023e2a508b5d1a4ba -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/wflow/wflow_topoflex.py (.../wflow_topoflex.py) (revision 0040bd54b0f7000f114e1bd023e2a508b5d1a4ba) +++ wflow-py/wflow/wflow_topoflex.py (.../wflow_topoflex.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -1621,7 +1621,7 @@ if (len(argv) <= 1): usage() - starttime = dt.datetime(1990,0o1,0o1) + starttime = dt.datetime(1990,1,1) if _lastTimeStep < _firstTimeStep: print("The starttimestep (" + str(_firstTimeStep) +") is smaller than the last timestep (" + str(_lastTimeStep) + ")") Index: wflow-py/wflow/wflow_w3ra.py =================================================================== diff -u -r0040bd54b0f7000f114e1bd023e2a508b5d1a4ba -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/wflow/wflow_w3ra.py (.../wflow_w3ra.py) (revision 0040bd54b0f7000f114e1bd023e2a508b5d1a4ba) +++ wflow-py/wflow/wflow_w3ra.py (.../wflow_w3ra.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -1026,7 +1026,7 @@ # usage() - starttime = dt.datetime(1990,0o1,0o1) + starttime = dt.datetime(1990,1,1) if _lastTimeStep < _firstTimeStep: print("The starttimestep (" + str(_firstTimeStep) + ") is smaller than the last timestep (" + str( Index: wflow-py/wflow/wflow_w3ra_new.py =================================================================== diff -u -r0040bd54b0f7000f114e1bd023e2a508b5d1a4ba -ra99aae986e85d663473fa4ec5b1eacee73c418bd --- wflow-py/wflow/wflow_w3ra_new.py (.../wflow_w3ra_new.py) (revision 0040bd54b0f7000f114e1bd023e2a508b5d1a4ba) +++ wflow-py/wflow/wflow_w3ra_new.py (.../wflow_w3ra_new.py) (revision a99aae986e85d663473fa4ec5b1eacee73c418bd) @@ -1026,7 +1026,7 @@ usage() - starttime = dt.datetime(1990,0o1,0o1) + starttime = dt.datetime(1990,1,1) if _lastTimeStep < _firstTimeStep: print("The starttimestep (" + str(_firstTimeStep) + ") is smaller than the last timestep (" + str(