-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |