forked from NOAA-EMC/MOM6
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pass through interface to FMS ensemble manager
- Loading branch information
1 parent
18aff41
commit 408e3a4
Showing
1 changed file
with
14 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,14 @@ | ||
!> A simple (very thin) wrapper for managing ensemble member layout information | ||
module MOM_ensemble_manager | ||
|
||
! This file is part of MOM6. See LICENSE.md for the license. | ||
|
||
use ensemble_manager_mod, only : get_ensemble_id, get_ensemble_size | ||
use ensemble_manager_mod, only : get_ensemble_pelist, get_ensemble_filter_pelist | ||
|
||
implicit none ; private | ||
|
||
public get_ensemble_id, get_ensemble_size, get_ensemble_pelist, get_ensemble_filter_pelist | ||
|
||
|
||
end module MOM_ensemble_manager |