-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathmct_inflow_test.xml
More file actions
6029 lines (4931 loc) · 218 KB
/
mct_inflow_test.xml
File metadata and controls
6029 lines (4931 loc) · 218 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--
######################################################################
## #### ###### ######## ## ####### ####### ########
## ## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ## ##
## ## ###### ###### ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ## ## ##
######## #### ###### ## ######## ####### ####### ########
######################################################################
TEMPLATE SETTINGS FILE Authors JvdK, PB
TIPS:
You can use builtin path variables in this template and reference to other paths in a relative way:
- SettingsPath: Path to the settings file
- SettingsDir: alias for SettingsPath
- ProjectPath: path to project root dir
- ProjectDir: alias for ProjectPath
ex: <textvar name="PathRoot" value="$(SettingsPath)/../../myrootfolder">
-->
<lfsettings>
<lfoptions>
#-----------------------------------------------------------
# modelling and reporting options
#-----------------------------------------------------------
<setoption choice="0" name="TemperatureInKelvin"/>
<setoption choice="0" name="gridSizeUserDefined"/>
# options to turn hydrological modules on/off
<setoption choice="0" name="groundwaterSmooth"/>
<setoption choice="0" name="wateruse"/>
<setoption choice="1" name="TransientWaterDemandChange"/>
<setoption choice="0" name="useWaterDemandAveYear"/>
<setoption choice="1" name="wateruseRegion"/>
<setoption choice="0" name="cropsEPIC"/>
<setoption choice="0" name="drainedIrrigation"/>
<setoption choice="0" name="riceIrrigation"/>
<setoption choice="0" name="openwaterevapo"/>
<setoption choice="0" name="simulateLakes"/>
<setoption choice="0" name="simulateReservoirs"/>
<setoption choice="0" name="SplitRouting"/>
<setoption choice="1" name="MCTRouting"/>
# use inflow data
<setoption choice="1" name="inflow"/>
# option to compute indicators
<setoption choice="0" name="indicator"/>
# option to initialize Lisflood
<setoption choice="0" name="InitLisflood"/>
<setoption choice="0" name="InitLisfloodwithoutsplit"/>
# option to read/write NetCDF
<setoption choice="1" name="readNetcdfStack"/>
<setoption choice="1" name="writeNetcdfStack"/>
<setoption choice="1" name="writeNetcdf"/>
#-----------------------------------------------------------
# report time series
#-----------------------------------------------------------
# report discharge TS
<setoption choice="1" name="repDischargeTs"/>
# report gauges and sites
# sites (pixel average)
<setoption choice="0" name="repStateSites"/>
<setoption choice="0" name="repRateSites"/>
# gauges (catchment average)
<setoption choice="0" name="repStateUpsGauges"/>
<setoption choice="0" name="repRateUpsGauges"/>
<setoption choice="0" name="repMeteoUpsGauges"/>
# report reservoirs and lakes
<setoption choice="0" name="repsimulateLakes"/>
<setoption choice="0" name="repsimulateReservoirs"/>
# report mass balance
<setoption choice="1" name="repMBTs"/>
#-----------------------------------------------------------
# report maps
#-----------------------------------------------------------
# report state maps
<setoption choice="0" name="repStateMaps"/>
# report end maps
<setoption choice="0" name="repEndMaps"/>
# report output maps
# forcings
<setoption choice="0" name="repPrecipitationMaps"/>
<setoption choice="0" name="repTavgMaps"/>
<setoption choice="0" name="repETRefMaps"/>
<setoption choice="0" name="repESRefMaps"/>
<setoption choice="0" name="repEWRefMaps"/>
# dicharge
<setoption choice="0" name="repDischargeMaps"/>
<setoption choice="0" name="repAverageDis"/>
<setoption choice="0" name="repLZAvInflow"/>
# variables
<setoption choice="0" name="repRainMaps"/>
<setoption choice="0" name="repSnowMaps"/>
<setoption choice="0" name="repSnowCoverMaps"/>
<setoption choice="0" name="repSnowMeltMaps"/>
<setoption choice="0" name="repTaMaps"/>
<setoption choice="0" name="repETActMaps"/>
<setoption choice="0" name="repESActMaps"/>
<setoption choice="0" name="repDSLRMaps"/>
<setoption choice="0" name="repCumInterCeptionMaps"/>
<setoption choice="0" name="repInterceptionMaps"/>
<setoption choice="0" name="repEWIntMaps"/>
<setoption choice="0" name="repLeafDrainageMaps"/>
<setoption choice="0" name="repSurfaceRunoffMaps"/> #Surface runoff
<setoption choice="0" name="repFastRunoffMaps"/> #Surface runoff + UZ [mm]
<setoption choice="0" name="repTotalRunoffMaps"/> #Surface runoff + UZ [mm] + LZ
<setoption choice="0" name="repWaterDepthMaps"/>
<setoption choice="0" name="repThetaMaps"/>
<setoption choice="0" name="repThetaForestMaps"/>
<setoption choice="0" name="repThetaIrrigationMaps"/>
<setoption choice="0" name="repTopSoilMoistureMaps"/>
<setoption choice="0" name="repSurfaceSoilMoistureMaps"/>
<setoption choice="0" name="repUZMaps"/>
<setoption choice="0" name="repUZOutflowMaps"/>
<setoption choice="0" name="repLZMaps"/>
<setoption choice="0" name="repLZOutflowMaps"/>
<setoption choice="0" name="repInfiltrationMaps"/>
<setoption choice="0" name="repPrefFlowMaps"/>
<setoption choice="0" name="repPercolationMaps"/>
<setoption choice="0" name="repSeepSubToGWMaps"/>
<setoption choice="0" name="repGwPercUZLZMaps"/>
<setoption choice="0" name="repGwLossMaps"/>
<setoption choice="0" name="repRWS"/>
<setoption choice="0" name="repPFMaps"/>
<setoption choice="0" name="repPFForestMaps"/>
<setoption choice="0" name="repStressDays"/>
<setoption choice="0" name="repInternalCom"/>
<setoption choice="0" name="repTotalAbs"/>
<setoption choice="0" name="repTotalWUse"/>
<setoption choice="0" name="repWIndex"/>
</lfoptions>
<lfuser>
<group>
<comment>
**************************************************************
netCDF parameters
**************************************************************
</comment>
<textvar name="NetCDFTimeChunks" value="-1"/>
<comment>
!-- Optimization of netCDF I/O through chunking and caching.
The option "NetCDFTimeChunks" may take the following values:
- "-1" : Load everything upfront
- "[positive integer number]" : Chunk size defined by user
- "auto" : Let xarray to decide
</comment>
<textvar name="MapsCaching" value="False"/>
<comment>
The option "MapsCaching" may take the following values:
- "True" : Cache maps during execution
- "False" : No caching
</comment>
<comment>
**************************************************************
PARALLELIZED KINEMATIC ROUTING
**************************************************************
<comment>
<textvar name="OutputMapsChunks" value="1"/>
<comment>
The option "OutputMapsChunks" may take the following values:
- "[positive integer number]" : Dump outputs to disk every X steps (default 1)
</comment>
<textvar name="OutputMapsDataType" value="float64"/>
<comment>
The option "OutputMapsDataType" sets the output data type and may take the following values:
- "float64"
- "float32"
</comment>
<comment>
**************************************************************
PARALLELISATION WITH NUMBA (USED IN ROUTING AND SOILLOOP)
**************************************************************
</comment>
<textvar name="numCPUs_parallelNumba" value="0"/>
</comment>
!-- Parallelisation of using Numba runtime compiled library .
The option "numCPUs_parallelNumba" may take the following values:
- "0" : set to NUMBA_NUM_THREADS Environment Variable
(if NUMBA_NUM_THREADS is not set, will take the number of CPU cores determined by python's multiprocessing.cpu_count())
- "1" : serial execution (not parallel)
- "2", "3", ... : manual setting of the number of parallel threads.
(if exceeding NUMBA_NUM_THREADS, the value is set to NUMBA_NUM_THREADS) -->
</comment>
<comment>
**************************************************************
AREA AND OUTLETS
**************************************************************
</comment>
<textvar name="PathRoot" value= "$(SettingsPath)/..">
<comment>
MAPSDIR
Root directory (tables and parameters)
$(SettingsPath)/..
</comment>
</textvar>
<textvar name="MaskMap" value="$(PathRoot)/maps/interbasin_mask.nc">
<comment>
Clone map
col row cellsize xupleft yupleft
or pcraster maps or netcdf maps
</comment>
</textvar>
<textvar name="Gauges" value="4322500 2447500">
<comment>
4297500 2372500 inflow point
4307500 2377500 outlet
Nominal map with gauge locations (i.e cells for which simulated discharge
is written to file(1,2,3 etc)
lat lon (lat2 lon2 ...)
or pcraster maps or netcdf maps
</comment>
</textvar>
<textvar name="netCDFtemplate" value="$(PathRoot)/maps/elvstd">
<comment>
netcdf template used to copy metadata information for writing netcdf
</comment>
</textvar>
<textvar name="Latitude" value="$(PathRoot)/maps/ec_lat">
<comment>
latitude map to be used for snow/ice modelling
</comment>
</textvar>
<textvar name="proj4_params" value="+proj=laea +lat_0=52 +lon_0=10 +x_0=4321000 +y_0=3210000 +ellps=GRS80 +units=m +no_defs">
<comment>
This is needed when using projected coordinates
</comment>
</textvar>
<comment>
**************************************************************
TIME-RELATED CONSTANTS
**************************************************************
</comment>
<textvar name="CalendarConvention" value="proleptic_gregorian">
<comment>
Calendar convention
</comment>
</textvar>
<textvar name="CalendarDayStart" value="01/03/2016 06:00">
<comment>
Reference day and time
</comment>
</textvar>
<textvar name="DtSec" value="21600">
<comment>
timestep [seconds]
</comment>
</textvar>
<textvar name="DtSecChannel" value="3600">
<comment>
17280 5 times subrouting
21600 6 hours
Sub time step used for kinematic and MCT wave channel routing [seconds]
Within the model,the smallest out of DtSecChannel and DtSec is used
</comment>
</textvar>
<textvar name="StepStart" value="01/03/2016 06:00">
<comment>
01/01/YEAR_START 12:00
Number of first time step in simulation
</comment>
</textvar>
<textvar name="StepEnd" value="30/03/2016 06:00">
<comment>
01/01/YEAR_END 06:00
Number of last time step in simulation
</comment>
</textvar>
<textvar name="NumDaysSpinUp" value="180">
<comment>
low value to limit testing time
</comment>
</textvar>
<textvar name="ReportSteps" value="1..999999">
<comment>
1..9999
Time steps at which to write model state maps (i.e. only
those maps that would be needed to define initial conditions
for succeeding model run)
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
MONTE CARLO, KALMAN FILTER
**************************************************************
</comment>
<textvar name="EnsMembers" value="2">
<comment>
Number of sample to use in MonteCarlo simulations
</comment>
</textvar>
<textvar name="nrCores" value="2">
<comment>
Number of cores of the computer to use in MonteCarlo simulations
This only works with Linux, if set to 1 no forking will be used
</comment>
</textvar>
<textvar name="FilterSteps" value="10">
<comment>
Time steps at which to write model state maps (i.e. only
those maps that would be needed to define initial conditions
for succeeding model run)
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
CALIBRATION PARAMETERS
with .nc format: than working with smaller sub-areas is possible
**************************************************************
</comment>
<textvar name="UpperZoneTimeConstant" value="$(PathParams)/params_UpperZoneTimeConstant">
<comment>
default: 10
$(PathParams)/params_UpperZoneTimeConstant
Time constant for water in upper zone [days]
This is the average time a water 'particle' remains in the reservoir
if we had a stationary system (average inflow=average outflow)
</comment>
</textvar>
<textvar name="LowerZoneTimeConstant" value="$(PathParams)/params_LowerZoneTimeConstant">
<comment>
default: 100
$(PathParams)/params_LowerZoneTimeConstant
Time constant for water in lower zone [days]
This is the average time a water 'particle' remains in the reservoir
if we had a stationary system (average inflow=average outflow)
</comment>
</textvar>
<textvar name="GwPercValue" value="$(PathParams)/params_GwPercValue">
<comment>
default: 0.5
$(PathParams)/GwPercValue
Maximum rate of percolation going from the Upper to the Lower
response box [mm/day]
</comment>
</textvar>
<textvar name="GwLoss" value="$(PathParams)/params_GwLoss">
<comment>
default: 0.0
$(PathParams)/GwLoss
Maximum percolation rate from the lower groundwater zone [mm/days]. GWLoss
it’s lost beyond the catchment boundaries or to deep groundwater systems.
A value of 0 (closed lower boundary) is recommended as a starting value.
</comment>
</textvar>
<textvar name="LZThreshold" value="$(PathParams)/params_LZThreshold">
<comment>
default: 10
$(PathParams)/params_LZThreshold
threshold value [mm] of the water storage in the lower groundwater zone.
If the water storage in the lower groundwater zone decreases below LZThreshold,
the flow from the lower zone to the nearby rivers (base-flow) stops.
</comment>
</textvar>
<textvar name="b_Xinanjiang" value="$(PathParams)/params_b_Xinanjiang">
<comment>
default: 0.7 [-]
$(PathParams)/b_Xinanjiang
Power in Xinanjiang distribution function [-]
</comment>
</textvar>
<textvar name="PowerPrefFlow" value="$(PathParams)/params_PowerPrefFlow">
<comment>
default: 3.5 [-]
$(PathParams)/PowerPrefFlow
Power that controls increase of proportion of preferential
flow with increased soil moisture storage [-]
</comment>
</textvar>
<textvar name="CalChanMan" value="$(PathParams)/params_CalChanMan1">
<comment>
default: 2.0 [-]
$(PathParams)/CalChanMan1
Multiplier [-] applied to Channel Manning's n
</comment>
</textvar>
<textvar name="SnowMeltCoef" value="$(PathParams)/params_SnowMeltCoef">
<comment>
default: 4.0 [mm C-1 day-1]
$(PathParams)/SnowMeltCoef
SRM: 0.45 cm C-1 day-1 ( = 4.50 mm C-1 day-1), Kwadijk: 18 mm C-1 month-1 (= 0.59 mm C-1 day-1)
See also Martinec et al., 1998.
</comment>
</textvar>
<textvar name="CalChanMan2" value="$(PathParams)/params_CalChanMan2">
<comment>
default: 3.0 [-]
$(PathParams)/CalChanMan2
Multiplier [-] applied to Channel Manning's n for second line of routing
</comment>
</textvar>
<textvar name="CalChanMan3" value="$(PathParams)/params_CalChanMan3">
<comment>
default: 3.0 [-]
$(PathParams)/CalChanMan3
Multiplier [-] applied to Channel Manning's n for MCT routing
</comment>
</textvar>
<textvar name="LakeMultiplier" value="$(PathParams)/params_LakeMultiplier">
<comment>
default: 1.0 [-]
$(PathParams)/LakeMultiplier
Multiplier applied to the lake parameter A
</comment>
</textvar>
<textvar name="ReservoirFloodStorage" value="$(PathTables)/rflim.txt">
<comment>
Fraction of the total reservoir storage above which the reservoirs enters
the flood control zone.
</comment>
</textvar>
<textvar name="ReservoirFloodOutflowFactor" value="0.3">
<comment>
Factor of the 100-year return inflow (`ReservoirFloodOutflow`) that defines the inflow
value that switches, when exceeded, the reservoir routine to flood control mode.
It can be a map (NetCDF), a table (TXT) or a float. Negative values will be replaced by
the default value of 0.3
Units: -
Range: 0.1 - 0.5
Default: 0.3
</comment>
</textvar>
<textvar name="AvWaterRateThreshold" value="5.0">
<comment>
default: 5.0 [mm/day] (not included in calibration)
Critical amount of available water (expressed in [mm/day]!), above which 'Days Since Last Rain' parameter is
set to 1
</comment>
</textvar>
<textvar name="QSplitMult" value="2.0">
<comment>
default: 2.0
$(PathParams)/params_QSplitMult
Multiplier applied to average Q to split into a second line of routing
</comment>
</textvar>
<textvar name="ChanBottomWMult" value="1.0">
<comment>
default: 1.0
$(PathParams)/params_ChanBottomWMult
Multiplier applied to ChanBottomWidth
</comment>
</textvar>
<textvar name="ChanDepthTMult" value="1.0">
<comment>
default: 1.0
$(PathParams)/params_ChanDepthTMult
Multiplier [] applied to ChanDepthThreshold
</comment>
</textvar>
<textvar name="ChanSMult" value="1.0">
<comment>
default: 1.0
$(PathParams)/params_ChanSMult
Multiplier [] applied to ChanSdXdY
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
FILE PATHS
**************************************************************
</comment>
<textvar name="PathOut" value="$(PathRoot)/short">
<comment>
RUNDIR
Output path (org=$(PathRoot)/out)
</comment>
</textvar>
<textvar name="PathInit" value="$(PathRoot)/init">
<comment>
INITDIR
Path of the initial value maps e.g. lzavin.map (org=$(PathRoot)/outPo)
</comment>
</textvar>
<textvar name="PathMaps" value="$(PathRoot)/maps">
<comment>
Static maps path
</comment>
</textvar>
<textvar name="PathInflow" value="$(PathRoot)/maps">
<comment>
Inflow path
</comment>
</textvar>
<textvar name="PathParams" value="$(PathMaps)/parameters">
<comment>
Calibration parameter path
</comment>
</textvar>
<textvar name="PathTables" value="$(PathMaps)/tables">
<comment>
Tables path
</comment>
</textvar>
<textvar name="PathMapsTables" value="$(PathMaps)/table2map">
<comment>
Maps instead of tables path
</comment>
</textvar>
<textvar name="PathSoilHyd" value="$(PathMaps)/soilhyd">
<comment>
Maps instead of tables for soil hydraulics path
</comment>
</textvar>
<textvar name="PathMapsLandUseChange" value="$(PathMaps)/landuse">
<comment>
Maps for transient land use changes every 5 years
</comment>
</textvar>
<textvar name="PathMapsLanduse" value="$(PathMaps)/landuse2006">
<comment>
Maps for land use fractions and related land use maps
</comment>
</textvar>
<textvar name="PathWaterUse" value="$(PathMaps)/waterdemand">
<comment>
Water use maps path
</comment>
</textvar>
<textvar name="PathMeteo" value="$(PathRoot)/meteo">
<comment>
FORCINGSDIR
Meteo path
</comment>
</textvar>
<textvar name="PathLAI" value="$(PathMaps)/lai">
<comment>
Leaf Area Index maps path
</comment>
</textvar>
<textvar name="PathVarWaterfraction" value="$(PathMaps)/landuse">
<comment>
variable water fraction maps path
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
INITIAL CONDITIONS
(maps or single values)
**************************************************************
</comment>
<textvar name="timestepInit" value="01/01/1990 06:00">
<comment>
if init. condition are stored as netCDF with different time steps
this variable indicates which time step to use
Either as date e.g. 1/1/2010 or as number e.g. 5
</comment>
</textvar>
<textvar name="OFDirectInitValue" value="0">
<comment>
Cold start: 0
Initial overland flow storage [m3], direct runoff fraction
</comment>
</textvar>
<textvar name="OFOtherInitValue" value="0">
<comment>
Cold start: 0
Initial overland flow storage [m3], other fraction
</comment>
</textvar>
<textvar name="OFForestInitValue" value="0">
<comment>
Cold start: 0
Initial overland flow storage [m3], forest fraction
</comment>
</textvar>
<textvar name="SnowCoverAInitValue" value="0">
<comment>
Cold start: 0
initial snow depth in snow zone A [mm]
</comment>
</textvar>
<textvar name="SnowCoverBInitValue" value="0">
<comment>
Cold start: 0
initial snow depth in snow zone B [mm]
</comment>
</textvar>
<textvar name="SnowCoverCInitValue" value="0">
<comment>
Cold start: 0
initial snow depth in snow zone C [mm]
</comment>
</textvar>
<textvar name="FrostIndexInitValue" value="0">
<comment>
Cold start: 0
initial Frost Index value [degC/day]
</comment>
</textvar>
<textvar name="CumIntInitValue" value="0">
<comment>
Cold start: 0
cumulative interception [mm]
</comment>
</textvar>
<textvar name="UZInitValue" value="0">
<comment>
Cold start: 0
PRERUNDIR/uz.end.nc
water in upper store [mm]
</comment>
</textvar>
<textvar name="DSLRInitValue" value="1">
<comment>
Cold start: 1
days since last rainfall [days]
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
The following variables can also be initialized in the model
internally. if you want this to happen set them to bogus value
of -9999
**************************************************************
</comment>
<textvar name="LZInitValue" value="-9999">
<comment>
PRERUNDIR/lz.end.nc
water in lower store [mm]
Cold start: -9999: use steady-state storage
</comment>
</textvar>
<textvar name="TotalCrossSectionAreaInitValue" value="-9999">
<comment>
initial cross-sectional area of flow in channel[m2]
Cold start: -9999: use half bankfull
</comment>
</textvar>
<textvar name="ThetaInit1Value" value="-9999">
<comment>
PRERUNDIR/tha.end.nc
initial soil moisture content layer 1a (superficial soil layer) [mm3/mm3]
Cold start: -9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaInit2Value" value="-9999">
<comment>
PRERUNDIR/thb.end.nc
initial soil moisture content layer 1b (upper soil layer) [mm3/mm3]
Cold start: -9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaInit3Value" value="-9999">
<comment>
PRERUNDIR/thc.end.nc
initial soil moisture content layer 2 (lower soil layer) [mm3/mm3]
Cold start: -9999: use field capacity values
</comment>
</textvar>
<textvar name="CrossSection2AreaInitValue" value="-9999">
<comment>
initial channel cross-section area [m2] for 2nd routing channel
Cold start: -9999: use 0
</comment>
</textvar>
<textvar name="PrevSideflowInitValue" value="-9999">
<comment>
initial lateral inflow for 1st line of routing [m2/s]
Cold start: -9999: use 0
</comment>
</textvar>
<textvar name="LakeInitialLevelValue" value="-9999">
<comment>
Initial lake level [m]
Cold start: -9999 sets initial value to steady-state level
</comment>
</textvar>
<textvar name="LakePrevInflowValue" value="-9999">
<comment>
Lake inflow at previous routing sub-step (ChanQ(t-1)) [m3/s]
Cold start: -9999 sets initial value equal to PrevDischarge (ChanQ(t))
</comment>
</textvar>
<textvar name="LakePrevOutflowValue" value="-9999">
<comment>
Lake outflow at previous routing sub-step (ChanQ(t-1)) [m3/s]
Cold start: -9999 sets initial value
</comment>
</textvar>
<textvar name="PrevDischarge" value="-9999">
<comment>
Outflow discharge at the end of previous step (instantaneous) [m3/s]
Cold start: -9999 sets initial value to 0
</comment>
</textvar>
<textvar name="PrevDischargeAvg" value="-9999">
<comment>
Outflow average discharge on previous routing sub-step (average) [m3/s]
Cold start: -9999 sets initial value to 0
</comment>
</textvar>
<textvar name="PrevCmMCTInitValue" value="-9999">
<comment>
Courant number at previous step for MCT routing
Cold start: -9999 sets initial value to 1
</comment>
</textvar>
<textvar name="PrevDmMCTInitValue" value="-9999">
<comment>
Reynolds number at previous step for MCT routing
Cold start: -9999 sets initial value to 0
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
INITIAL CONDITIONS FOREST
(maps or single values)
**************************************************************
</comment>
<textvar name="CumIntForestInitValue" value="0">
<comment>
cumulative interception [mm]
Cold start: 0
</comment>
</textvar>
<textvar name="UZForestInitValue" value="0">
<comment>
PRERUNDIR/uzf.end.nc
water in upper groundwater store [mm]
Cold start: 0
</comment>
</textvar>
<textvar name="DSLRForestInitValue" value="1">
<comment>
days since last rainfall
Cold start: 1
</comment>
</textvar>
<textvar name="ThetaForestInit1Value" value="-9999">
<comment>
PRERUNDIR/thfa.end.nc
initial soil moisture content [mm3/mm3] layer 1a (superficial soil layer)
Cold start: -9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaForestInit2Value" value="-9999">
<comment>
PRERUNDIR/thfb.end.nc
initial soil moisture content [mm3/mm3] layer 1b (upper soil layer)
Cold start: -9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaForestInit3Value" value="-9999">
<comment>
PRERUNDIR/thfc.end.nc
initial soil moisture content [mm3/mm3] layer 2 (lower soil layer)
Cold start: -9999: use field capacity values
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
INITIAL CONDITIONS IRRIGATION
(maps or single values)
**************************************************************
</comment>
<textvar name="CumIntIrrigationInitValue" value="0">
<comment>
cumulative interception [mm]
Cold start: 0
</comment>
</textvar>
<textvar name="UZIrrigationInitValue" value="0">
<comment>
PRERUNDIR/uzi.end.nc
water in groundwater upper store [mm]
Cold start: 0
</comment>
</textvar>
<textvar name="DSLRIrrigationInitValue" value="1">
<comment>
days since last rainfall
Cold start: 1
</comment>
</textvar>
<textvar name="ThetaIrrigationInit1Value" value="-9999">
<comment>
PRERUNDIR/thia.end.nc
initial soil moisture content [mm3/mm3] layer 1a (superficial soil layer)
Cold start: -9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaIrrigationInit2Value" value="-9999">
<comment>
PRERUNDIR/thib.end.nc
initial soil moisture content [mm3/mm3] layer 1b (upper soil layer)
Cold start: -9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaIrrigationInit3Value" value="-9999">
<comment>
PRERUNDIR/thic.end.nc
initial soil moisture content [mm3/mm3] layer 2 (lower soil layer)
Cold start: -9999: use field capacity values
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
INITIAL CONDITIONS IMPERVIOUS AREAS
(maps or single values)
**************************************************************
</comment>
<textvar name="CumIntSealedInitValue" value="0">
<comment>
cumulative interception [mm]
Cold start: 0
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
PREFIXES OF METEO AND VEGETATION RELATED VARIABLES
**************************************************************
</comment>
<textvar name="PrefixPrecipitation" value="pr">
<comment>
prefix precipitation maps
</comment>
</textvar>
<textvar name="PrefixTavg" value="ta">
<comment>
prefix average temperature maps
</comment>
</textvar>