Published May 25, 2021
| Version v2.7.0
Software
Open
GEOS-ESM/MAPL: MAPL 2.7.0
Creators
- 1. SSAI/GMAO
- 2. Space Telescope Science Institute
- 3. Massachusetts Institute of Technology
Description
This is a zero-diff update to MAPL but has a minor release bump due to a change in how the interface to Options are handled. This update means code that before did:
type (MAPL_Cap) :: cap
type (MAPL_FlapCapOptions) :: cap_options
cap_options = MAPL_FlapCapOptions(description = 'GEOS AGCM', &
authors = 'GMAO')
now must do:
type (MAPL_FlapCLI) :: cli
type (MAPL_CapOptions) :: cap_options
cli = MAPL_FlapCLI(description = 'GEOS AGCM', &
authors = 'GMAO')
cap_options = MAPL_CapOptions(cli)
This was changed to facilitate working with UFS.
FromCHANGELOG.md
Removed
- Remove file
MAPL_FlapCapOptions.F90
- Added a file
MAPL_FlapCLI.F90
- Added a MAPL_CapOptions constructor
- Change FlapCapOptions to FlapCLI which is not a sub class of MAPL_CapOptions any more.
Files
GEOS-ESM/MAPL-v2.7.0.zip
Files
(1.6 MB)
Name | Size | Download all |
---|---|---|
md5:35046bcd15e75e72b81f7e479da24764
|
1.6 MB | Preview Download |
Additional details
Related works
- Is supplement to
- https://github.com/GEOS-ESM/MAPL/tree/v2.7.0 (URL)