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

DYAMOND summer initial conditions #64

Merged
merged 1 commit into from
Nov 14, 2024
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
- [Initial conditions for summer DYAMOND simulations](https:////github.com/CliMA/ClimaArtifacts/tree/main/atmos_dyamond_summer)

# The ultimate guide to ClimaArtifacts

Expand Down
2 changes: 2 additions & 0 deletions atmos_dyamond_summer/OutputArtifacts.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[DYAMOND_summer_initial_conditions]
git-tree-sha1 = "931ce29dded2271fddd537a2492f3aef260624fd"
2 changes: 2 additions & 0 deletions atmos_dyamond_summer/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[deps]
ClimaArtifactsHelper = "6ffa2572-8378-4377-82eb-ea11db28b255"
18 changes: 18 additions & 0 deletions atmos_dyamond_summer/README.md
Original file line number Diff line number Diff line change
@@ -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.
8 changes: 8 additions & 0 deletions atmos_dyamond_summer/create_artifact.jl
Original file line number Diff line number Diff line change
@@ -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)