diff --git a/README.md b/README.md index 9ba10c3..a2b14cf 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ S. Gupta et al 2022, 2024](https://github.com/CliMA/ClimaArtifacts/tree/main/soi - [Berkeley Earth Global Gridded Temperature Data](https:////github.com/CliMA/ClimaArtifacts/tree/main/surface_temperatures) - [Selected FLUXNET tower data](https:////github.com/CliMA/ClimaArtifacts/tree/main/fluxnet_sites) - [ERA5 Monthly Averages 2008](https:////github.com/CliMA/ClimaArtifacts/tree/main/era5_surface_fluxes_2008) +- [DYAMOND_summer_initial_conditions](https:////github.com/CliMA/ClimaArtifacts/tree/main/atmos_dyamond_summer) # The ultimate guide to ClimaArtifacts diff --git a/atmos_dyamond_summer/OutputArtifacts.toml b/atmos_dyamond_summer/OutputArtifacts.toml new file mode 100644 index 0000000..1e6a8ff --- /dev/null +++ b/atmos_dyamond_summer/OutputArtifacts.toml @@ -0,0 +1,2 @@ +[DYAMOND_summer_initial_conditions] +git-tree-sha1 = "931ce29dded2271fddd537a2492f3aef260624fd" diff --git a/atmos_dyamond_summer/Project.toml b/atmos_dyamond_summer/Project.toml new file mode 100644 index 0000000..8e4179f --- /dev/null +++ b/atmos_dyamond_summer/Project.toml @@ -0,0 +1,2 @@ +[deps] +ClimaArtifactsHelper = "6ffa2572-8378-4377-82eb-ea11db28b255" diff --git a/atmos_dyamond_summer/README.md b/atmos_dyamond_summer/README.md new file mode 100644 index 0000000..1371f2d --- /dev/null +++ b/atmos_dyamond_summer/README.md @@ -0,0 +1,18 @@ +# DYAMOND summer initial conditions + +## Overview +The DYnamics of the Atmospheric general circulation Modeled On Non-hydrostatic Domains (DYAMOND) protocol provides a framework for the intercomparison of global storm-resolving models. +This artifact contains the initial conditions needed for the DYAMOND summer simulations, which simulate 40 days and nights, begining on 1 August 2016. + +## File summmary + +- `ifs_oper_T1279_2016080100.nc`: Restart file for DYAMOND summer simulation (~18 GB) + +## References + +Please see `esiwace` DYAMOND initiative webpage at https://www.esiwace.eu/the-project/past-phases/dyamond-initiative for more details. +The artifact used here is downloaded from the url https://swiftbrowser.dkrz.de/public/dkrz_ab6243f85fe24767bb1508712d1eb504/SAPPHIRE/DYAMOND/ + +## Acknowledgement + +DYAMOND data management was provided by the German Climate Computing Center (DKRZ) and supported through the projects ESiWACE and ESiWACE2. The projects ESiWACE and ESiWACE2 have received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreements No 675191 and 823988. This work used resources of the Deutsches Klimarechenzentrum (DKRZ) granted by its Scientific Steering Committee (WLA) under project IDs bk1040 and bb1153. diff --git a/atmos_dyamond_summer/create_artifact.jl b/atmos_dyamond_summer/create_artifact.jl new file mode 100644 index 0000000..5932557 --- /dev/null +++ b/atmos_dyamond_summer/create_artifact.jl @@ -0,0 +1,8 @@ +using ClimaArtifactsHelper + +const FILE_URL = "https://swift.dkrz.de/v1/dkrz_ab6243f85fe24767bb1508712d1eb504/SAPPHIRE/DYAMOND/ifs_oper_T1279_2016080100.nc" +const FILE_PATH = "ifs_oper_T1279_2016080100.nc" + +artifact_name = "DYAMOND_summer_initial_conditions" + +create_artifact_guided_one_file(FILE_PATH; artifact_name = artifact_name, file_url = FILE_URL)