Skip to content

Commit 1a16783

Browse files
authored
Merge pull request #117 from GEOS-ESM/develop
Merge Develop into main
2 parents debfea8 + a3f06a8 commit 1a16783

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

StandAlone_AdvCore.F90

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@ program StandAlone_AdvCore
1616
character(*), parameter :: IAM = __FILE__
1717

1818
type (MAPL_Cap) :: cap
19-
type (MAPL_FlapCapOptions) :: cap_options
19+
type (MAPL_FlapCLI) :: cli
20+
type (MAPL_CapOptions) :: cap_options
2021
integer :: status
2122

22-
cap_options = MAPL_FlapCapOptions( &
23+
cli = MAPL_FlapCLI( &
2324
description = 'FV Standalone dvCore', &
2425
authors = 'S.J. Lin, R. Rood, W. Putman')
2526

27+
cap_options = MAPL_CapOptions(cli)
2628
cap = MAPL_Cap('Standalone FV3 AdvCore', SetServices, cap_options=cap_options)
2729
call cap%run(_RC)
2830

StandAlone_DynAdvCore.F90

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ program StandAlone_DynAdvCore
1616
character(*), parameter :: IAM = __FILE__
1717

1818
type (MAPL_Cap) :: cap
19-
type (MAPL_FlapCapOptions) :: cap_options
19+
type (MAPL_FlapCLI) :: cli
20+
type (MAPL_CapOptions) :: cap_options
2021
integer :: status
2122

22-
cap_options = MAPL_FlapCapOptions( &
23+
cli = MAPL_FlapCLI( &
2324
description = 'FV Standalone DyAdvCore', &
2425
authors = 'S.J. Lin, R. Rood, W. Putman')
25-
26+
cap_options = MAPL_CapOptions(cli)
2627
cap = MAPL_Cap('Standalone FV3 DynAdvCore', SetServices, cap_options = cap_options)
2728
call cap%run(_RC)
2829

StandAlone_FV3_Dycore.F90

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ program StandAlone_FV3_Dycore
1515
character(*), parameter :: IAM = __FILE__
1616

1717
type (MAPL_Cap) :: cap
18-
type (MAPL_FlapCapOptions), allocatable :: cap_options
18+
type (MAPL_FlapCLI) :: cli
19+
type (MAPL_CapOptions) :: cap_options
1920
integer :: status
2021

21-
cap_options = MAPL_FlapCapOptions(description = 'FV Standalone Dycore',&
22-
authors = 'S.J. Lin, R. Rood, W. Putman')
22+
cli = MAPL_FlapCLI(description = 'FV Standalone Dycore',&
23+
authors = 'S.J. Lin, R. Rood, W. Putman')
24+
cap_options = MAPL_CapOptions(cli)
2325
cap = MAPL_Cap('GCM', SetServices, cap_options = cap_options)
2426
call cap%run(_RC)
2527

0 commit comments

Comments
 (0)