forked from NCAR/ccpp-physics
-
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.
- Loading branch information
1 parent
a4bdffe
commit 6e2c8bd
Showing
12 changed files
with
273 additions
and
512 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
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
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
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
This file was deleted.
Oops, something went wrong.
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,27 @@ | ||
module rrtmgp_aux | ||
implicit none | ||
contains | ||
! | ||
subroutine rrtmgp_aux_init() | ||
end subroutine rrtmgp_aux_init | ||
! | ||
subroutine rrtmgp_aux_run() | ||
end subroutine rrtmgp_aux_run | ||
! | ||
subroutine rrtmgp_aux_finalize() | ||
end subroutine rrtmgp_aux_finalize | ||
|
||
! ######################################################################################### | ||
! SUBROUTINE check_error_msg | ||
! ######################################################################################### | ||
subroutine check_error_msg(routine_name, error_msg) | ||
character(len=*), intent(in) :: & | ||
error_msg, routine_name | ||
|
||
if(error_msg /= "") then | ||
print*,"ERROR("//trim(routine_name)//"): " | ||
print*,trim(error_msg) | ||
return | ||
end if | ||
end subroutine check_error_msg | ||
end module rrtmgp_aux |
Oops, something went wrong.