From 46bf3b61e53292100e9b2ee75a937e66cbaa8ca2 Mon Sep 17 00:00:00 2001 From: Harshula Jayasuriya Date: Thu, 9 May 2024 00:38:46 +1000 Subject: [PATCH] access-esm1p5: create SBD --- packages/access-esm1p5/package.py | 37 +++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 packages/access-esm1p5/package.py diff --git a/packages/access-esm1p5/package.py b/packages/access-esm1p5/package.py new file mode 100644 index 0000000..d6732c7 --- /dev/null +++ b/packages/access-esm1p5/package.py @@ -0,0 +1,37 @@ +# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# Copyright 2024 ACCESS-NRI +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack.package import * + +class AccessEsm1p5(BundlePackage): + """ACCESS-ESM1.5 bundle contains the coupled UM7, CICE4 and MOM5 models. + + ACCESS-ESM1.5 comprises of: + + * The UKMO UM atmospheric model (v7.3), in the same configuration as + ACCESS1.4, at N96 (1.875×1.25 degree), 38 level resolution + * The CABLE land surface model with biogeochemistry (CASA-CNP) (CABLE2.4) + * The GFDL MOM5 ocean model at 1 degree resolution (code base as ACCESS-CM2) + * The WOMBAT ocean carbon model + * The LANL CICE4.1 sea ice model (version as ACCESS1.4) + * The OASIS-MCT coupler + """ + + homepage = "https://www.access-nri.org.au" + + git = "https://github.com/ACCESS-NRI/ACCESS-ESM1.5.git" + + maintainers("penguian") + + version("latest") + + depends_on("cice4") + # TODO: Can be enabled after initial testing is finished + # depends_on("mom5@access-esm1.5") + # depends_on("um7") + + # There is no need for install() since there is no code.