-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings_full_efas_day.xml
5340 lines (4355 loc) · 196 KB
/
settings_full_efas_day.xml
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_files file
- SettingsDir: alias for SettingsPath
- ProjectPath: path to project root dir
- ProjectDir: alias for ProjectPath
ex: <textvar name="PathRoot" value="$(SettingsPath)/../../myrootfolder">
-->
<lfsettings>
<lfoptions>
<!-- MODULES ACTIVATION -->
<setoption choice="1" name="groundwaterSmooth" />
<setoption choice="1" name="wateruse" />
<setoption choice="1" name="TransientWaterDemandChange" />
<setoption choice="0" name="useWaterDemandAveYear" />
<setoption choice="1" name="wateruseRegion" />
<setoption choice="1" name="drainedIrrigation" />
<setoption choice="1" name="riceIrrigation" />
<setoption choice="1" name="openwaterevapo"/>
<setoption choice="1" name="simulateLakes"/>
<setoption choice="1" name="simulateReservoirs"/>
<setoption choice="1" name="simulatePF"/>
<setoption choice="1" name="SplitRouting"/>
<setoption choice="0" name="indicator" />
<setoption choice="0" name="TransientLandUseChange"/>
<setoption choice="0" name="varfractionwater"/>
<setoption choice="0" name="inflow"/>
<setoption choice="0" name="InitLisflood"/>
<setoption choice="0" name="InitLisfloodwithoutSplit"/>
<!-- REPORTING STATE AND END MAPS -->
<setoption choice="1" name="repEndMaps"/>
<setoption choice="1" name="repStateMaps"/>
<!-- REPORTING MAPS -->
<setoption choice="1" name="repDischargeMaps"/>
<setoption choice="1" name="repsimulateLakes"/>
<setoption choice="1" name="repsimulateReservoirs"/>
<setoption choice="1" name="repSnowMaps"/>
<setoption choice="1" name="repPFMaps"/>
<setoption choice="1" name="repLZMaps"/>
<setoption choice="1" name="repUZMaps"/>
<setoption choice="1" name="repGwPercUZLZMaps"/>
<setoption choice="1" name="repRWS"/>
<setoption choice="1" name="repTotalAbs"/>
<setoption choice="1" name="repTotalWUse"/>
<setoption choice="1" name="repWIndex"/>
<setoption choice="0" name="repPF1Maps"/>
<setoption choice="0" name="repPF2Maps"/>
<setoption choice="0" name="repStressDays"/>
<!-- REPORTING TIME-SERIES -->
<setoption choice="1" name="repDischargeTs"/>
<setoption choice="1" name="repStateUpsGauges"/>
<setoption choice="1" name="repRateUpsGauges"/>
<setoption choice="1" name="repMeteoUpsGauges"/>
<!-- MISCELLANEOUS -->
<setoption choice="1" name="readNetcdfStack"/>
<setoption choice="1" name="writeNetcdfStack"/>
<setoption choice="1" name="writeNetcdf"/>
<setoption choice="0" name="MonteCarlo"/>
<setoption choice="0" name="EnKF"/>
<setoption choice="0" name="repMBTs"/>
<setoption choice="0" name="repInternalCom"/>
<setoption choice="0" name="TemperatureInKelvin"/>
<setoption choice="0" name="gridSizeUserDefined"/>
</lfoptions>
<lfuser>
<group>
<comment>
**************************************************************
AREA AND OUTLETS
**************************************************************
</comment>
<!-- Parallelisation of the kinematic wave routing (via openMP multi-threading).
The option "numberParallelThreadsKinematicWave" may take the following values:
- "0" : auto-detection of the machine/node's number of CPUs (all CPUs are used minus 1)
(do not set it if other simulations are running on the same machine/node)
- "1" : serial execution (not parallel)
- "2", "3", ... : manual setting of the number of parallel threads.
(if exceeding the number of CPUs, the option is set to "0") -->
<textvar name="numCPUs_parallelKinematicWave" value="0"/>
<textvar name="PathRoot" value="/workarea/EFAS">
<comment>
Root directory
</comment>
</textvar>
<comment>
**************************************************************
FILE PATHS
**************************************************************
</comment>
<!-- menta -->
<textvar name="PathOut" value="/workarea/lf_results/EFAS/out_daily">
<comment>
Output path (org=$(PathRoot)/out)
</comment>
</textvar>
<textvar name="PathInit" value="/workarea/lf_results/EFAS/InitSafe">
<comment>
Path of the initial value maps e.g. lzavin.map (org=$(PathRoot)/outPo)
</comment>
</textvar>
<textvar name="PathMaps" value="$(PathRoot)">
<comment>
Maps path
</comment>
</textvar>
<textvar name="PathInflow" value="$(PathRoot)/inflow">
<comment>
Inflow pathS
</comment>S
</textvar>
<textvar name="PathParams" value="$(PathMaps)/parameters">
<comment>
Calibration parameter path
</comment>
</textvar>
<textvar name="PathTables" value="$(PathRoot)/tables">
<comment>
Tables path
</comment>
</textvar>
<textvar name="PathMapsTables" value="$(PathMaps)/table2map">
<comment>
Maps instead tables path
</comment>
</textvar>
<textvar name="PathSoilHyd" value="$(PathMaps)/soilhyd">
<comment>
Maps instead tables for soil hydraulics path
</comment>
</textvar>
<textvar name="PathMapsLandUseChange" value="$(PathRoot)/landusechange">
<comment>
Maps for transient land use changes
rcp85_20062125
</comment>
</textvar>
<textvar name="PathMapsLanduse" value="$(PathRoot)/landuse2010">
<comment>
Maps for land use fractions and related land use maps
</comment>
</textvar>
<textvar name="PathWaterUse" value="$(PathRoot)/wateruse2006">
<comment>
Water use maps path
</comment>
</textvar>
<textvar name="PathMeteo" value="$(PathRoot)/EFAS_forcings">
<comment>
./meteoWatch
Meteo path
</comment>
</textvar>
<textvar name="PathLAI" value="$(PathRoot)/lai">
<comment>
Leaf Area Index maps path
</comment>
</textvar>
<textvar name="PathVarWaterfraction" value="$(PathRoot)">
<comment>
variable water fraction maps path
</comment>
</textvar>
<textvar name="MaskMap" value="$(PathRoot)/area.nc">
<comment>
70 40 0.1 -8.6 43.3 # Douro
30 30 0.1 6.0 52.0
Clone map
col row cellsize xupleft yupleft
300 200 0.1 -15 25 -> Niger
3600 1500 0.1 -180 90 -> World
$(PathRoot)\areamaps\areaEurope.map
$(PathRoot)\areamaps\AreaPo.map
or pcraster maps or netcdf maps
e.g.
Rhine areaLobith.map
Niger areaLokoja.map
Po areaPo.map
Danube areaDanube.map
Sava areaSava.map
</comment>
</textvar>
<textvar name="Gauges" value="$(PathMaps)/outlets.nc">
<comment>
-7.85 41.15 -7.75 41.15 -7.35 41.15 -7.25 41.15 -7.15 41.15 -7.05 41.15 -5.85 41.75 # Duoro
6.15 51.85
12.25 44.95 9.95 45.15 # Po
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
./mapsNetcdf/maps/outlets_World.map
$(PathMaps)/outlets.map
e.g.
Lobith/Rhine 6.15 51.85
Bratislava/Danube 17.15 48.15
Niger/Lokoja 6.75 7.85 0.45 15.65
</comment>
</textvar>
<textvar name="netCDFtemplate" value="$(PathMaps)/elvstd.nc">
<comment>
netcdf template used to copy metadata information for writing netcdf
$(PathEvapo)/$(PrefixE0)
</comment>
</textvar>
<comment>
**************************************************************
TIME-RELATED CONSTANTS
**************************************************************
</comment>
<textvar name="CalendarDayStart" value="02/01/1990 06:00">
<comment>
Calendar day number of 1st day in model run
Day of the year of first map (e.g. xx000.001) even if the model start from map e.g. 500
e.g. 1st of January: 1; 1st of June 151 (or 152 in leap year)
Needed to read out LAI tables correctly
</comment>
</textvar>
<textvar name="DtSec" value="86400">
<comment>
timestep [seconds]
</comment>
</textvar>
<textvar name="DtSecChannel" value="3600">
<comment>
17280 5 times subrouting
21600 4 times
Sub time step used for kinematic wave channel routing [seconds]
Within the model,the smallest out of DtSecChannel and DtSec is used
</comment>
</textvar>
<textvar name="StepStart" value="06/01/2015 06:00">
<comment>
SMHI r1-r4 1/1/2066 = 21916
Number of first time step in simulation
</comment>
</textvar>
<!--menta-->
<!--<textvar name="StepEnd" value="10957">-->
<textvar name="StepEnd" value="30/06/2017 06:00">
<comment>
IPSL RCP85 2011-2099 32507
Number of last time step in simulation
</comment>
</textvar>
<!-- menta -->
<!--<textvar name="ReportSteps" value="1..10957">-->
<textvar name="ReportSteps" value="1..99999">
<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>
**************************************************************
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.nc
Time constant for water in upper zone [days*mm^GwAlpha]
Note that units are days if GwAlpha=0 (linear reservoir]
</comment>
</textvar>
<textvar name="LowerZoneTimeConstant" value="$(PathParams)/params_LowerZoneTimeConstant">
<comment>
default: 100
$(PathParams)/params_LowerZoneTimeConstant.nc
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)/params_GwPercValue.nc
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)/params_GwLoss.nc
Maximum loss rate out of Lower response box, expressed as a fraction of
lower zone outflow. Fraction [-], range 0-1
A value of 0 (closed lower boundary) is recommended as a starting value
</comment>
</textvar>
<textvar name="b_Xinanjiang" value="$(PathParams)/params_b_Xinanjiang">
<comment>
default: 0.7
$(PathParams)/params_b_Xinanjiang.nc
Power in Xinanjiang distribution function
</comment>
</textvar>
<textvar name="PowerPrefFlow" value="$(PathParams)/params_PowerPrefFlow">
<comment>
default: 3.5
$(PathParams)/params_PowerPrefFlow.nc
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)/params_CalChanMan1.nc
Multiplier applied to Channel Manning's n
</comment>
</textvar>
<textvar name="SnowMeltCoef" value="$(PathParams)/params_SnowMeltCoef">
<comment>
default: 4.0
$(PathParams)/params_SnowMeltCoef.nc
SRM: 0.45 cm/C/day ( = 4.50 mm/C/day), Kwadijk: 18 mm/C/month (= 0.59 mm/C/day)
See also Martinec et al., 1998.
</comment>
</textvar>
<textvar name="CalChanMan2" value="$(PathParams)/params_CalChanMan2">
<comment>
default: 3.0
$(PathParams)/params_CalChanMan2.nc
Multiplier applied to Channel Manning's n for second line of routing
</comment>
</textvar>
<textvar name="LakeMultiplier" value="$(PathParams)/params_LakeMultiplier">
<comment>
default: 1.0
$(PathParams)/params_LakeMultiplier.nc
Multiplier applied to the lake parameter A
</comment>
</textvar>
<textvar name="adjust_Normal_Flood" value="$(PathParams)/params_adjust_Normal_Flood">
<comment>
default: 0.8
$(PathParams)/params_adjust_Normal_Flood.nc
adjusting the balance between normal and flood storage
big values (= closer to 1.0 = close to flood) results in keeping the outflow longer at rnormq
Range 0.01 - 0.99
</comment>
</textvar>
<textvar name="ReservoirRnormqMult" value="$(PathParams)/params_ReservoirRnormqMult">
<comment>
default: 1.0
$(PathParams)/params_ReservoirRnormqMult.nc
Reservoir rnormq (normal outflow)
fraction of the value in table rnormq.txt range: 0.5 - 2
</comment>
</textvar>
<textvar name="AvWaterRateThreshold" value="5.0">
<comment>
default: 5.0 (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>
</group>
<group>
<comment>
**************************************************************
INITIAL CONDITIONS
(maps or single values)
**************************************************************
</comment>
<textvar name="timestepInit" value="0">
<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>
Reported water direct
</comment>
</textvar>
<textvar name="OFOtherInitValue" value="0">
<comment>
Reported water other
</comment>
</textvar>
<textvar name="OFForestInitValue" value="0">
<comment>
Reported water forest
</comment>
</textvar>
<textvar name="WaterDepthInitValue" value="0">
<comment>
initial overland flow water depth [mm]
</comment>
</textvar>
<textvar name="SnowCoverAInitValue" value="0">
<comment>
initial snow depth in snow zone A [mm]
</comment>
</textvar>
<textvar name="SnowCoverBInitValue" value="0">
<comment>
initial snow depth in snow zone B [mm]
</comment>
</textvar>
<textvar name="SnowCoverCInitValue" value="0">
<comment>
initial snow depth in snow zone C [mm]
</comment>
</textvar>
<textvar name="FrostIndexInitValue" value="0">
<comment>
initial Frost Index value
</comment>
</textvar>
<textvar name="CumIntInitValue" value="0">
<comment>
cumulative interception [mm]
</comment>
</textvar>
<textvar name="UZInitValue" value="0">
<comment>
water in upper store [mm]
</comment>
</textvar>
<textvar name="DSLRInitValue" value="1">
<comment>
days since last rainfall
</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>
water in lower store [mm]
-9999: use steady-state storage
</comment>
</textvar>
<textvar name="TotalCrossSectionAreaInitValue" value="-9999">
<comment>
initial cross-sectional area of flow in channel[m2]
-9999: use half bankfull
</comment>
</textvar>
<textvar name="ThetaInit1Value" value="-9999">
<comment>
initial soil moisture content layer 1
-9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaInit2Value" value="-9999">
<comment>
initial soil moisture content layer 2
-9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaInit3Value" value="-9999">
<comment>
initial soil moisture content layer 2
-9999: use field capacity values
</comment>
</textvar>
<textvar name="CrossSection2AreaInitValue" value="-9999">
<comment>
initial channel crosssection for 2nd routing channel
-9999: use 0
</comment>
</textvar>
<textvar name="PrevSideflowInitValue" value="-9999">
<comment>
initial channel cross section for 2nd routing channel
-9999: use 0
</comment>
</textvar>
<textvar name="LakeInitialLevelValue" value="-9999">
<comment>
Initial lake level [m]
-9999 sets initial value to steady-state level
</comment>
</textvar>
<textvar name="PrevDischarge" value="-9999">
<comment>
initial discharge from previous run for lakes, reservoirs and transmission loss
only needed for lakes reservoirs and transmission loss
-9999: use 0
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
INITIAL CONDITIONS FOREST
(maps or single values)
**************************************************************
</comment>
<textvar name="CumIntForestInitValue" value="0">
<comment>
cumulative interception [mm]
</comment>
</textvar>
<textvar name="UZForestInitValue" value="0">
<comment>
water in upper store [mm]
</comment>
</textvar>
<textvar name="DSLRForestInitValue" value="1">
<comment>
days since last rainfall
</comment>
</textvar>
<textvar name="ThetaForestInit1Value" value="-9999">
<comment>
initial soil moisture content layer 1
-9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaForestInit2Value" value="-9999">
<comment>
initial soil moisture content layer 2
-9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaForestInit3Value" value="-9999">
<comment>
initial soil moisture content layer 2
-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]
</comment>
</textvar>
<textvar name="UZIrrigationInitValue" value="0">
<comment>
water in upper store [mm]
</comment>
</textvar>
<textvar name="DSLRIrrigationInitValue" value="1">
<comment>
days since last rainfall
</comment>
</textvar>
<textvar name="ThetaIrrigationInit1Value" value="-9999">
<comment>
initial soil moisture content layer 1
-9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaIrrigationInit2Value" value="-9999">
<comment>
initial soil moisture content layer 2
-9999: use field capacity values
</comment>
</textvar>
<textvar name="ThetaIrrigationInit3Value" value="-9999">
<comment>
initial soil moisture content layer 2
-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]
</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>
<textvar name="PrefixE0" value="e0">
<comment>
prefix E0 maps
</comment>
</textvar>
<textvar name="PrefixES0" value="es">
<comment>
prefix ES0 maps
</comment>
</textvar>
<textvar name="PrefixET0" value="et">
<comment>
prefix ET0 maps
</comment>
</textvar>
<textvar name="PrefixLAIOther" value="laio">
<comment>
prefix LAI maps
</comment>
</textvar>
<textvar name="PrefixLAIForest" value="laif">
<comment>
prefix LAI forest maps
</comment>
</textvar>
<textvar name="PrefixLAIIrrigation" value="laii">
<comment>
prefix LAI irrigation maps
</comment>
</textvar>
<textvar name="PrefixWaterUseDomestic" value="dom">
<comment>
prefix domestic water use maps
</comment>
</textvar>
<textvar name="PrefixWaterUseLivestock" value="liv">
<comment>
prefix livestock water use maps
</comment>
</textvar>
<textvar name="PrefixWaterUseEnergy" value="ene">
<comment>
prefix energy water use maps
</comment>
</textvar>
<textvar name="PrefixWaterUseIndustry" value="ind">
<comment>
prefix industry water use maps
</comment>
</textvar>
<textvar name="PrefixVarWaterFraction" value="varw">
<comment>
prefix variable water fraction
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
PARAMETERS RELATED TO EVAPO(TRANSPI)RATION AND Interception
**************************************************************
Suggested parameterisation strategy:
- leave all these parameters at their default values.
in some very special cases CalEvaporation may be set to some
value other than one
</comment>
<textvar name="PrScaling" value="1">
<comment>
Multiplier applied to potential precipitation rates
</comment>
</textvar>
<textvar name="CalEvaporation" value="1.0">
<comment>
Multiplier applied to potential evapo(transpi)ration rates
</comment>
</textvar>
<textvar name="LeafDrainageTimeConstant" value="1">
<comment>
Time constant for water in interception store [days]
</comment>
</textvar>
<textvar name="kdf" value="0.72">
<comment>
Average extinction coefficient for the diffuse radiation flux
varies with crop from 0.4 to 1.1 (Goudriaan (1977))
</comment>
</textvar>
<textvar name="SMaxSealed" value="1.0">
<comment>
maximum depression storage for water on impervious surface
which is not immediatly causing surface runoff [mm]
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
SNOW AND FROST RELATED PARAMETERS
**************************************************************
Suggested parameterisation strategy:
- estimate SnowFactor from prior data (if available), otherwise use 1
- use SnowMeltCoef as a calibration constant
- leave all other parameters at default
</comment>
<textvar name="SnowFactor" value="1">
<comment>
Multiplier applied to precipitation that falls as snow
</comment>
</textvar>
<textvar name="SnowSeasonAdj" value="1.0">
<comment>
range [mm C-1 d-1] of the seasonal variation
SnowMeltCoef is the average value
</comment>
</textvar>
<textvar name="TempMelt" value="1.0">
<comment>
Average temperature at which snow melts
</comment>
</textvar>
<textvar name="TempSnow" value="1.0">
<comment>
Average temperature below which precipitation is snow
</comment>
</textvar>
<textvar name="TemperatureLapseRate" value="0.0065">
<comment>
Temperature lapse rate with altitude [deg C / m]
</comment>
</textvar>
<textvar name="Afrost" value="0.97">
<comment>
Daily decay coefficient, (Handbook of Hydrology, p. 7.28)
</comment>
</textvar>
<textvar name="Kfrost" value="0.57">
<comment>
Snow depth reduction coefficient, [cm-1], (HH, p. 7.28)
</comment>
</textvar>
<textvar name="SnowWaterEquivalent" value="0.45">
<comment>
Snow water equivalent, (based on snow density of 450 kg/m3) (e.g. Tarboton and Luce, 1996)
</comment>
</textvar>
<textvar name="FrostIndexThreshold" value="56">
<comment>
Degree Days Frost Threshold (stops infiltration, percolation and capillary rise)
Molnau and Bissel found a value 56-85 for NW USA.
</comment>
</textvar>
</group>
<group>
<comment>
**************************************************************
IRRIGATION AND WATER ABSTRACTION RELATED PARAMETERS
**************************************************************
</comment>
<textvar name="IrrigationEfficiency" value="0.75">
<comment>
Field application irrigation efficiency max 1, ~0.90 drip irrigation, ~0.75 sprinkling
</comment>
</textvar>
<textvar name="ConveyanceEfficiency" value="0.80">
<comment>
conveyance efficiency, around 0.80 for average channel
</comment>
</textvar>
<textvar name="IrrigationType" value="1">
<comment>
IrrigationType (value between 0 and 1) is used here to distinguish between additional adding water
until fieldcapacity (value set to 1) or not (value set to 0)
</comment>
</textvar>
<textvar name="IrrigationMult" value="1.20">
<comment>