Skip to content
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

Feature/cice6update #129

Merged
merged 10 commits into from
Sep 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion modulefiles/module_base.hera
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,7 @@ module load z/1.2.11

#Load from emc.nemspara
module use -a /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles
module load esmf/8.0.0
module load netcdf_parallel/4.7.4.release
module load esmf/8.1.0bs27
module load hdf5_parallel/1.10.6.release

2 changes: 1 addition & 1 deletion modulefiles/module_base.orion
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module load prod_util/1.2.0
##
module use /apps/contrib/NCEPLIBS/lib/modulefiles
module load netcdfp/4.7.4.release
module load esmflocal/8.1.0.21bs.release
module load esmflocal/8.1.0.27bs.release
JianKuang-Intelsat marked this conversation as resolved.
Show resolved Hide resolved
module load post-intel-sandybridge/8.0.5

module load wgrib/2.0.8
Expand Down
2 changes: 1 addition & 1 deletion sorc/build_fv3_coupled.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ if [ $target = orion ]; then target=orion.intel ; fi
cd fv3_coupled.fd/
FV3=$( pwd -P )/FV3
cd tests/
./compile.sh "$FV3" "$target" "CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled MOM6=Y CICE=Y WW3=Y CMEPS=Y" 1
./compile.sh "$FV3" "$target" "CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled MOM6=Y CICE6=Y WW3=Y CMEPS=Y" 1
mv -f fcst_1.exe ../NEMS/exe/nems_fv3_ccpp_mom6_cice5_ww3.x

2 changes: 1 addition & 1 deletion sorc/checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ rm -f ${topdir}/checkout-fv3_coupled.log
if [[ ! -d fv3_coupled.fd ]] ; then
git clone https://github.com/ufs-community/ufs-s2s-model fv3_coupled.fd >> ${topdir}/checkout-fv3_coupled.log 2>&1
cd fv3_coupled.fd
git checkout d7b7081f410eb84902a43c7479e14d44dfed0144
git checkout s2s_prototype5.0
git submodule update --init --recursive
cd ${topdir}
else
Expand Down
1 change: 1 addition & 0 deletions ush/forecast_postdet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,7 @@ CICE_postdet()
echo "Link CICE fixed files"
$NLN -sf $FIXcice/${ice_grid_file} $DATA/
$NLN -sf $FIXcice/${ice_kmt_file} $DATA/
$NLN -sf $FIXcice/$MESHICE $DATA/
}

CICE_nml()
Expand Down
8 changes: 6 additions & 2 deletions ush/nems.configure.med_atm_ocn_ice_wav.IN
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ OCN_attributes::
DumpFields = @[DumpFields]
ProfileMemory = false
OverwriteSlice = true
dbug_flag = 0
::

# ICE #
Expand All @@ -42,7 +41,10 @@ ICE_attributes::
DumpFields = @[DumpFields]
ProfileMemory = false
OverwriteSlice = true
dbug_flag = 0
mesh_ice = @[MESHICE]
stop_n = @[FHMAX]
stop_option = nhours
stop_ymd = -999
::

# WAV #
Expand Down Expand Up @@ -109,4 +111,6 @@ ALLCOMP_attributes::
restart_n = @[restart_interval_hours]
restart_option = nhours
restart_ymd = -999
dbug_flag = 0
use_coldstart = .true.
::
7 changes: 5 additions & 2 deletions ush/nems.configure.medcold_atm_ocn_ice_wav.IN
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ OCN_attributes::
DumpFields = @[DumpFields]
ProfileMemory = false
OverwriteSlice = true
dbug_flag = 0
::

# ICE #
Expand All @@ -42,7 +41,10 @@ ICE_attributes::
DumpFields = @[DumpFields]
ProfileMemory = false
OverwriteSlice = true
dbug_flag = 0
mesh_ice = @[MESHICE]
stop_n = @[FHMAX]
stop_option = nhours
stop_ymd = -999
::

# WAV #
Expand Down Expand Up @@ -109,4 +111,5 @@ ALLCOMP_attributes::
restart_n = 1
restart_option = nhours
restart_ymd = -999
dbug_flag = 0
::
2 changes: 2 additions & 0 deletions ush/nems_configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ fi
if [ $cplice = .true. ]; then
sed -i -e "s;@\[ice_model\];$ICE_model;g" tmp1
sed -i -e "s;@\[ice_petlist_bounds\];$ice_petlist_bounds;g" tmp1
sed -i -e "s;@\[MESHICE\];$MESHICE;g" tmp1
sed -i -e "s;@\[FHMAX\];$FHMAX_GFS;g" tmp1
fi
if [ $cplchem = .true. ]; then
sed -i -e "s;@\[chem_model\];gsd;g" tmp1
Expand Down
Loading