-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlistVariables.html
4571 lines (4553 loc) · 112 KB
/
listVariables.html
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
<!DOCTYPE html>
<html class="writer-html5" lang="en" >
<head>
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>7. List of output variables — Community Water Model</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/graphviz.css" type="text/css" />
<link rel="stylesheet" href="_static/iiasa.css" type="text/css" />
<!--[if lt IE 9]>
<script src="_static/js/html5shiv.min.js"></script>
<![endif]-->
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/sphinx_highlight.js"></script>
<script src="_static/js/theme.js"></script>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="8. Demo of the model" href="results.html" />
<link rel="prev" title="6. Error handling" href="errorHandling.html" />
</head>
<body class="wy-body-for-nav">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search" >
<a href="index.html" class="icon icon-home">
Community Water Model
<img src="_static/IIASA_logo_white.png" class="logo" alt="Logo"/>
</a>
<div class="version">
1.0.6
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
<input type="text" name="q" placeholder="Search docs" aria-label="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="intro.html">1. Introduction</a></li>
<li class="toctree-l1"><a class="reference internal" href="modeldesign.html">2. Model Design</a></li>
<li class="toctree-l1"><a class="reference internal" href="publication.html">3. Publication</a></li>
<li class="toctree-l1"><a class="reference internal" href="setup.html">4. Setup of the model</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial.html">5. Tutorial</a></li>
<li class="toctree-l1"><a class="reference internal" href="errorHandling.html">6. Error handling</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">7. List of output variables</a></li>
<li class="toctree-l1"><a class="reference internal" href="results.html">8. Demo of the model</a></li>
<li class="toctree-l1"><a class="reference internal" href="todo.html">9. The Model Itself</a></li>
<li class="toctree-l1"><a class="reference internal" href="data.html">10. Data</a></li>
<li class="toctree-l1"><a class="reference internal" href="calibration.html">11. Calibration tool</a></li>
<li class="toctree-l1"><a class="reference internal" href="calibration_tutorial.html">12. Calibration tutorial</a></li>
<li class="toctree-l1"><a class="reference internal" href="resolution.html">13. Increasing resolution</a></li>
<li class="toctree-l1"><a class="reference internal" href="zambezi.html">14. Example Zambezi</a></li>
<li class="toctree-l1"><a class="reference internal" href="license.html">15. License and download info</a></li>
<li class="toctree-l1"><a class="reference internal" href="sourcecode.html">16. Source code</a></li>
<li class="toctree-l1"><a class="reference internal" href="forum.html">17. Forum</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"><nav class="wy-nav-top" aria-label="Mobile navigation menu" >
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="index.html">Community Water Model</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="Page navigation">
<ul class="wy-breadcrumbs">
<li><a href="index.html" class="icon icon-home" aria-label="Home"></a></li>
<li class="breadcrumb-item active"><span class="section-number">7. </span>List of output variables</li>
<li class="wy-breadcrumbs-aside">
<a href="_sources/listVariables.rst.txt" rel="nofollow"> View page source</a>
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<section id="list-of-output-variables">
<span id="rst-variables"></span><h1><span class="section-number">7. </span>List of output variables<a class="headerlink" href="#list-of-output-variables" title="Permalink to this heading"></a></h1>
<p>This list of variables gives an overview of possible output variables.</p>
<p>The description of output variables (under construction) is available here: CWatM\cwatm\variable_documentation\selfvar.xlsx</p>
<div class="admonition warning">
<p class="admonition-title">Warning</p>
<p>this list is still under construction. We have to complete descriptions and units for all variables.</p>
</div>
<table class="docutils align-default">
<thead>
<tr class="row-odd"><th class="head"><p>ID</p></th>
<th class="head"><p>VariableName</p></th>
<th class="head"><p>Description</p></th>
<th class="head"><p>Unit</p></th>
<th class="head"><p>Module</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p>V1</p></td>
<td><p>modflow</p></td>
<td><p>Flag: True if modflow_coupling = True in settings file</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-odd"><td><p>V2</p></td>
<td><p>storGroundwater</p></td>
<td><p>simulated groundwater storage</p></td>
<td><p>m</p></td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-even"><td><p>V3</p></td>
<td><p>specificYield</p></td>
<td><p>groundwater reservoir parameters (if ModFlow is not used) used to compute groundwater levels in capillary rise module</p></td>
<td><p>m</p></td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-odd"><td><p>V4</p></td>
<td><p>maxGWCapRise</p></td>
<td><p>influence of capillary rise above groundwater level</p></td>
<td><p>m</p></td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-even"><td><p>V5</p></td>
<td><p>dzRel0100</p></td>
<td><p>map of relative elevation above flood plains (max elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-odd"><td><p>V6</p></td>
<td><p>dzRel0090</p></td>
<td><p>map of relative elevation above flood plains (90% elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-even"><td><p>V7</p></td>
<td><p>dzRel0080</p></td>
<td><p>map of relative elevation above flood plains (80% elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-odd"><td><p>V8</p></td>
<td><p>dzRel0070</p></td>
<td><p>map of relative elevation above flood plains (70% elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-even"><td><p>V9</p></td>
<td><p>dzRel0060</p></td>
<td><p>map of relative elevation above flood plains (60% elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-odd"><td><p>V10</p></td>
<td><p>dzRel0050</p></td>
<td><p>map of relative elevation above flood plains (median elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-even"><td><p>V11</p></td>
<td><p>dzRel0040</p></td>
<td><p>map of relative elevation above flood plains (40% elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-odd"><td><p>V12</p></td>
<td><p>dzRel0030</p></td>
<td><p>map of relative elevation above flood plains (30% elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-even"><td><p>V13</p></td>
<td><p>dzRel0020</p></td>
<td><p>map of relative elevation above flood plains (20% elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-odd"><td><p>V14</p></td>
<td><p>dzRel0010</p></td>
<td><p>map of relative elevation above flood plains (10% elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-even"><td><p>V15</p></td>
<td><p>dzRel0005</p></td>
<td><p>map of relative elevation above flood plains (5% elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-odd"><td><p>V16</p></td>
<td><p>dzRel0001</p></td>
<td><p>map of relative elevation above flood plains (1% elevation above plain)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-even"><td><p>V17</p></td>
<td><p>capRiseFrac</p></td>
<td><p>fraction of a grid cell where capillar rise may happen</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>capillarRise</p></td>
</tr>
<tr class="row-odd"><td><p>V18</p></td>
<td><p>cut_ef_map</p></td>
<td><p>if TRUE calculated maps of environmental flow are cut to the extend of the area map</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>environflow</p></td>
</tr>
<tr class="row-even"><td><p>V19</p></td>
<td><p>MAF</p></td>
<td><p>Mean of discharge for all days</p></td>
<td><p>m3/s</p></td>
<td><p>environflow</p></td>
</tr>
<tr class="row-odd"><td><p>V20</p></td>
<td><p>Q90</p></td>
<td><p>10% of the lowest discharge for all days</p></td>
<td><p>m3/s</p></td>
<td><p>environflow</p></td>
</tr>
<tr class="row-even"><td><p>V21</p></td>
<td><p>MMF</p></td>
<td><p>Mean of discharge for each month separately</p></td>
<td><p>m3/s</p></td>
<td><p>environflow</p></td>
</tr>
<tr class="row-odd"><td><p>V22</p></td>
<td><p>MQ90</p></td>
<td><p>10% of lowest discharge for each month separately</p></td>
<td><p>m3/s</p></td>
<td><p>environflow</p></td>
</tr>
<tr class="row-even"><td><p>V23</p></td>
<td><p>EF_VMF</p></td>
<td><p>EF requirement with Variable Monthly Flow: Pastor et al.(2014): Accounting for environmental flow requirements in global water assessments, Hydrol Earth Syst Sci, 18, p5041-5059</p></td>
<td><p>m3/s</p></td>
<td><p>environflow</p></td>
</tr>
<tr class="row-odd"><td><p>V25</p></td>
<td><p>potBareSoilEvap</p></td>
<td><p>potential bare soil evaporation (calculated with minus snow evaporation)</p></td>
<td><p>m</p></td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-even"><td><p>V26</p></td>
<td><p>cropCorrect</p></td>
<td><p>calibrated factor of crop KC factor</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-odd"><td><p>V27</p></td>
<td><p>minCropKC</p></td>
<td><p>minimum crop factor (default 0.2)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-even"><td><p>V28</p></td>
<td><p>ETRef</p></td>
<td><p>potential evapotranspiration rate from reference crop</p></td>
<td><p>m</p></td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-odd"><td><p>V29</p></td>
<td><p>snowEvap</p></td>
<td><p>total evaporation from snow for a snow layers</p></td>
<td><p>m</p></td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-even"><td><p>V30</p></td>
<td><p>SnowMelt</p></td>
<td><p>total snow melt from all layers</p></td>
<td><p>m</p></td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-odd"><td><p>V31</p></td>
<td><p>cropKC</p></td>
<td><p>crop coefficient for each of the 4 different land cover types (forest, irrigated, paddy, others)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-even"><td><p>V32</p></td>
<td><p>totalPotET</p></td>
<td><p>Potential evaporation per land use class</p></td>
<td><p>m</p></td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-odd"><td><p>V33</p></td>
<td><p>potTranspiration</p></td>
<td><p>Potential transpiration (after removing of evaporation)</p></td>
<td><p>m</p></td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-even"><td><p>V35</p></td>
<td><p>Precipitation</p></td>
<td><p>Precipitation (input for the model)</p></td>
<td><p>m</p></td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-odd"><td><p>V36</p></td>
<td><p>Rain</p></td>
<td><p>Precipitation less snow</p></td>
<td><p>m</p></td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-even"><td><p>V37</p></td>
<td><p>prevSnowCover</p></td>
<td><p>snow cover of previous day (only for water balance)</p></td>
<td><p>m</p></td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-odd"><td><p>V38</p></td>
<td><p>SnowCover</p></td>
<td><p>snow cover (sum over all layers)</p></td>
<td><p>m</p></td>
<td><p>evaporation</p></td>
</tr>
<tr class="row-even"><td><p>V40</p></td>
<td><p>pet_modus</p></td>
<td><p>Flag: index which ETP approach is used e.g. 1 for Penman-Monteith</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-odd"><td><p>V41</p></td>
<td><p>AlbedoCanopy</p></td>
<td><p>Albedo of vegetation canopy (FAO,1998) default =0.23</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-even"><td><p>V42</p></td>
<td><p>AlbedoSoil</p></td>
<td><p>Albedo of bare soil surface (Supit et. al. 1994) default = 0.15</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-odd"><td><p>V43</p></td>
<td><p>AlbedoWater</p></td>
<td><p>Albedo of water surface (Supit et. al. 1994) default = 0.05</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-even"><td><p>V44</p></td>
<td><p>TMin</p></td>
<td><p>minimum air temperature</p></td>
<td><p>K</p></td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-odd"><td><p>V45</p></td>
<td><p>TMax</p></td>
<td><p>maximum air temperature</p></td>
<td><p>K</p></td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-even"><td><p>V46</p></td>
<td><p>Psurf</p></td>
<td><p>Instantaneous surface pressure</p></td>
<td><p>Pa</p></td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-odd"><td><p>V47</p></td>
<td><p>Qair</p></td>
<td><p>specific humidity</p></td>
<td><p>kg/kg</p></td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-even"><td><p>V48</p></td>
<td><p>Tavg</p></td>
<td><p>average air Temperature (input for the model)</p></td>
<td><p>K</p></td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-odd"><td><p>V49</p></td>
<td><p>Rsdl</p></td>
<td><p>long wave downward surface radiation fluxes</p></td>
<td><p>W/m2</p></td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-even"><td><p>V50</p></td>
<td><p>albedoLand</p></td>
<td><p>albedo from land surface (from GlobAlbedo database)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-odd"><td><p>V51</p></td>
<td><p>albedoOpenWater</p></td>
<td><p>albedo from open water surface (from GlobAlbedo database)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-even"><td><p>V52</p></td>
<td><p>Rsds</p></td>
<td><p>short wave downward surface radiation fluxes</p></td>
<td><p>W/m2</p></td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-odd"><td><p>V53</p></td>
<td><p>Wind</p></td>
<td><p>wind speed</p></td>
<td><p>m/s</p></td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-even"><td><p>V55</p></td>
<td><p>EWRef</p></td>
<td><p>potential evaporation rate from water surface</p></td>
<td><p>m</p></td>
<td><p>evaporationPot</p></td>
</tr>
<tr class="row-odd"><td><p>V56</p></td>
<td><p>adminSegments</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V57</p></td>
<td><p>Crops</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V58</p></td>
<td><p>cropKC_10day</p></td>
<td></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V59</p></td>
<td><p>fracCrops</p></td>
<td></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V60</p></td>
<td><p>fracVegCover</p></td>
<td><p>Fraction of area covered by the corresponding landcover type</p></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V61</p></td>
<td><p>fracCrops_Irr</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V62</p></td>
<td><p>areaCrops_Irr_segment</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V63</p></td>
<td><p>cellArea</p></td>
<td><p>Cell area [m²] of each simulated mesh</p></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V64</p></td>
<td><p>fracCrops_nonIrr</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V65</p></td>
<td><p>activatedCrops</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V66</p></td>
<td><p>monthCounter</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V67</p></td>
<td><p>ratio_a_p_nonIrr</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V68</p></td>
<td><p>totalPotET_month_nonIrr</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V69</p></td>
<td><p>actTransTotal_month_nonIrr</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V70</p></td>
<td><p>Yield_nonIrr</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V71</p></td>
<td><p>currentKY</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V72</p></td>
<td><p>currentKC</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V73</p></td>
<td><p>PET_Sugar1_segments</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V74</p></td>
<td><p>PET_Sugar2_segments</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V75</p></td>
<td><p>PET_Sugar3_segments</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V76</p></td>
<td><p>PET_Sorghum_segments</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V77</p></td>
<td><p>PET_crop</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V78</p></td>
<td><p>PET_crop_segments</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V79</p></td>
<td><p>ETRefAverage_segments</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-odd"><td><p>V80</p></td>
<td><p>rainAverage_segments</p></td>
<td></td>
<td></td>
<td><p>evaporation_FUSE</p></td>
</tr>
<tr class="row-even"><td><p>V81</p></td>
<td><p>recessionCoeff</p></td>
<td><p>groundwater storage times this coefficient gives baseflow</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-odd"><td><p>V82</p></td>
<td><p>kSatAquifer</p></td>
<td><p>groundwater reservoir parameters (if ModFlow is not used), could be used to compute the recession coefficient</p></td>
<td><p>m day-1</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-even"><td><p>V85</p></td>
<td><p>prestorGroundwater</p></td>
<td><p>storGroundwater at the beginning of each step</p></td>
<td><p>m</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-odd"><td><p>V86</p></td>
<td><p>readAvlStorGroundwater</p></td>
<td><p>same as storGroundwater but equal to 0 when inferior to a treshold</p></td>
<td><p>m</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-even"><td><p>V88</p></td>
<td><p>sum_gwRecharge</p></td>
<td><p>groundwater recharge</p></td>
<td><p>m</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-odd"><td><p>V89</p></td>
<td><p>nonFossilGroundwaterAbs</p></td>
<td><p>groundwater abstraction which is sustainable and not using fossil resources</p></td>
<td><p>m</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-even"><td><p>V92</p></td>
<td><p>InvCellArea</p></td>
<td><p>Inverse of cell area of each simulated mesh</p></td>
<td><p>m-1</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-odd"><td><p>V93</p></td>
<td><p>baseflow</p></td>
<td><p>simulated baseflow (= groundwater discharge to river)</p></td>
<td><p>m</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-even"><td><p>V94</p></td>
<td><p>capillar</p></td>
<td><p>Simulated flow from groundwater to the third CWatM soil layer</p></td>
<td><p>m</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-odd"><td><p>V95</p></td>
<td><p>MtoM3</p></td>
<td><p>Coefficient to change units</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-even"><td><p>V97</p></td>
<td><p>sum_prefFlow</p></td>
<td><p>preferential flow from soil to groundwater (summed up for all land cover classes)</p></td>
<td><p>m</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-odd"><td><p>V99</p></td>
<td><p>sum_perc3toGW</p></td>
<td><p>percolation from 3rd soil layer to groundwater (summed up for all land cover classes)</p></td>
<td><p>m</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-even"><td><p>V101</p></td>
<td><p>sum_capRiseFromGW</p></td>
<td><p>capillar rise from groundwater to 3rd soil layer (summed up for all land cover classes)</p></td>
<td><p>m</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-odd"><td><p>V106</p></td>
<td><p>sum_landSurfaceRunoff</p></td>
<td><p>Runoff concentration above the soil more interflow including all landcover types</p></td>
<td><p>m</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-even"><td><p>V108</p></td>
<td><p>totalET</p></td>
<td><p>Total evapotranspiration for each cell including all landcover types</p></td>
<td><p>m</p></td>
<td><p>groundwater</p></td>
</tr>
<tr class="row-odd"><td><p>V111</p></td>
<td><p>sampleInflow</p></td>
<td><p>location of inflow point</p></td>
<td><p>lat/lon</p></td>
<td><p>inflow</p></td>
</tr>
<tr class="row-even"><td><p>V112</p></td>
<td><p>noinflowpoints</p></td>
<td><p>number of inflow points</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>inflow</p></td>
</tr>
<tr class="row-odd"><td><p>V113</p></td>
<td><p>inflowTs</p></td>
<td><p>inflow time series data</p></td>
<td><p>m3/s</p></td>
<td><p>inflow</p></td>
</tr>
<tr class="row-even"><td><p>V114</p></td>
<td><p>QInM3Old</p></td>
<td><p>Inflow from previous day</p></td>
<td><p>m3</p></td>
<td><p>inflow</p></td>
</tr>
<tr class="row-odd"><td><p>V115</p></td>
<td><p>totalQInM3</p></td>
<td><p>total inflow over time (for mass balance calculation)</p></td>
<td><p>m3</p></td>
<td><p>inflow</p></td>
</tr>
<tr class="row-even"><td><p>V116</p></td>
<td><p>inflowM3</p></td>
<td><p>inflow to basin</p></td>
<td><p>m3</p></td>
<td><p>inflow</p></td>
</tr>
<tr class="row-odd"><td><p>V117</p></td>
<td><p>DtSec</p></td>
<td><p>number of seconds per timestep (default = 86400)</p></td>
<td><p>s</p></td>
<td><p>inflow</p></td>
</tr>
<tr class="row-even"><td><p>V118</p></td>
<td><p>coverTypes</p></td>
<td><p>land cover types - forest - grassland - irrPaddy - irrNonPaddy - water - sealed</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>initcondition</p></td>
</tr>
<tr class="row-odd"><td><p>V119</p></td>
<td><p>loadInit</p></td>
<td><p>Flag: if true initial conditions are loaded</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>initcondition</p></td>
</tr>
<tr class="row-even"><td><p>V120</p></td>
<td><p>initLoadFile</p></td>
<td><p>load file name of the initial condition data</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>initcondition</p></td>
</tr>
<tr class="row-odd"><td><p>V121</p></td>
<td><p>saveInit</p></td>
<td><p>Flag: if true initial conditions are saved</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>initcondition</p></td>
</tr>
<tr class="row-even"><td><p>V122</p></td>
<td><p>saveInitFile</p></td>
<td><p>save file name of the initial condition data</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>initcondition</p></td>
</tr>
<tr class="row-odd"><td><p>V124</p></td>
<td><p>discharge</p></td>
<td><p>discharge</p></td>
<td><p>m3/s</p></td>
<td><p>initcondition</p></td>
</tr>
<tr class="row-even"><td><p>V127</p></td>
<td><p>interceptCap</p></td>
<td><p>interception capacity of vegetation</p></td>
<td><p>m</p></td>
<td><p>interception</p></td>
</tr>
<tr class="row-odd"><td><p>V128</p></td>
<td><p>minInterceptCap</p></td>
<td><p>Maximum interception read from file for forest and grassland land cover</p></td>
<td><p>m</p></td>
<td><p>interception</p></td>
</tr>
<tr class="row-even"><td><p>V129</p></td>
<td><p>interceptStor</p></td>
<td><p>simulated vegetation interception storage</p></td>
<td><p>m</p></td>
<td><p>interception</p></td>
</tr>
<tr class="row-odd"><td><p>V130</p></td>
<td><p>availWaterInfiltration</p></td>
<td><p>quantity of water reaching the soil after interception, more snowmelt</p></td>
<td><p>m</p></td>
<td><p>interception</p></td>
</tr>
<tr class="row-even"><td><p>V131</p></td>
<td><p>twothird</p></td>
<td><p>2/3</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>interception</p></td>
</tr>
<tr class="row-odd"><td><p>V132</p></td>
<td><p>interceptEvap</p></td>
<td><p>simulated evaporation from water intercepted by vegetation</p></td>
<td><p>m</p></td>
<td><p>interception</p></td>
</tr>
<tr class="row-even"><td><p>V133</p></td>
<td><p>actualET</p></td>
<td><p>simulated evapotranspiration from soil, flooded area and vegetation</p></td>
<td><p>m</p></td>
<td><p>interception</p></td>
</tr>
<tr class="row-odd"><td><p>V134</p></td>
<td><p>waterBodyID</p></td>
<td><p>lakes/reservoirs map with a single ID for each lake/reservoir</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-even"><td><p>V137</p></td>
<td><p>UpArea1</p></td>
<td><p>upstream area of a grid cell</p></td>
<td><p>m2</p></td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-odd"><td><p>V138</p></td>
<td><p>waterBodyOut</p></td>
<td><p>biggest outlet (biggest accumulation of ldd network) of a waterbody</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-even"><td><p>V139</p></td>
<td><p>dirUp</p></td>
<td><p>river network in upstream direction</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-odd"><td><p>V140</p></td>
<td><p>ldd_LR</p></td>
<td><p>change river network (put pits in where lakes are)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-even"><td><p>V141</p></td>
<td><p>lddCompress</p></td>
<td><p>compressed river network (without missing values)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-odd"><td><p>V142</p></td>
<td><p>lddCompress_LR</p></td>
<td><p>compressed river network lakes/reservoirs (without missing values)</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-even"><td><p>V143</p></td>
<td><p>dirUp_LR</p></td>
<td><p>river network direction upstream lake/reservoirs</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-odd"><td><p>V144</p></td>
<td><p>dirupLen_LR</p></td>
<td><p>number of bifurcation upstream lake/reservoir</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-even"><td><p>V145</p></td>
<td><p>dirupID_LR</p></td>
<td><p>index river upstream lake/reservoir</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-odd"><td><p>V146</p></td>
<td><p>downstruct_LR</p></td>
<td><p>river network downstream lake/reservoir</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-even"><td><p>V147</p></td>
<td><p>catchment_LR</p></td>
<td><p>catchments lake/reservoir</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-odd"><td><p>V148</p></td>
<td><p>dirDown_LR</p></td>
<td><p>river network direktion downstream lake/reservoir</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>lakes_reservoirs</p></td>
</tr>
<tr class="row-even"><td><p>V149</p></td>
<td><p>lendirDown_LR</p></td>
<td><p>number of river network connections lake/reservoir</p></td>
<td><ul class="simple">
<li></li>