Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sfx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
inmcm-mirror
sfx
Commits
e9d3bc83
Commit
e9d3bc83
authored
5 months ago
by
数学の武士
Browse files
Options
Downloads
Patches
Plain Diff
/
parent
fb3939af
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
srcF/sfx_data.f90
+23
-2
23 additions, 2 deletions
srcF/sfx_data.f90
with
23 additions
and
2 deletions
srcF/sfx_data.f90
+
23
−
2
View file @
e9d3bc83
...
...
@@ -40,13 +40,21 @@ module sfx_data
!> @brief meteorological input for surface flux calculation
!> &details using arrays as input
type
,
public
::
meteoDataVecType
#if defined(INCLUDE_CXX)
real
,
pointer
::
h
(:)
!< constant flux layer height [m]
real
,
pointer
::
U
(:)
!< abs(wind speed) at 'h' [m/s]
real
,
pointer
::
dT
(:)
!< difference between potential temperature at 'h' and at surface [K]
real
,
pointer
::
Tsemi
(:)
!< semi-sum of potential temperature at 'h' and at surface [K]
real
,
pointer
::
dQ
(:)
!< difference between humidity at 'h' and at surface [g/g]
real
,
pointer
::
z0_m
(:)
!< surface aerodynamic roughness (should be < 0 for water bodies surface)
#else
real
,
allocatable
::
h
(:)
!< constant flux layer height [m]
real
,
allocatable
::
U
(:)
!< abs(wind speed) at 'h' [m/s]
real
,
allocatable
::
dT
(:)
!< difference between potential temperature at 'h' and at surface [K]
real
,
allocatable
::
Tsemi
(:)
!< semi-sum of potential temperature at 'h' and at surface [K]
real
,
allocatable
::
dQ
(:)
!< difference between humidity at 'h' and at surface [g/g]
real
,
allocatable
::
z0_m
(:)
!< surface aerodynamic roughness (should be < 0 for water bodies surface)
#endif
end
type
#if defined(INCLUDE_CXX)
...
...
@@ -82,7 +90,7 @@ module sfx_data
!> @brief surface flux output data
!> &details using arrays as output
type
,
public
::
sfxDataVecType
#if defined(INCLUDE_CXX)
real
,
pointer
::
zeta
(:)
!< = z/L [n/d]
real
,
pointer
::
Rib
(:)
!< bulk Richardson number [n/d]
real
,
pointer
::
Re
(:)
!< Reynolds number [n/d]
...
...
@@ -94,6 +102,19 @@ module sfx_data
real
,
pointer
::
Ct
(:)
!< transfer coefficient for heat [n/d]
real
,
pointer
::
Km
(:)
!< eddy viscosity coeff. at h [m^2/s]
real
,
pointer
::
Pr_t_inv
(:)
!< inverse turbulent Prandtl number at h [n/d]
#else
real
,
allocatable
::
zeta
(:)
!< = z/L [n/d]
real
,
allocatable
::
Rib
(:)
!< bulk Richardson number [n/d]
real
,
allocatable
::
Re
(:)
!< Reynolds number [n/d]
real
,
allocatable
::
B
(:)
!< = log(z0_m / z0_h) [n/d]
real
,
allocatable
::
z0_m
(:)
!< aerodynamic roughness [m]
real
,
allocatable
::
z0_t
(:)
!< thermal roughness [m]
real
,
allocatable
::
Rib_conv_lim
(:)
!< Ri-bulk convection critical value [n/d]
real
,
allocatable
::
Cm
(:)
!< transfer coefficient for momentum [n/d]
real
,
allocatable
::
Ct
(:)
!< transfer coefficient for heat [n/d]
real
,
allocatable
::
Km
(:)
!< eddy viscosity coeff. at h [m^2/s]
real
,
allocatable
::
Pr_t_inv
(:)
!< inverse turbulent Prandtl number at h [n/d]
#endif
end
type
#if defined(INCLUDE_CXX)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment