Skip to content

Commit

Permalink
Merge pull request #117 from GEOS-ESM/develop
Browse files Browse the repository at this point in the history
Merge Develop into main
  • Loading branch information
mathomp4 authored May 25, 2021
2 parents debfea8 + a3f06a8 commit 1a16783
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
6 changes: 4 additions & 2 deletions StandAlone_AdvCore.F90
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ program StandAlone_AdvCore
character(*), parameter :: IAM = __FILE__

type (MAPL_Cap) :: cap
type (MAPL_FlapCapOptions) :: cap_options
type (MAPL_FlapCLI) :: cli
type (MAPL_CapOptions) :: cap_options
integer :: status

cap_options = MAPL_FlapCapOptions( &
cli = MAPL_FlapCLI( &
description = 'FV Standalone dvCore', &
authors = 'S.J. Lin, R. Rood, W. Putman')

cap_options = MAPL_CapOptions(cli)
cap = MAPL_Cap('Standalone FV3 AdvCore', SetServices, cap_options=cap_options)
call cap%run(_RC)

Expand Down
7 changes: 4 additions & 3 deletions StandAlone_DynAdvCore.F90
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ program StandAlone_DynAdvCore
character(*), parameter :: IAM = __FILE__

type (MAPL_Cap) :: cap
type (MAPL_FlapCapOptions) :: cap_options
type (MAPL_FlapCLI) :: cli
type (MAPL_CapOptions) :: cap_options
integer :: status

cap_options = MAPL_FlapCapOptions( &
cli = MAPL_FlapCLI( &
description = 'FV Standalone DyAdvCore', &
authors = 'S.J. Lin, R. Rood, W. Putman')

cap_options = MAPL_CapOptions(cli)
cap = MAPL_Cap('Standalone FV3 DynAdvCore', SetServices, cap_options = cap_options)
call cap%run(_RC)

Expand Down
8 changes: 5 additions & 3 deletions StandAlone_FV3_Dycore.F90
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ program StandAlone_FV3_Dycore
character(*), parameter :: IAM = __FILE__

type (MAPL_Cap) :: cap
type (MAPL_FlapCapOptions), allocatable :: cap_options
type (MAPL_FlapCLI) :: cli
type (MAPL_CapOptions) :: cap_options
integer :: status

cap_options = MAPL_FlapCapOptions(description = 'FV Standalone Dycore',&
authors = 'S.J. Lin, R. Rood, W. Putman')
cli = MAPL_FlapCLI(description = 'FV Standalone Dycore',&
authors = 'S.J. Lin, R. Rood, W. Putman')
cap_options = MAPL_CapOptions(cli)
cap = MAPL_Cap('GCM', SetServices, cap_options = cap_options)
call cap%run(_RC)

Expand Down

0 comments on commit 1a16783

Please sign in to comment.