There is a newer version of the record available.

Published May 25, 2021 | Version v2.7.0
Software Open

GEOS-ESM/MAPL: MAPL 2.7.0

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.

From CHANGELOG.md Removed
  • Remove file MAPL_FlapCapOptions.F90
Added
  • Added a file MAPL_FlapCLI.F90
Changed
  • 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