-
Notifications
You must be signed in to change notification settings - Fork 11
Inland flow #79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Inland flow #79
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -87,6 +87,7 @@ This file sets the hydrology options. It contains one namelist called :nml:lst:` | |
| .. note:: | ||
| Setting :nml:mem:`JULES_HYDROLOGY::l_top` = FALSE and :nml:mem:`JULES_HYDROLOGY::l_pdm` = FALSE selects a more basic runoff production scheme. In this scheme, surface runoff comes only from infiltration excess runoff (no saturation excess runoff), and subsurface runoff comes only from free drainage from the deepest soil layer (no lateral flow from mid-layers), as described in Essery et al. (2001, HCTN 30). | ||
|
|
||
|
|
||
| .. nml:member:: l_limit_gsoil | ||
|
|
||
| :type: logical | ||
|
|
@@ -99,6 +100,19 @@ This file sets the hydrology options. It contains one namelist called :nml:lst:` | |
| Allow the soil conductance to increase as the top layer soil moisture goes above the critical soil moisture, as in Best et al. (2011) equation 7. | ||
|
|
||
|
|
||
| .. nml:member:: l_inland | ||
|
|
||
| :type: logical | ||
| :default: F | ||
|
|
||
| TRUE | ||
| Some rivers end at inland basin flow points. This inland basin flow is used to increase soil moisture at these locations. For this to work JULES rivers_standalone needs | ||
| to be run as a separate executable and the inland basin flow needs to be passed into this land surface component via OASIS using :nml:mem:`OASIS_RIVERS::send_fields`. | ||
|
|
||
| FALSE | ||
| No inland basin flow. | ||
|
|
||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should highlight that this is only used in coupled models e.g. |
||
| .. nml:group:: Only used if :nml:mem:`JULES_HYDROLOGY::l_top` = TRUE | ||
|
|
||
| .. nml:member:: zw_max | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -383,7 +383,7 @@ Examples of how to specify the model domain using through this namelist are prov | |
|
|
||
| .. nml:namelist:: JULES_LAND_FRAC | ||
|
|
||
| Land fraction is the fraction of each gridbox that is land. Currently, JULES considers any gridbox with land fraction > 0 to be 100% land, and all others to be 100% sea (or sea-ice). Land fraction data can be used to select only land points from the full input grid (see below). | ||
| Land fraction is the fraction of each gridbox that is land. By default, JULES considers any gridbox with land fraction > 0 to be 100% land, and all others to be 100% sea (or sea-ice). To keep land fractions as fractions then set l_use_land_fraction to True. Land fraction data can be used to select only land points from the full input grid (see below). | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Land fractions are only used by TRIP in Rivers-standalone to determine coastal endorheic basins. So the docs should reflect this. How about: Land fraction is the fraction of each gridbox that is land. By default, JULES considers any gridbox with land fraction > 0 to be 100% land, and all others to be 100% sea (or sea-ice). Rivers-standalone (TRIP) when coupled to LFRic needs to be able to determine coastal endorheic basins. In this case, :nml:mem: |
||
|
|
||
| .. warning:: | ||
| When the input grid consists of a single location (1D and :nml:mem:`JULES_INPUT_GRID::npoints` = 1 or 2D and :nml:mem:`JULES_INPUT_GRID::nx` = :nml:mem:`JULES_INPUT_GRID::ny` = 1), that single location is assumed to be 100% land. | ||
|
|
@@ -412,6 +412,18 @@ For any input grid with more than a single location, the following are used: | |
| In the file, the variable must have no levels dimensions and no time dimension. | ||
|
|
||
|
|
||
| .. nml:member:: l_use_land_fraction | ||
|
|
||
| :type: logical | ||
| :default: F | ||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Currently there is no link between l_inland and l_use_land_fraction in the code as they are done in two steps. l_inland cannot be used unless coupled, however this is a standalone namelist so it is a bit confusing I think. How about first having an explanation of when the switch is used. Land fractions are used to determine coastal endorheic basins to calculate the inland basin flow diagnostic |
||
| TRUE | ||
| Supply land fractions (as fractions) to both the main grid and the rivers grid (if grids are compatible). This is needed for water conservation when using inland basin flow (l_inland = True). | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Supply land fractions (as fractions) to both the main grid and the rivers grid. This requires both grids and land-sea mask to be the same. |
||
|
|
||
| FALSE | ||
| Land fractions are not used and the land fraction field is set to either 1.0 (any land) or 0.0. | ||
|
|
||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. .. note:: This is only available in Rivers-standalone (TRIP) to calculate inland outflow fields. |
||
|
|
||
| ``JULES_MODEL_GRID`` namelist members | ||
| ------------------------------------- | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggested rewording as it has to be relevant for the UM.
Some rivers end at inland basin flow points. This inland basin flow is used to increase soil moisture at these locations for water conservation purposes. This is only available for coupled models i.e. UM or LFRic. When coupled to LFRic, the soil moisture flux correction applied by this switch must be calculated by the Rivers-standalone component (:nml:mem:
JULES_MODEL_ENVIRONMENT::lsm_id= 3) and passed to LFRic via OASIS using :nml:mem:OASIS_RIVERS::send_fields= inland_outflow.