Skip to content
Snippets Groups Projects
Commit d93fb967 authored by Johannes Hörner's avatar Johannes Hörner
Browse files

Initial commit

parents
Branches
Tags
No related merge requests found
Showing
with 437 additions and 0 deletions
%% Cell type:code id:6e13661d tags:
``` python
import numpy as np
import xarray as xr
import matplotlib.pyplot as plt
import matplotlib as mpl
from os import path
import sys, importlib
sys.path.append("../../python_packages")
import ICON_tools
importlib.reload(ICON_tools)
```
%% Output
<module 'ICON_tools' from '../../python_packages/ICON_tools.py'>
%% Cell type:code id:31e3b222 tags:
``` python
data_path = "/jetfs/scratch/jhoerner/postprocessing"
Wexplist, Wnexp = ICON_tools.get_explist(data_path, ["ape_ia_7000_56_3W", "ape_ia_8000_90_3W", "ape_ia_8500_90_3W", "ape_ia_9000_90_3W", "ape_ia_15000_17_3W"])
WDSlistgm, _ = ICON_tools.load_ds_2d(data_path, Wexplist, True)
Sexplist, Snexp = ICON_tools.get_explist(data_path, ["ape_ia_5000_13_0S", "ape_ia_5500_90_0S", "ape_ia_6000_90_0S", "ape_ia_6000_90_0S_cltlim_dtime10", "ape_ia_6500_90_0S_cltlim_dtime10", "ape_ia_8000_13_0S", "ape_ia_9000_13_0S", "ape_ia_10000_13_0S" ]) # , "ape_ia_6500_90_0S" , "ape_ia_7000_62_0S"
SDSlistgm, SDSlistzm = ICON_tools.load_ds_2d(data_path, Sexplist, True)
SDSlistgmym = np.empty([Snexp], dtype="object")
SDSlistzmym = np.empty([Snexp], dtype="object")
WDSlistgmym = np.empty([Wnexp], dtype="object")
for i in range(Snexp):
# fillna
SDSlistgm[i] = SDSlistgm[i].where(SDSlistgm[i]['sic'] < 1e36)
SDSlistgmym[i] = xr.decode_cf(SDSlistgm[i]).groupby('time.year').mean(dim='time')
SDSlistzm[i] = SDSlistzm[i].where(SDSlistzm[i]['sic'] < 1e36)
SDSlistzmym[i] = xr.decode_cf(SDSlistzm[i]).groupby('time.year').mean(dim='time')
for i in range(Wnexp):
# fillna
WDSlistgm[i] = WDSlistgm[i].where(WDSlistgm[i]['sic'] < 1e36)
WDSlistgmym[i] = xr.decode_cf(WDSlistgm[i]).groupby('time.year').mean(dim='time')
colorlist = ["C1","C0","C2","C3","C5","C6","C7"]
```
%% Output
ape_ia_7000_56_3W: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_7000_56_3W
ape_ia_8000_90_3W: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_8000_90_3W
ape_ia_8500_90_3W: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_8500_90_3W
ape_ia_9000_90_3W: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_9000_90_3W
ape_ia_15000_17_3W: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_15000_17_3W
ape_ia_5000_13_0S: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_5000_13_0S
ape_ia_5500_90_0S: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_5500_90_0S
ape_ia_6000_90_0S: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_6000_90_0S
ape_ia_6000_90_0S_cltlim_dtime10: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_6000_90_0S_cltlim_dtime10
ape_ia_6500_90_0S_cltlim_dtime10: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_6500_90_0S_cltlim_dtime10
ape_ia_8000_13_0S: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_8000_13_0S
ape_ia_9000_13_0S: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_9000_13_0S
ape_ia_10000_13_0S: directory is /jetfs/scratch/jhoerner/postprocessing/ape_ia_10000_13_0S
%% Cell type:code id:d3b41d22 tags:
``` python
fig, ax = plt.subplots(1,2,figsize=(12,4))
# first plot: simoverview
for j in [0,1]:
if j==0:
DSlistgm=WDSlistgmym
explist=Wexplist
legend_label="Winton"
elif j==1:
DSlistgm=SDSlistgmym
explist=Sexplist
legend_label="Semtner"
color=colorlist[j]
for i, exp in enumerate(explist): # simulations
ax[0].plot(DSlistgm[i].year,(DSlistgm[i]["sic"].squeeze()), color=color,
label= ICON_tools.find_co2_expname_vscicona(exp) +"ppm", ls="-", clip_on=False)
#ax[0].legend(ncol=2)
ax[0].set_xlabel("time [years]")
yticks=[90,60,45,30,20,10,0]
ax[0].set_yticks((ICON_tools.icelatosic(yticks)))
ax[0].set_yticklabels(yticks)
ax[0].invert_yaxis()
ax[0].set_xlim(0,400)
ax[0].set_ylim(1,0)
ax[0].set_ylabel("ice-margin latitude [°]")
ax[0].spines['left'].set_position(('outward',5))
ax[0].spines['bottom'].set_position(('outward',5))
ax[0].spines['top'].set_visible(False)
ax[0].spines['right'].set_visible(False)
#second plot: bifurcation
color=colorlist[0]
for i, exp in enumerate(Wexplist):
ax[1].scatter(float(ICON_tools.find_co2_expname_vscicona(exp)),(1-WDSlistgmym[i]["sic"][-1]), color=color, clip_on=False)
color=colorlist[1]
for i, exp in enumerate(Sexplist):
#ax[1].vlines(float(ICON_tools.find_co2_expname_vscicona(exp))*1.006,(1-SDSlistgmym[i]["sic"][0]),(1-SDSlistgmym[i]["sic"][-1]), color=color, clip_on=False, lw=1)
if exp=="ape_ia_9000_13_0S" or exp=="ape_ia_10000_13_0S":
ax[1].scatter(float(ICON_tools.find_co2_expname_vscicona(exp)),(1-SDSlistgmym[i]["sic"][-1]), color=color, clip_on=False, marker="^")
else:
ax[1].scatter(float(ICON_tools.find_co2_expname_vscicona(exp)),(1-SDSlistgmym[i]["sic"][-1]), color=color, clip_on=False, marker="o")
yticks_deg=[0,10,20,30,45,60,90]
ax[1].set_yticks(1-ICON_tools.icelatosic(yticks_deg))
ax[1].set_ylim(0,1)
ax[1].set_yticklabels(yticks_deg)
ax[1].set_xscale('log')
ax[1].set_xlim(4500,15000)
ax[1].set_xticks([5000,6000,7000,8000,9000,10000,15000])
ax[1].set_xticklabels(["5e3","6e3","7e3","8e3","9e3","1e4","1.5e4"])
ax[1].set_xlabel("CO$_2$ [ppmv]")
#ax[1].set_ylabel("ice-margin latitude [°]")
ax[1].spines['left'].set_position(('outward', 5))
ax[1].spines['bottom'].set_position(('outward', 5))
ax[1].spines['top'].set_visible(False)
ax[1].spines['right'].set_visible(False)
ax[0].annotate("a)", xycoords="axes fraction", xy=(0.01,0.98), fontweight="bold")
ax[1].annotate("b)", xycoords="axes fraction", xy=(0.01,0.98), fontweight="bold")
#ax[1].axhspan(1-0,1-ICON_tools.icelatosic(49), color='lightgray', alpha=0.4, lw=0)
#ax[1].axhspan(1-ICON_tools.icelatosic(16), 1-ICON_tools.icelatosic(11.5), color='lightgray', alpha=0.4, lw=0)
plt.tight_layout()
plt.savefig("plots/Fig1-overview_bifurcation.pdf")
```
%% Output
%% Cell type:code id:7155417f-5a4d-4c2a-95ad-b6440b793082 tags:
``` python
```
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
# Snowball simulations on an aquaplanet using ICON-A
Parent folder of all Snowball simulations in an aquaplanet setup with ICON-A. Compare to ape_snowball, which are the same simulations but with ICON-ES;
Setup is: aquaplanet, Semtner & Winton sea-ice model, adapted Bergeron-Findeisen-Process (csecfrl = 5e-5), circular Kepler orbit with 23.5° obliquity, `TSI=0.9442*1360.875~=1285 W/m^2`, snow albedo 0.79-0.66, ice albedo 0.45-0.38, linearly interpolated from Tmelt to Tmelt-1K.
Starting timestep is 10m, with rayleigh_coeff=0.1. If the model becomes unstable, the timestep will be decreased to 8m and rayleigh_coeff=10.
The naming convention is:
`ape_ia_{co2-content}_{initial sea-ice-edge latitude}`
runscripts are adapted from HÃrner et al. (2022) and Braun et al. (2022)
# ape_ia_10000_13_0S
ICON-A run. Same settings as ape_ia_8000_13_0S, except for CO2. Start from restart file ape_ia_6000_90_0S_restart_atm_00200101T000000Z.nc (sic=0.767578125000124). CO2 9000ppmv, time step =6min, damping=10.
This simulation is expected to melt. csecfrl = 5e-5. Auto restart is enabled from the start.
model version: [commit 01fa4282 in icon-aes-dkrz/icon-aes-mlo-jh](https://gitlab.phaidra.org/hoernerj21/icon-aes-dkrz/-/commit/01fa42823070f664f806b7d54c1d0ffef3e308df)
5 nodes
account p71767 (project nodes)
24 hours time with 20 years restart interval
## explog
- 21.06.23 11:30 - simulation start at year 200, end year 400
- 21-06-2023 11:40:45 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:43:38 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:44:17 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:44:53 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:45:29 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:46:07 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:46:43 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:47:22 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:47:56 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:48:31 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:49:04 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:49:39 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:50:14 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:50:49 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:51:27 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:52:03 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:52:39 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:53:14 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:53:50 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:54:27 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:55:04 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:55:39 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:56:14 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:56:47 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:57:22 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:57:58 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:58:30 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 00:59:06 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 00:59:42 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 01:00:17 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 01:00:49 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 01:01:24 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 01:01:57 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 01:02:32 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 01:03:05 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 01:03:40 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 01:04:15 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 01:04:50 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 01:05:26 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 01:06:03 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 01:06:38 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 01:07:16 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 01:07:52 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 01:08:28 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 01:09:03 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 01:09:40 crash, autorestart with hdiff_smag_fac=0.015
- 26-06-2023 01:10:15 crash, autorestart with hdiff_smag_fac=0.015001
- 26-06-2023 01:10:52 crash, autorestart with hdiff_smag_fac=0.015
- 07-07-2023 03:00 continue until 350-01-01
- 08-07-2023 03:00 timeout at 334-01-17, continue
- 13-07-2023 00:00 finish at 350-01-01
This diff is collapsed.
# ape_ia_10000_13_0Sto3W
partner simulation to ape_ia_10000_13_0Sto3W.
Simulation restarted from 0L-Semtner in Waterbelt state, continued with 0L-Semtner sea-ice model (just with higher output to compare to simulation with 3L-Winton model). Same settings as ape_ia_10000_13_0S only with higher output. Restart file is adapted to include a approximation of initial ice-internal temperatures
Start from restart file ape_ia_10000_13_0S_restart_atm_03500101T000000Z_icetemps.nc (created on jet by icetemps.ipynb). CO2 8000ppmv, time step =6min, damping=10.
This simulation is expected to stay in a waterbelt state. csecfrl = 5e-5. Auto restart is enabled from the start.
model version: [commit 01fa4282 in icon-aes-dkrz/icon-aes-mlo-jh](https://gitlab.phaidra.org/hoernerj21/icon-aes-dkrz/-/commit/01fa42823070f664f806b7d54c1d0ffef3e308df)
5 nodes
account p71767 (project nodes)
24 hours time with 20 years restart interval
## explog
- 17-07-2022 15:00 - simulation start at 350-01-01, end date 360-01-01
- 17-07-2023 21:23:48 crash, autorestart with hdiff_smag_fac=0.015001
- 17-07-2023 22:20:05 crash, autorestart with hdiff_smag_fac=0.015
- 17-07-2023 22:38:19 crash, autorestart with hdiff_smag_fac=0.015001
- 17-07-2023 22:56:49 crash, autorestart with hdiff_smag_fac=0.015
- 17-07-2023 23:12:15 crash, autorestart with hdiff_smag_fac=0.015001
- 17-07-2023 23:23:14 crash, autorestart with hdiff_smag_fac=0.015
- 17-07-2023 23:32:18 crash, autorestart with hdiff_smag_fac=0.015001
- 17-07-2023 23:46:18 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:10:21 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:13:47 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:16:20 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:18:25 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:22:21 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:24:21 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:26:26 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:28:22 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:30:21 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:32:22 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:34:26 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:36:52 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:38:22 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:40:26 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:44:22 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:46:23 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:48:24 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:50:23 crash, autorestart with hdiff_smag_fac=0.015
This diff is collapsed.
# ape_ia_10000_13_0Sto3W
Partner simulation to ape_ia_1000_13_0Sto0S
Simulation restarted from 0L-Semtner in Waterbelt state, with 3L-Winton sea-ice model. Same settings as ape_ia_10000_13_0S, except for sea-ice mode. Restart file is adapted to include a approximation of initial ice-internal temperatures
Start from restart file ape_ia_10000_13_0S_restart_atm_03500101T000000Z_icetemps.nc (created on jet by icetemps.ipynb). CO2 10000ppmv, time step =6min, damping=10.
This simulation is expected to freeze to a Snowball due to the ice scheme. csecfrl = 5e-5. Auto restart is enabled from the start.
model version: [commit 01fa4282 in icon-aes-dkrz/icon-aes-mlo-jh](https://gitlab.phaidra.org/hoernerj21/icon-aes-dkrz/-/commit/01fa42823070f664f806b7d54c1d0ffef3e308df)
5 nodes
account p71767 (project nodes)
24 hours time with 20 years restart interval
## explog
- 17-07-2022 15:00 - simulation start at 350-01-01, end date 360-01-01
- 17-07-2023 20:21:35 crash, autorestart with hdiff_smag_fac=0.015001
- 17-07-2023 22:08:01 crash, autorestart with hdiff_smag_fac=0.015
- 17-07-2023 22:22:08 crash, autorestart with hdiff_smag_fac=0.015001
- 17-07-2023 22:50:10 crash, autorestart with hdiff_smag_fac=0.015
- 17-07-2023 23:08:16 crash, autorestart with hdiff_smag_fac=0.015001
- 17-07-2023 23:23:18 crash, autorestart with hdiff_smag_fac=0.015
- 17-07-2023 23:32:18 crash, autorestart with hdiff_smag_fac=0.015001
- 17-07-2023 23:44:26 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:11:09 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:14:52 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:18:25 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:20:22 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:22:21 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:24:21 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:26:22 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:28:22 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:30:21 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:32:23 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:34:22 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:36:46 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:38:22 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:42:08 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:42:23 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:44:23 crash, autorestart with hdiff_smag_fac=0.015
- 18-07-2023 00:46:24 crash, autorestart with hdiff_smag_fac=0.015001
- 18-07-2023 00:48:28 crash, autorestart with hdiff_smag_fac=0.015
This diff is collapsed.
#ape_ia_10000_41_3W
Winton run with ICON-A, branch off from ape_ia_8000_90_3W, year 190. All settings the same as there (except CO2...) Damping parameter is 10. Time step is 6 min. csecfrl = 5e-5. Auto restart is enabled from the start.
restart file ape_ia_8000_90_3W_restart_atm_01900101T000000Z.nc
model version: [commit 01fa4282 in icon-aes-dkrz/icon-aes-mlo-jh](https://gitlab.phaidra.org/hoernerj21/icon-aes-dkrz/-/commit/01fa42823070f664f806b7d54c1d0ffef3e308df)
5 nodes
account p71767 (project nodes)
24 hours time with 20 years restart interval
## explog
- 31-07-2023 15:30 simulation start, end year 240
This diff is collapsed.
# ape_ia_15000_17_3W
Winton run with ICON-A, branch off from ape_ia_8000_90_3W, year 220. All settings the same as there (except CO2...) Damping parameter is 10. Time step is 6 min. csecfrl = 5e-5. Auto restart is enabled from the start.
restart file ape_ia_8000_90_3W_restart_atm_02200101T000000Z.nc
model version: [commit 01fa4282 in icon-aes-dkrz/icon-aes-mlo-jh](https://gitlab.phaidra.org/hoernerj21/icon-aes-dkrz/-/commit/01fa42823070f664f806b7d54c1d0ffef3e308df)
5 nodes
account p71767 (project nodes)
24 hours time with 20 years restart interval
## explog
- 12.05.23 14:45 - simulation start at year 1, end year 100
- 23-06-2023 10:18:12 crash, autorestart with hdiff_smag_fac=0.015001
- 23-06-2023 10:37:09 crash, autorestart with hdiff_smag_fac=0.015
- 23-06-2023 10:55:03 crash, autorestart with hdiff_smag_fac=0.015001
- 23-06-2023 11:13:19 crash, autorestart with hdiff_smag_fac=0.015
- 23-06-2023 11:31:13 crash, autorestart with hdiff_smag_fac=0.015001
- 23-06-2023 11:49:10 crash, autorestart with hdiff_smag_fac=0.015
- 23-06-2023 12:07:16 crash, autorestart with hdiff_smag_fac=0.015001
- 23-06-2023 12:25:08 crash, autorestart with hdiff_smag_fac=0.015
- 23-06-2023 12:43:10 crash, autorestart with hdiff_smag_fac=0.015001
- 23-06-2023 13:01:19 crash, autorestart with hdiff_smag_fac=0.015
- 23-06-2023 13:19:18 crash, autorestart with hdiff_smag_fac=0.015001
- 23-06-2023 13:37:06 crash, autorestart with hdiff_smag_fac=0.015
- 23-06-2023 13:55:23 crash, autorestart with hdiff_smag_fac=0.015001
- 23-06-2023 14:15:08 crash, simulation is in Snowball, stop (238-10-23)
This diff is collapsed.
# ape_ia_5000_13_0S
6th production run using ICON-A. Same settings as ape_ia_8000_13_0S, except for CO2. Start from restart file ape_ia_6000_90_0S_restart_atm_00200101T000000Z.nc (sic=0.767578125000124). CO2 5000ppmv, time step =6min, damping=10.
This simulation is expected to fall into a Snowball. csecfrl = 5e-5. Auto restart is enabled from the start.
model version: [commit 01fa4282 in icon-aes-dkrz/icon-aes-mlo-jh](https://gitlab.phaidra.org/hoernerj21/icon-aes-dkrz/-/commit/01fa42823070f664f806b7d54c1d0ffef3e308df)
5 nodes
account p71767 (project nodes)
24 hours time with 20 years restart interval
## explog
- 06.04.23 14:00 - simulation start at year 200, end year 300
- 12.04.23 01:00 - finish at 300-01-01
- 12-04-23 12:00 continue until 400-01-01
- 15-04-23 07:00 abort at 352-12-17 due to time limit? (probably because of full disk quota)
- 17-04-23 15:30 continue
- 19-04-23 10:00 finish at 400-01-01
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment