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
f76273d9
Commit
f76273d9
authored
3 months ago
by
Виктория Суязова
Committed by
Anna Shestakova
3 weeks ago
Browse files
Options
Downloads
Patches
Plain Diff
changes in z0t_re
parent
54ab84cb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
srcF/sfx_config.f90
+2
-2
2 additions, 2 deletions
srcF/sfx_config.f90
srcF/sfx_surface.f90
+1
-1
1 addition, 1 deletion
srcF/sfx_surface.f90
srcF/sfx_z0m_all_surface.f90
+1
-1
1 addition, 1 deletion
srcF/sfx_z0m_all_surface.f90
srcF/sfx_z0t_all_surface.f90
+13
-6
13 additions, 6 deletions
srcF/sfx_z0t_all_surface.f90
with
17 additions
and
10 deletions
srcF/sfx_config.f90
+
2
−
2
View file @
f76273d9
...
...
@@ -167,8 +167,8 @@ contains
dataset
%
filename
=
get_dataset_filename
(
id
)
dataset
%
nmax
=
0
dataset
%
surface
=
surface_la
nd
dataset
%
surface_type
=
surface_la
nd
dataset
%
surface
=
surface_la
ke
dataset
%
surface_type
=
surface_la
ke
dataset
%
z0_h
=
-1.0
dataset
%
lai
=
1.0
dataset
%
depth
=
10.0
...
...
This diff is collapsed.
Click to expand it.
srcF/sfx_surface.f90
+
1
−
1
View file @
f76273d9
...
...
@@ -98,7 +98,7 @@ module sfx_surface
integer
,
public
,
parameter
::
ocean_z0t_id
=
z0t_kl_water
!< ocean surface
integer
,
public
,
parameter
::
land_z0t_id
=
z0t_kl_land
!< land surface
integer
,
public
,
parameter
::
lake_z0t_id
=
z0t_r
e
!< lake surface
integer
,
public
,
parameter
::
lake_z0t_id
=
z0t_
b
r
!< lake surface
integer
,
public
,
parameter
::
snow_z0t_id
=
z0t_kl_land
!< snow covered surface
integer
,
public
,
parameter
::
forest_z0t_id
=
z0t_du
!< forest csurface
integer
,
public
,
parameter
::
usersf_z0t_id
=
z0t_mix
!< user surface
...
...
This diff is collapsed.
Click to expand it.
srcF/sfx_z0m_all_surface.f90
+
1
−
1
View file @
f76273d9
...
...
@@ -200,7 +200,7 @@ subroutine get_dynamic_roughness_map(z0_m, u_dyn0, U, h, z0m_map)
z0_m
=
z0m_map
h0_m
=
h
/
z0_m
u_dyn0
=
U
*
kappa
/
log
(
h0_m
)
write
(
*
,
*
)
z0_m
,
'map'
end
subroutine
! --------------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
srcF/sfx_z0t_all_surface.f90
+
13
−
6
View file @
f76273d9
...
...
@@ -266,19 +266,26 @@ module sfx_z0t_all_surface
real
,
intent
(
in
)
::
z0_m
!< aerodynamic roughness [m]
real
,
intent
(
in
)
::
Re
!< roughness Reynolds number [n/d]
real
Re1
,
Re_min
Re_min
=
0.75
Re1
=
max
(
Re
,
Re_min
)
z0_t
=
z0_m
*
(
-0.56
*
(
4.0
*
(
Re
)
**
(
0.5
)
-3.4
))
z0_t
=
z0_m
*
(
-0.56
*
(
4.0
*
(
Re1
)
**
(
0.5
)
-3.4
))
if
(
z0_t
<
0
)
z0_t
=
z0_m
*
0.9
if
(
z0_m
>
z0_t
)
then
B
=
alog
(
z0_m
/
z0_t
)
else
z0_t
=
z0_m
*
0.9
B
=
alog
(
z0_m
/
z0_t
)
end
if
! --- define roughness [thermal]
!z0_t = z0_m / exp(B)
!write(*,*) z0_t, B, Re, 're'
!write(*,*)
z0_m,
z0_t, B, Re
1
, 're'
end
subroutine
...
...
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