5.13.2-dev0
mHM
The mesoscale Hydrological Model
Loading...
Searching...
No Matches
mo_common_file.f90
Go to the documentation of this file.
1!> \file mo_common_file.f90
2!> \brief \copybrief mo_common_file
3!> \details \copydetails mo_common_file
4
5!> \brief Provides file names and units for mRM
6!> \details Provides all filenames as well as all units used for the multiscale Routing Model mRM.
7!> \changelog
8!! - Robert Schweppe Jun 2018
9!! - refactoring and reformatting
10!> \authors Matthias Cuntz, Stephan Thober
11!> \date Aug 2015
12!> \copyright Copyright 2005-\today, the mHM Developers, Luis Samaniego, Sabine Attinger: All rights reserved.
13!! mHM is released under the LGPLv3+ license \license_note
14!> \ingroup f_common
16
17 IMPLICIT NONE
18 !> DEM input data file
19 CHARACTER(len=*), PARAMETER :: file_dem = 'dem.asc' ! DEM
20 !> Unit for DEM input data file
21 INTEGER, PARAMETER :: udem = 53 !
22 !> Unit for LCover input data file
23 INTEGER, PARAMETER :: ulcoverclass = 61 !
24
25 !> file defining mHM's outputs
26 CHARACTER(len=*), PARAMETER :: file_config = 'ConfigFile.log' ! configuration
27 !> Unit for file defining mHM's outputs
28 INTEGER, PARAMETER :: uconfig = 68 !
29
30
31
32END MODULE mo_common_file
Provides file names and units for mRM.
integer, parameter uconfig
Unit for file defining mHM's outputs.
integer, parameter ulcoverclass
Unit for LCover input data file.
character(len= *), parameter file_dem
DEM input data file.
character(len= *), parameter file_config
file defining mHM's outputs
integer, parameter udem
Unit for DEM input data file.