-
Notifications
You must be signed in to change notification settings - Fork 371
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
components/eam/src/physics/crm/dummy_modules/clubb_intr.F90
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,31 @@ | ||
module clubb_intr | ||
!------------------------------------------------------------------------------- | ||
! Dummy module to override src/physics/cam/clubb_intr.F90 | ||
!------------------------------------------------------------------------------- | ||
use shr_kind_mod, only: r8=>shr_kind_r8 | ||
public :: clubb_implements_cnst | ||
public :: clubb_init_cnst | ||
public :: clubb_readnl | ||
contains | ||
!=============================================================================== | ||
function clubb_implements_cnst(name) | ||
! Return true if specified constituent is implemented | ||
character(len=*), intent(in) :: name ! constituent name | ||
logical :: clubb_implements_cnst ! return value | ||
clubb_implements_cnst = .false. | ||
end function clubb_implements_cnst | ||
!=============================================================================== | ||
subroutine clubb_init_cnst(name, q, gcid) | ||
! Initialize the state if clubb_do_adv | ||
character(len=*), intent(in) :: name ! constituent name | ||
real(r8), intent(out) :: q(:,:) ! mass mixing ratio (gcol, plev) | ||
integer, intent(in) :: gcid(:) ! global column id | ||
return | ||
end subroutine clubb_init_cnst | ||
!=============================================================================== | ||
subroutine clubb_readnl(nlfile) | ||
character(len=*), intent(in) :: nlfile ! filepath for file containing namelist input | ||
return | ||
end subroutine clubb_readnl | ||
!=============================================================================== | ||
end module clubb_intr |
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