Skip to content

Commit 090feb6

Browse files
authored
Merge pull request #308 from dabail10/seaice
Update sea ice exercises for CESM3.
2 parents 6913dab + 176a679 commit 090feb6

3 files changed

Lines changed: 18 additions & 16 deletions

File tree

notebooks/challenge/cice/cice.ipynb

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"source": [
88
"# Sea Ice\n",
99
"\n",
10-
"The sea ice component of CESM is CICE. This is developed by the [CICE Consortium](https://github.com/CICE-Consortium/CICE). Note that CESM2 uses CICE version 5. In version 6 of CICE, the vertical thermodynamics was separated into a submodule known as Icepack. CICE6 will be the sea ice component in CESM3. \n",
10+
"The sea ice component of CESM is CICE. This is developed by the [CICE Consortium](https://github.com/CICE-Consortium/CICE). Note that CESM3 uses CICE version 6. In version 6 of CICE, the vertical thermodynamics was separated into a submodule known as Icepack.\n",
1111
"\n",
1212
"It can be useful for people interested in sea ice science to run simulations with only active sea ice and ocean components and atmospheric forcing. In this exercise, you will learn how to run one of these ice-ocean simulations.\n",
1313
"\n",
@@ -46,7 +46,7 @@
4646
"metadata": {},
4747
"source": [
4848
"- This exercise uses the same code base as the rest of the tutorial. \n",
49-
"- You will be using the G compset at the T62_g37 resolution.\n",
49+
"- You will be using the G compset at the TL319_tx2_3v3 resolution.\n",
5050
"- You will run a control simulation and two experimental simulations. Each simulation will be run for one year. \n",
5151
"- You will use simple, command line netcdf tools to evaluate how the experiments differ from the control simulation."
5252
]
@@ -66,7 +66,7 @@
6666
"source": [
6767
"<div class=\"alert alert-info\" style=\"text-align: center;\">\n",
6868
"\n",
69-
"[CESM CICE User's Guide](https://www.cesm.ucar.edu/models/cesm2/sea-ice)\n",
69+
"[CESM CICE User's Guide](https://cesm-cice.readthedocs.io/en/latest/)\n",
7070
"\n",
7171
"</div>"
7272
]
@@ -106,9 +106,11 @@
106106
"id": "68ca54e2-d8ad-41bc-be8f-31a85eec6e65",
107107
"metadata": {},
108108
"source": [
109-
"![gcase](../../../images/challenge/gcase.png)\n",
109+
"<div class=\"alert alert-info\" style=\"text-align: center;\">\n",
110+
" \n",
111+
"2000_DATM%JRA-1p5-2023_SLND_CICE_MOM6_DROF%JRA-1p5-2023_SGLC_WW3_SESP\n",
110112
"\n",
111-
"*<p style=\"text-align: center;\"> Figure: G Compset definition. </p>*"
113+
"</div>"
112114
]
113115
},
114116
{
@@ -118,7 +120,7 @@
118120
"source": [
119121
"<div class=\"alert alert-info\" style=\"text-align: center;\">\n",
120122
"\n",
121-
"[Compset Definitions](https://www2.cesm.ucar.edu/models/cesm2/config/compsets.html)\n",
123+
"[Compset Definitions]()\n",
122124
"\n",
123125
"</div>"
124126
]
@@ -137,14 +139,14 @@
137139
"metadata": {},
138140
"source": [
139141
"There are two types of temporal forcing for G compsets:\n",
140-
"- Normal Year Forcing (NYF) is 12 months of atmospheric data (like a climatology) that repeats every year. NYF is the default forcing.\n",
141-
"- Interannual varying forcing (GIAF) is forcing that varies by year over the time period (1948-2017). \n",
142+
"- Repeated Year Forcing (RYF) is 12 months of atmospheric data (like a climatology) that repeats every year.\n",
143+
"- Interannual varying forcing (G_IAF) is forcing that varies by year over the time period (1958-2023). \n",
142144
"\n",
143145
"There are two datasets that can be used for G compsets:\n",
144146
"- JRA55-do atmospheric data \\([Tsujino et al. 2018](https://doi.org/10.1016/j.ocemod.2018.07.002)\\)\n",
145-
"- Coordinated Ocean-ice Reference Experiments (CORE) version 2 atmospheric data \\([Large and Yeager 2009](http://doi.org/10.1007/s00382-008-0441-3)\\).\n",
147+
"- Coordinated Ocean-ice Reference Experiments (CORE) version 2 atmospheric data \\([Large and Yeager 2009](http://doi.org/10.1007/s00382-008-0441-3)\\). Note that CORE is being phased out with CESM3.\n",
146148
"\n",
147-
"In these exercises we will use the CORE NYF."
149+
"In these exercises we will use the JRA55 RYF."
148150
]
149151
},
150152
{

notebooks/challenge/cice/cice_exercise_1.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"id": "e2bfe3d7-3e5f-46ea-a30c-65fc1743c69e",
1414
"metadata": {},
1515
"source": [
16-
"**NOTE:** Building the control case for the CICE challenge exercises is idential to building the control case in the POP challenge exercises. If you have already completed the POP challenge exercises you can skip this step."
16+
"**NOTE:** Building the control case for the CICE challenge exercises is idential to building the control case in the MOM6 challenge exercises. If you have already completed the MOM6 challenge exercises you can skip this step."
1717
]
1818
},
1919
{
@@ -24,7 +24,7 @@
2424
"<div class=\"alert alert-info\">\n",
2525
"<strong>Exercise: Run a control case</strong><br><br>\n",
2626
" \n",
27-
"Create a case called **g_control** using the compset `G` at `T62_g37` resolution. \n",
27+
"Create a case called **g_control** using the compset `G_JRA_RYF` at `TL319_t233` resolution. \n",
2828
" \n",
2929
"Set the run length to **1 year**. \n",
3030
"\n",
@@ -120,7 +120,7 @@
120120
"Create a new case <font face=\"Courier\" color='purple'><strong>g_control </strong></font> with the command:\n",
121121
"```\n",
122122
"cd /glade/u/home/$USER/code/my_cesm_code/cime/scripts/\n",
123-
"./create_newcase --case /glade/u/home/$USER/cases/g_control --compset G --res T62_g37 \n",
123+
"./create_newcase --case /glade/u/home/$USER/cases/g_control --compset G_JRA_RYF --res TL319_t233 \n",
124124
"```\n",
125125
"<br>\n",
126126
"\n",
@@ -141,8 +141,8 @@
141141
"and <font face=\"Courier\" color='purple'><strong>account number</strong></font>. \n",
142142
"For instance:\n",
143143
"``` \n",
144-
"./xmlchange JOB_QUEUE=tutorial,PROJECT=UESM0014 --force\n",
145-
"```\n",
144+
"./xmlchange JOB_QUEUE=tutorial,PROJECT=UESM0015 --force\n",
145+
"``\n",
146146
"<br>\n",
147147
"\n",
148148
"Build and submit:\n",

notebooks/challenge/cice/cice_exercise_3.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"<div class=\"alert alert-info\">\n",
3232
"<strong>Exercise 3: Something with source code</strong><br><br>\n",
3333
" \n",
34-
"Create a case (clone) called **g_ksno** using the compset `G` at `T62_g37` resolution. \n",
34+
"Create a case (clone) called **g_ksno**. \n",
3535
" \n",
3636
"Set the run length to **1 year**. \n",
3737
"\n",

0 commit comments

Comments
 (0)