-
Notifications
You must be signed in to change notification settings - Fork 31
Bare soil evaporation separated over irrigated and non-irrigated soil #139 #150
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: stable
Are you sure you want to change the base?
Changes from all commits
42b595b
34f29cc
ff47832
91429bf
26f839e
7d95d7c
4fe1ce2
985b90a
50ba4db
90e7ffc
8884cf6
ac7b60d
0984379
07a9935
4dd9e4e
2d26472
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 |
|---|---|---|
|
|
@@ -148,6 +148,24 @@ This namelist specifies the different options available for setting up the irrig | |
| :nml:mem:`nstep_irrig` = NINT(frequency of irrigation update (in sec)) / :nml:mem:`JULES_TIME::timestep_len` | ||
|
|
||
|
|
||
| .. nml:member:: l_soil_evap_irrig_expl | ||
|
|
||
| :type: logical | ||
| :default: F | ||
|
|
||
| Switch controlling whether the bare soil evaporation from the irrigated and non-irrigated part of the grid-box (or soil tile) is controlled by the mean soil moisture or the separate irrigated and non-irrigated soil moisture columns. | ||
|
|
||
| TRUE | ||
| Bare soil evaporation is explicitly calculated from the irrigated and non-irrigated soil moisture columns. | ||
|
|
||
| FALSE | ||
| No effect. | ||
|
|
||
| This must be set to FALSE if :nml:mem:`JULES_IRRIG::irrig_option` = 0. | ||
| This must be set to FALSE if :nml:mem:`JULES_IRRIG::irrig_option` = 2. | ||
|
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. I'm probably going to seem foolish here, but I'm having trouble working out what is going on. My interpretation is that irrig_opt=0 means no irrigation, irrig_opt=1 will mean the current scheme that is currently represented by l_irrig_dmd=.T., and that irrig_opt=2 will be the new scheme. So this says that the option only works with the current scheme, but then I am confused by L2649 in rose-meta/jules-standalone/HEAD/rose-meta.conf where the option is triggered if l_irrig_dmd is .F. |
||
|
|
||
|
|
||
|
|
||
| .. _References_irrig: | ||
|
|
||
| ``JULES_IRRIG`` references | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,8 +47,12 @@ MODULE jules_irrig_mod | |
| LOGICAL :: & | ||
| l_irrig_dmd = .FALSE., & | ||
| ! Switch for using irrigation demand code | ||
| l_irrig_limit = .FALSE. | ||
| l_irrig_limit = .FALSE., & | ||
| ! Switch for limiting irrigation supply | ||
| l_soil_evap_irrig_expl = .FALSE. | ||
| ! Switch for explcitly calculating bare soil evaporation over the | ||
| ! separate irrigated and non-irrigated fractions of the grid box. | ||
| ! (Default used the grid box mean soil moisture). | ||
|
|
||
| INTEGER :: nirrtile = imdi | ||
| ! Number of tiles that can have irrigated fraction | ||
|
|
@@ -81,7 +85,8 @@ MODULE jules_irrig_mod | |
| !----------------------------------------------------------------------------- | ||
| NAMELIST / jules_irrig/ l_irrig_dmd, l_irrig_limit, irr_crop, & | ||
| frac_irrig_all_tiles, nirrtile, irrigtiles, & | ||
| set_irrfrac_on_irrtiles, nstep_irrig, irrig_option | ||
| set_irrfrac_on_irrtiles, nstep_irrig, irrig_option, & | ||
| l_soil_evap_irrig_expl | ||
|
|
||
|
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. I would have expected the new variable to be added to my_nml in read_nml_jules_irrig starting on L339. It is worth adding any checks to check_jules_irrig on L289? |
||
| CHARACTER(LEN=*), PARAMETER, PRIVATE :: ModuleName='JULES_IRRIG_MOD' | ||
|
|
||
|
|
||
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.
irrigated and non-irrigated part_s_