-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code changes and tests for COSIMA/access-om2#149
- Loading branch information
Showing
17 changed files
with
1,383 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
&accessom2_nml | ||
log_level = 'DEBUG' | ||
ice_ocean_timestep = 5400 | ||
enable_simple_timers = .true. | ||
/ | ||
|
||
&date_manager_nml | ||
forcing_start_date = '1958-12-30T00:00:00' | ||
forcing_end_date = '1960-01-01T00:00:00' | ||
restart_period = 1, 0, 0 | ||
/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
&atm_nml | ||
accessom2_config_dir = './' | ||
&end | ||
|
||
&runoff_nml | ||
remap_weights_file = '../test_data/rmp_jrar_to_cict_CONSERV.nc' | ||
&end |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"description": "JRA55-do IAF forcing", | ||
"inputs": [ | ||
{ | ||
"filename": "/g/data1/ua8/JRA55-do/latest/rsds.{{year}}.nc", | ||
"fieldname": "rsds", | ||
"cname": "swfld_ai" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
&ice_nml | ||
resolution(:) = 360,300 | ||
from_atm_field_names = 'swfld_i' | ||
to_ocean_field_names = 'strsu_io' | ||
from_ocean_field_names = 'sst_i' | ||
ice_grid_file = '../test_data/grid.nc' | ||
ice_mask_file = '../test_data/kmt.nc' | ||
dt = 5400 | ||
&end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
# This is a typical input file for OASIS 3.0, using netCDF format | ||
# for restart input files. Oasis reads this file at run-time. | ||
# | ||
# Any line beginning with # is ignored. Blank lines are not allowed. | ||
# | ||
# $SEQMODE | ||
# This keyword concerns the coupling algorithm. Put here the maximum number | ||
# of fields that have to be, at one particular coupling timestep, | ||
# necessarily exchanged sequentially in a given order. | ||
# 1 | ||
# $END | ||
######################################################################### | ||
|
||
$NFIELDS | ||
# This is the total number of fields being exchanged. | ||
### 1 fields atm -> ice | ||
### 1 fields ice -> ocn | ||
### 1 fields ocn -> ice | ||
3 | ||
$END | ||
########################################################################## | ||
$NBMODEL | ||
# This gives you the number of models running in this experiment + | ||
# their names (character*6, exactly!) + , in option, the maximum Fortran unit | ||
# number used by each model; 1024 will be used if none are given. | ||
# | ||
3 cicexx matmxx mom5xx | ||
$END | ||
########################################################################### | ||
$RUNTIME | ||
# This gives you the total simulated time for this run in seconds | ||
# This is not used but needs to be >= to the timestep to satisfy error checking. | ||
# See https://github.com/OceansAus/oasis3-mct/issues/3 | ||
10800 | ||
$END | ||
########################################################################### | ||
$NLOGPRT | ||
# Index of printing level in output file cplout: 0 = no printing | ||
# 1 = main routines and field names when treated, 2 = complete output | ||
0 | ||
$END | ||
########################################################################### | ||
$STRINGS | ||
# | ||
# The above variables are the general parameters for the experiment. | ||
# Everything below has to do with the fields being exchanged. | ||
# | ||
# | ||
# ATMOSPHERE --->>> ICE | ||
# ----------------------- | ||
########## | ||
# Field 01 : swflx down | ||
########## | ||
swfld_ai swfld_i 367 10800 3 a2i.nc EXPORTED | ||
jrat cict LAG=0 SEQ=+1 | ||
P 0 P 0 | ||
# | ||
LOCTRANS MAPPING SCRIPR | ||
INSTANT | ||
../test_data/rmp_jra55_cice_conserve.nc dst | ||
CONSERV LR SCALAR LATLON 10 FRACNNEI FIRST | ||
############################################################################ | ||
# | ||
# ICE --->>> OCEAN | ||
# ---------------- | ||
########## | ||
# Field 11 : ice-ocean interface stress (x-direction) | ||
########## | ||
strsu_io u_flux 170 3600 1 i2o.nc IGNORED | ||
cict cict LAG=0 SEQ=+1 | ||
# | ||
LOCTRANS | ||
INSTANT | ||
############################################################################ | ||
# | ||
# OCEAN --->>> ICE | ||
# ---------------- | ||
########## | ||
# Field 26 : Sea surface temperature (Celsius in MOM4, Kelvin in MOM5) | ||
########## | ||
t_surf sst_i 1 3600 1 o2i.nc IGNORED | ||
cict cict LAG=0 SEQ=+1 | ||
# | ||
LOCTRANS | ||
INSTANT | ||
$END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
&ocean_nml | ||
from_ice_field_names = 'u_flux' | ||
to_ice_field_names = 't_surf' | ||
resolution(:) = 360,300 | ||
dt = 5400 | ||
&end |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters