-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmhm_outputs.nml
108 lines (108 loc) · 3.75 KB
/
mhm_outputs.nml
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
!> \file mhm_outputs.nml
!> \brief Namelist for mHM output configuration
!> \details This file contains the namelist for mHM outputs.
!! 1. First give the timestep for writing gridded model outputs
!! It should be integer and has to be perfectly divisible
!! by the number of total modeling time steps
!! 2. Define main outputs of the model as namelist
!! the particular output flag is specified as .TRUE. / .FALSE
!! for writing /not writing the output to a file
!!
!! SYNTAX = ".TRUE." or ".FALSE."
&NLoutputResults
!
! NetCDF output settings
output_deflate_level = 6
output_double_precision = .true.
!
! location of reference time point in outputs:
! 0: start of the time interval (i.e. 1990-01-01 00:00 for daily output on 1990-01-01)
! 1: center of the time interval (i.e. 1990-01-01 12:00 for daily output on 1990-01-01)
! 2: end of the time interval (i.e. 1990-01-02 00:00 for daily output on 1990-01-01)
output_time_reference = 0
!
! switch to control write out frequency of the gridded model outputs below
! >0: after each <timeStep_model_outputs> time steps
! 0: only at end of run
! -1: daily
! -2: monthly
! -3: yearly
timeStep_model_outputs = -2
!
!----------------
! 1. states
!----------------
!
! interceptional storage (L1_inter) [mm] -- case 1
outputFlxState(1)=.TRUE.
!
! height of snowpack (L1_snowpack) [mm] -- case 2
outputFlxState(2)=.TRUE.
!
! soil water content in the single layers (L1_soilMoist) -- case 3
outputFlxState(3)=.TRUE.
!
! volumetric soil moisture in the single
! layers (L1_soilMoist / L1_soilMoistSat )
! [mm/mm] -- case 4
!
outputFlxState(4)=.TRUE.
!
! mean volumetric soil moisture averaged
! over all soil layers (L1_soilMoist / L1_soilMoistSat )
! [mm/mm] -- case 5
outputFlxState(5)=.TRUE.
!
! waterdepth in reservoir of sealed areas (L1_sealSTW) [mm] -- case 6
outputFlxState(6)=.TRUE.
!
! waterdepth in reservoir of unsat. soil zone (L1_unsatSTW) [mm] -- case 7
outputFlxState(7)=.TRUE.
!
! waterdepth in reservoir of sat. soil zone (L1_satSTW) [mm] -- case 8
! --> level of GW reservoir
outputFlxState(8)=.TRUE.
! Ground albedo neutrons related to soil moisture
! THIS IS WORK IN PROGRESS, DO NOT USE FOR RESEARCH
outputFlxState(18)=.FALSE.
!
!----------------
! 2. fluxes
!----------------
!
! potential evapotranspiration PET [mm/T] -- case 9
outputFlxState(9)=.TRUE.
!
! actual evapotranspiration aET [mm/T] -- case 10
outputFlxState(10)=.TRUE.
!
! total discharge generated per cell (L1_total_runoff) [mm/T] -- case 11
outputFlxState(11)=.TRUE.
!
! direct runoff generated per cell (L1_runoffSeal) [mm/T] -- case 12
outputFlxState(12)=.TRUE.
!
! fast interflow generated per cell (L1_fastRunoff) [mm/T] -- case 13
outputFlxState(13)=.TRUE.
!
! slow interflow generated per cell (L1_slowRunoff) [mm/T] -- case 14
outputFlxState(14)=.TRUE.
!
! baseflow generated per cell (L1_baseflow) [mm/T] -- case 15
outputFlxState(15)=.TRUE.
!
! groundwater recharge (L1_percol) [mm/T] -- case 16
outputFlxState(16)=.TRUE.
!
! infiltration (L1_infilSoil) [mm/T] -- case 17
outputFlxState(17)=.FALSE.
!
! actual evapotranspiration from the soil layers [mm/T] -- case 19
outputFlxState(19)=.TRUE.
!
! effective precipitation (L1_preEffect) [mm/T] -- case 20
outputFlxState(20)=.TRUE.
!
! snow melt (L1_melt) [mm/T] -- case 21
outputFlxState(21)=.TRUE.
/