-
Notifications
You must be signed in to change notification settings - Fork 11
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
e56321f
commit e86a922
Showing
2 changed files
with
9 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
!*********************************************************************** | ||
|
||
module atmos_tracer_driver_mod | ||
#include <fms_platform.h> | ||
! <CONTACT EMAIL="[email protected]"> | ||
! William Cooke | ||
! </CONTACT> | ||
|
@@ -103,6 +104,7 @@ module atmos_tracer_driver_mod | |
|
||
!----------------------------------------------------------------------- | ||
|
||
use platform_mod, only: r8_kind, r4_kind | ||
use time_manager_mod, only : time_type | ||
|
||
implicit none | ||
|
@@ -377,7 +379,7 @@ subroutine atmos_tracer_driver_gather_data(gas_fields, tr_bot) | |
use coupler_types_mod, only: coupler_2d_bc_type | ||
|
||
type(coupler_2d_bc_type), intent(inout) :: gas_fields | ||
real, dimension(:,:,:), intent(in) :: tr_bot | ||
real(r8_kind), dimension(:,:,:), intent(in) :: tr_bot | ||
|
||
!----------------------------------------------------------------------- | ||
|
||
|
@@ -393,7 +395,7 @@ subroutine atmos_tracer_driver_gather_data_down(gas_fields, tr_bot) | |
use coupler_types_mod, only: coupler_2d_bc_type | ||
|
||
type(coupler_2d_bc_type), intent(inout) :: gas_fields | ||
real, dimension(:,:,:), intent(in) :: tr_bot | ||
real(r8_kind), dimension(:,:,:), intent(in) :: tr_bot | ||
|
||
return | ||
|
||
|
@@ -414,8 +416,8 @@ function atmos_tracer_has_surf_setl_flux(tr) result(ret) | |
! the atmosphere for this tracer | ||
subroutine get_atmos_tracer_surf_setl_flux(tr, setl_flux, dsetl_dtr) | ||
integer, intent(in) :: tr ! tracer index | ||
real, intent(out) :: setl_flux(:,:) ! sedimentation flux at the bottom of the atmosphere | ||
real, intent(out) :: dsetl_dtr(:,:) ! derivative of sedimentation flux w.r.t. | ||
real(r8_kind), intent(out) :: setl_flux(:,:) ! sedimentation flux at the bottom of the atmosphere | ||
real(r8_kind), intent(out) :: dsetl_dtr(:,:) ! derivative of sedimentation flux w.r.t. | ||
! the tracer concentration in the bottom layer | ||
|
||
setl_flux(:,:) = 0.0 ; dsetl_dtr(:,:) = 0.0 | ||
|