forked from mhm-ufz/mHM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmrm_outputs.nml
28 lines (27 loc) · 890 Bytes
/
mrm_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
! Emacs: -*- mode: f90 -*-
!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
!
! 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_mrm = -1
!
!----------------
! 1. Fluxes
!----------------
!
! routed streamflow (Qrouted in output flux) (L11_qMod) [m3 s-1] -- case 1
outputFlxState_mrm(1)=.TRUE.
! routed temperature (only if do_calc_river_temp) [K]
outputFlxState_mrm(2)=.TRUE.
/