Skip to content

Commit a111899

Browse files
committed
Don't regrid runoff separately for ERA5. COSIMA/access-om2#242
1 parent 5c997f1 commit a111899

File tree

5 files changed

+23
-21
lines changed

5 files changed

+23
-21
lines changed

atm/src/atm.F90

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ program atm
22

33
use mod_oasis, only : OASIS_IN, OASIS_OUT
44
use forcing_config_mod, only : forcing_config_type => forcing_config
5-
use forcing_field_mod, only : forcing_field_type => forcing_field, FORCING_FIELD_DOMAIN_LAND
5+
use forcing_field_mod, only : forcing_field_type => forcing_field, FORCING_FIELD_REALM_LAND
66
use coupler_mod, only : coupler_type => coupler
77
use error_handler, only : assert
88
use ice_grid_proxy_mod, only : ice_grid_type => ice_grid_proxy
@@ -121,7 +121,7 @@ program atm
121121
allocate(to_runoff_map(num_atm_to_ice_fields))
122122
ri = 1
123123
do i=1, num_atm_to_ice_fields
124-
if (forcing_fields(i)%domain == FORCING_FIELD_DOMAIN_LAND) then
124+
if (forcing_fields(i)%realm == FORCING_FIELD_REALM_LAND) then
125125
to_runoff_map(i) = ri
126126
ri = ri + 1
127127
else
@@ -135,7 +135,7 @@ program atm
135135
ri = to_runoff_map(i)
136136
runoff_forcing_fields(ri)%coupling_name = &
137137
forcing_fields(i)%coupling_name
138-
runoff_forcing_fields(ri)%domain = forcing_fields(i)%domain
138+
runoff_forcing_fields(ri)%realm = forcing_fields(i)%realm
139139
allocate(runoff_forcing_fields(ri)%data_array(ice_shape(1), ice_shape(2)))
140140
call coupler%init_field(runoff_forcing_fields(ri)%coupling_name, &
141141
OASIS_OUT, &

libforcing/src/forcing_field.F90

+12-12
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ module forcing_field_mod
1313
implicit none
1414
private
1515

16-
! Forcing fields can have a domain
17-
integer, parameter, public :: FORCING_FIELD_DOMAIN_NONE = 0
18-
integer, parameter, public :: FORCING_FIELD_DOMAIN_ATMOSPHERE = 10
19-
integer, parameter, public :: FORCING_FIELD_DOMAIN_LAND = 20
16+
! Forcing fields can have a realm
17+
integer, parameter, public :: FORCING_FIELD_REALM_NONE = 0
18+
integer, parameter, public :: FORCING_FIELD_REALM_ATMOSPHERE = 10
19+
integer, parameter, public :: FORCING_FIELD_REALM_LAND = 20
2020

2121
type, public :: forcing_field
2222
character(len=64), dimension(:), allocatable :: names
2323
character(len=64) :: coupling_name
2424
character(len=1024), dimension(:), allocatable :: filename_templates
25-
integer :: domain
25+
integer :: realm
2626

2727
integer :: dt
2828
character(len=9) :: calendar
@@ -46,13 +46,13 @@ module forcing_field_mod
4646

4747
contains
4848

49-
subroutine forcing_field_init(self, name_list, filename_template_list, cname, domain, &
49+
subroutine forcing_field_init(self, name_list, filename_template_list, cname, realm, &
5050
start_date, product_name, loggerin, dt, calendar)
5151
class(forcing_field), intent(inout) :: self
5252
character(len=*), dimension(:), intent(in) :: name_list
5353
character(len=*), dimension(:), intent(in) :: filename_template_list
5454
character(len=*), intent(in) :: cname
55-
character(len=*), intent(in) :: domain
55+
character(len=*), intent(in) :: realm
5656
type(datetime), intent(in) :: start_date
5757
character(len=*), intent(in) :: product_name
5858
type(logger_type), target, intent(in) :: loggerin
@@ -71,12 +71,12 @@ subroutine forcing_field_init(self, name_list, filename_template_list, cname, do
7171
self%names(:) = name_list(:)
7272
self%filename_templates(:) = filename_template_list(:)
7373
self%coupling_name = cname
74-
if (domain == 'atmosphere') then
75-
self%domain = FORCING_FIELD_DOMAIN_ATMOSPHERE
74+
if (realm == 'atmosphere') then
75+
self%realm = FORCING_FIELD_REALM_ATMOSPHERE
7676
else
77-
call assert(trim(domain) == 'land', &
78-
"Invalid domain value.")
79-
self%domain = FORCING_FIELD_DOMAIN_LAND
77+
call assert(trim(realm) == 'land', &
78+
"Invalid realm value.")
79+
self%realm = FORCING_FIELD_REALM_LAND
8080
endif
8181

8282
self%product_name = trim(product_name)

tests/ERA5/accessom2.nml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/
66

77
&date_manager_nml
8-
forcing_start_date = '1980-12-30T00:00:00'
9-
forcing_end_date = '2020-01-01T00:00:00'
10-
restart_period = 1, 0, 0
8+
forcing_start_date = '1981-01-01T00:00:00'
9+
forcing_end_date = '1981-02-01T00:00:00'
10+
restart_period = 0, 1, 0
1111
/

tests/ERA5/forcing.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
},
6565
{
6666
"coupling_field_name": "runof_ai",
67-
"realm": "land",
67+
"realm": "atmosphere",
6868
"input_fields": [
6969
{
7070
"filename": "/g/data/rt52/era5/single-levels/reanalysis/mror/{{year}}/mror_era5_oper_sfc_{{year}}{{month}}{{start_day}}-{{year}}{{month}}{{end_day}}.nc",

tests/ERA5/namcouple

+4-2
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,14 @@ CONSERV LR SCALAR LATLON 10 FRACNNEI FIRST
106106
##########
107107
# Field 06 : runoff. Runoff is passed on the destination grid.
108108
##########
109-
runof_ai runof_i 297 3600 1 a2i.nc EXPORTED
109+
runof_ai runof_i 297 3600 3 a2i.nc EXPORTED
110110
cict cict LAG=0 SEQ=+1
111111
P 0 P 0
112112
#
113-
LOCTRANS
113+
LOCTRANS MAPPING SCRIPR
114114
INSTANT
115+
../test_data/ERA5_MOM1_conserve.nc dst
116+
CONSERV LR SCALAR LATLON 10 FRACNNEI FIRST
115117
##########
116118
# Field 07 : near surface (2m) air temp
117119
##########

0 commit comments

Comments
 (0)