10 implicit none ;
private
12 #include <MOM_memory.h>
14 public verticalgridinit, verticalgridend
15 public setverticalgridaxes, fix_restart_scaling
16 public get_flux_units, get_thickness_units, get_tr_flux_units
35 character(len=40) :: zaxisunits
36 character(len=40) :: zaxislongname
38 real,
allocatable,
dimension(:) :: slayer
39 real,
allocatable,
dimension(:) :: sinterface
40 integer :: direction = 1
50 real,
allocatable,
dimension(:) :: &
51 g_prime, & !< The reduced gravity at each interface [L2 Z-1 T-2 ~> m s-2].
55 integer :: nk_rho_varies = 0
69 real :: m_to_h_restart = 0.0
75 subroutine verticalgridinit( param_file, GV, US )
83 integer :: nk, h_power
84 real :: h_rescale_factor
86 # include "version_variable.h"
87 character(len=16) :: mdl =
'MOM_verticalGrid'
89 if (
associated(gv))
call mom_error(fatal, &
90 'verticalGridInit: called with an associated GV pointer.')
95 "Parameters providing information about the vertical grid.", &
96 log_to_all=.true., debugging=.true.)
97 call get_param(param_file, mdl,
"G_EARTH", gv%g_Earth, &
98 "The gravitational acceleration of the Earth.", &
99 units=
"m s-2", default = 9.80, scale=us%Z_to_m*us%m_s_to_L_T**2)
100 call get_param(param_file, mdl,
"RHO_0", gv%Rho0, &
101 "The mean ocean density used with BOUSSINESQ true to "//&
102 "calculate accelerations and the mass for conservation "//&
103 "properties, or with BOUSSINSEQ false to convert some "//&
104 "parameters from vertical units of m to kg m-2.", &
105 units=
"kg m-3", default=1035.0, scale=us%kg_m3_to_R)
106 call get_param(param_file, mdl,
"BOUSSINESQ", gv%Boussinesq, &
107 "If true, make the Boussinesq approximation.", default=.true.)
108 call get_param(param_file, mdl,
"ANGSTROM", gv%Angstrom_m, &
109 "The minimum layer thickness, usually one-Angstrom.", &
110 units=
"m", default=1.0e-10)
111 call get_param(param_file, mdl,
"H_RESCALE_POWER", h_power, &
112 "An integer power of 2 that is used to rescale the model's "//&
113 "intenal units of thickness. Valid values range from -300 to 300.", &
114 units=
"nondim", default=0, debuggingparam=.true.)
115 if (abs(h_power) > 300)
call mom_error(fatal,
"verticalGridInit: "//&
116 "H_RESCALE_POWER is outside of the valid range of -300 to 300.")
117 h_rescale_factor = 1.0
118 if (h_power /= 0) h_rescale_factor = 2.0**h_power
119 if (.not.gv%Boussinesq)
then
120 call get_param(param_file, mdl,
"H_TO_KG_M2", gv%H_to_kg_m2,&
121 "A constant that translates thicknesses from the model's "//&
122 "internal units of thickness to kg m-2.", units=
"kg m-2 H-1", &
124 gv%H_to_kg_m2 = gv%H_to_kg_m2 * h_rescale_factor
126 call get_param(param_file, mdl,
"H_TO_M", gv%H_to_m, &
127 "A constant that translates the model's internal "//&
128 "units of thickness into m.", units=
"m H-1", default=1.0)
129 gv%H_to_m = gv%H_to_m * h_rescale_factor
131 gv%mks_g_Earth = us%L_T_to_m_s**2*us%m_to_Z * gv%g_Earth
132 #ifdef STATIC_MEMORY_
134 call get_param(param_file, mdl,
"NK", nk, &
135 "The number of model layers.", units=
"nondim", &
137 if (nk /= nk_)
call mom_error(fatal,
"verticalGridInit: " // &
138 "Mismatched number of layers NK_ between MOM_memory.h and param_file")
141 call get_param(param_file, mdl,
"NK", nk, &
142 "The number of model layers.", units=
"nondim", fail_if_missing=.true.)
146 if (gv%Boussinesq)
then
147 gv%H_to_kg_m2 = us%R_to_kg_m3*gv%Rho0 * gv%H_to_m
148 gv%kg_m2_to_H = 1.0 / gv%H_to_kg_m2
149 gv%m_to_H = 1.0 / gv%H_to_m
150 gv%Angstrom_H = gv%m_to_H * gv%Angstrom_m
151 gv%H_to_MKS = gv%H_to_m
153 gv%kg_m2_to_H = 1.0 / gv%H_to_kg_m2
154 gv%m_to_H = us%R_to_kg_m3*gv%Rho0 * gv%kg_m2_to_H
155 gv%H_to_m = gv%H_to_kg_m2 / (us%R_to_kg_m3*gv%Rho0)
156 gv%Angstrom_H = gv%Angstrom_m*1000.0*gv%kg_m2_to_H
157 gv%H_to_MKS = gv%H_to_kg_m2
159 gv%H_subroundoff = 1e-20 * max(gv%Angstrom_H,gv%m_to_H*1e-17)
160 gv%H_to_Pa = us%L_T_to_m_s**2*us%m_to_Z * gv%g_Earth * gv%H_to_kg_m2
162 gv%H_to_Z = gv%H_to_m * us%m_to_Z
163 gv%Z_to_H = us%Z_to_m * gv%m_to_H
164 gv%Angstrom_Z = us%m_to_Z * gv%Angstrom_m
166 gv%H_to_RZ = gv%H_to_kg_m2 * us%kg_m3_to_R * us%m_to_Z
167 gv%RZ_to_H = gv%kg_m2_to_H * us%R_to_kg_m3 * us%Z_to_m
170 call log_param(param_file, mdl,
"M to THICKNESS", gv%m_to_H*h_rescale_factor)
171 call log_param(param_file, mdl,
"M to THICKNESS rescaled by 2^-n", gv%m_to_H)
172 call log_param(param_file, mdl,
"THICKNESS to M rescaled by 2^n", gv%H_to_m)
174 allocate( gv%sInterface(nk+1) )
175 allocate( gv%sLayer(nk) )
176 allocate( gv%g_prime(nk+1) ) ; gv%g_prime(:) = 0.0
177 allocate( gv%Rlay(nk) ) ; gv%Rlay(:) = 0.0
179 end subroutine verticalgridinit
182 subroutine fix_restart_scaling(GV)
185 gv%m_to_H_restart = gv%m_to_H
186 end subroutine fix_restart_scaling
189 function get_thickness_units(GV)
190 character(len=48) :: get_thickness_units
196 if (gv%Boussinesq)
then
197 get_thickness_units =
"m"
199 get_thickness_units =
"kg m-2"
201 end function get_thickness_units
204 function get_flux_units(GV)
205 character(len=48) :: get_flux_units
211 if (gv%Boussinesq)
then
212 get_flux_units =
"m3 s-1"
214 get_flux_units =
"kg s-1"
216 end function get_flux_units
219 function get_tr_flux_units(GV, tr_units, tr_vol_conc_units, tr_mass_conc_units)
220 character(len=48) :: get_tr_flux_units
224 character(len=*),
optional,
intent(in) :: tr_units
226 character(len=*),
optional,
intent(in) :: tr_vol_conc_units
230 character(len=*),
optional,
intent(in) :: tr_mass_conc_units
241 if (
present(tr_units)) cnt = cnt+1
242 if (
present(tr_vol_conc_units)) cnt = cnt+1
243 if (
present(tr_mass_conc_units)) cnt = cnt+1
245 if (cnt == 0)
call mom_error(fatal,
"get_tr_flux_units: One of the three "//&
246 "arguments tr_units, tr_vol_conc_units, or tr_mass_conc_units "//&
248 if (cnt > 1)
call mom_error(fatal,
"get_tr_flux_units: Only one of "//&
249 "tr_units, tr_vol_conc_units, and tr_mass_conc_units may be present.")
250 if (
present(tr_units))
then
251 if (gv%Boussinesq)
then
252 get_tr_flux_units = trim(tr_units)//
" m3 s-1"
254 get_tr_flux_units = trim(tr_units)//
" kg s-1"
257 if (
present(tr_vol_conc_units))
then
258 if (gv%Boussinesq)
then
259 get_tr_flux_units = trim(tr_vol_conc_units)//
" s-1"
261 get_tr_flux_units = trim(tr_vol_conc_units)//
" m-3 kg s-1"
264 if (
present(tr_mass_conc_units))
then
265 if (gv%Boussinesq)
then
266 get_tr_flux_units = trim(tr_mass_conc_units)//
" kg-1 m3 s-1"
268 get_tr_flux_units = trim(tr_mass_conc_units)//
" s-1"
272 end function get_tr_flux_units
275 subroutine setverticalgridaxes( Rlay, GV, scale )
277 real,
dimension(GV%ke),
intent(in) :: rlay
278 real,
intent(in) :: scale
284 gv%zAxisLongName =
'Target Potential Density'
285 gv%zAxisUnits =
'kg m-3'
286 do k=1,nk ; gv%sLayer(k) = scale*rlay(k) ;
enddo
288 gv%sInterface(1) = scale * (1.5*rlay(1) - 0.5*rlay(2))
289 do k=2,nk ; gv%sInterface(k) = scale * 0.5*( rlay(k-1) + rlay(k) ) ;
enddo
290 gv%sInterface(nk+1) = scale * (1.5*rlay(nk) - 0.5*rlay(nk-1))
292 gv%sInterface(1) = 0.0 ; gv%sInterface(nk+1) = 2.0*scale*rlay(nk)
295 end subroutine setverticalgridaxes
298 subroutine verticalgridend( GV )
301 deallocate( gv%g_prime, gv%Rlay )
302 deallocate( gv%sInterface , gv%sLayer )
305 end subroutine verticalgridend