|
| 1 | +module clubb_intr |
| 2 | +!------------------------------------------------------------------------------- |
| 3 | +! Dummy module to override src/physics/cam/clubb_intr.F90 |
| 4 | +!------------------------------------------------------------------------------- |
| 5 | +use shr_kind_mod, only: r8=>shr_kind_r8 |
| 6 | +public :: clubb_implements_cnst |
| 7 | +public :: clubb_init_cnst |
| 8 | +public :: clubb_readnl |
| 9 | +contains |
| 10 | +!=============================================================================== |
| 11 | +function clubb_implements_cnst(name) |
| 12 | + ! Return true if specified constituent is implemented |
| 13 | + character(len=*), intent(in) :: name ! constituent name |
| 14 | + logical :: clubb_implements_cnst ! return value |
| 15 | + clubb_implements_cnst = .false. |
| 16 | +end function clubb_implements_cnst |
| 17 | +!=============================================================================== |
| 18 | +subroutine clubb_init_cnst(name, q, gcid) |
| 19 | + ! Initialize the state if clubb_do_adv |
| 20 | + character(len=*), intent(in) :: name ! constituent name |
| 21 | + real(r8), intent(out) :: q(:,:) ! mass mixing ratio (gcol, plev) |
| 22 | + integer, intent(in) :: gcid(:) ! global column id |
| 23 | + return |
| 24 | +end subroutine clubb_init_cnst |
| 25 | +!=============================================================================== |
| 26 | +subroutine clubb_readnl(nlfile) |
| 27 | + character(len=*), intent(in) :: nlfile ! filepath for file containing namelist input |
| 28 | + return |
| 29 | +end subroutine clubb_readnl |
| 30 | +!=============================================================================== |
| 31 | +end module clubb_intr |
0 commit comments