Index: doc/wf_DynamicFramework.rst =================================================================== diff -u -r35f2b662b92e2ae10c74eb007fd30f3ee0bfb02f -r8e8c8301d6ae6c31de64bce82dc7127f71de5ff5 --- doc/wf_DynamicFramework.rst (.../wf_DynamicFramework.rst) (revision 35f2b662b92e2ae10c74eb007fd30f3ee0bfb02f) +++ doc/wf_DynamicFramework.rst (.../wf_DynamicFramework.rst) (revision 8e8c8301d6ae6c31de64bce82dc7127f71de5ff5) @@ -234,7 +234,7 @@ Available options in the [run] section ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -The run section can contain information about the model timesteps, the data/time range, +The run section can contain information about the model timesteps, the date/time range, how to initialize the model and how interpret the forcing data. :: Index: examples/wflow_orientale_topoflex_distrib/wflow_orientale_topoflex_distrib.ini =================================================================== diff -u -raf120e6bbdadad40b4023cf8ad6a9d43263a2926 -r8e8c8301d6ae6c31de64bce82dc7127f71de5ff5 --- examples/wflow_orientale_topoflex_distrib/wflow_orientale_topoflex_distrib.ini (.../wflow_orientale_topoflex_distrib.ini) (revision af120e6bbdadad40b4023cf8ad6a9d43263a2926) +++ examples/wflow_orientale_topoflex_distrib/wflow_orientale_topoflex_distrib.ini (.../wflow_orientale_topoflex_distrib.ini) (revision 8e8c8301d6ae6c31de64bce82dc7127f71de5ff5) @@ -211,7 +211,12 @@ # - dailyclim: read a map corresponding to the current day of the year # - hourlyclim: read a map corresponding to the current hour of the day (24 in total) (not implemented yet) # - tss: read a tss file and link to lookupmap (only one allowed) a map using timeinputscalar -Precipitation=intss/1_P.tss,tss,0.0,1,staticmaps/wflow_mgauges.map -Temperature=intss/1_T.tss,tss,10.5,1,staticmaps/wflow_mgauges.map -PotEvaporation=intss/1_PET.tss,tss,0.0,1,staticmaps/wflow_mgauges.map +# Orig, for time series +#Precipitation=intss/1_P.tss,tss,0.0,1,staticmaps/wflow_mgauges.map +#Temperature=intss/1_T.tss,tss,10.5,1,staticmaps/wflow_mgauges.map +#PotEvaporation=intss/1_PET.tss,tss,0.0,1,staticmaps/wflow_mgauges.map + +Precipitation=inmaps/P,timeseries,0.0,1 +Temperature=inmaps/TEMP,timeseries,10.5 +PotEvaporation=inmaps/PET,timeseries,0.0 \ No newline at end of file Index: wflow-py/wflow/wflow_topoflex.py =================================================================== diff -u -rf95a643bab9f58880912cb18318fdb74dd6e10a9 -r8e8c8301d6ae6c31de64bce82dc7127f71de5ff5 --- wflow-py/wflow/wflow_topoflex.py (.../wflow_topoflex.py) (revision f95a643bab9f58880912cb18318fdb74dd6e10a9) +++ wflow-py/wflow/wflow_topoflex.py (.../wflow_topoflex.py) (revision 8e8c8301d6ae6c31de64bce82dc7127f71de5ff5) @@ -1,26 +1,25 @@ #!/usr/bin/python """ -Definition of the wflow_sceleton model. +Definition of the wflow_topoflex model. --------------------------------------- This simple model calculates soil temperature using air temperature as a forcing. Usage: -wflow_sceleton -C case -R Runid -c inifile +wflow_topoflex -C case -R Runid -c inifile -C: set the name of the case (directory) to run -R: set the name runId within the current case -c name of the config file (in the case directory) -$Author: schelle $ -$Id: wflow_sceleton.py 898 2014-01-09 14:47:06Z schelle $ -$Rev: 898 $ + """ +## TODO: add wflow prefix of put in seperate folder import reservoir_Si # import reservoir_Sa import reservoir_Su