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
05960b89
Commit
05960b89
authored
2 weeks ago
by
Debolskiy Andrey
Browse files
Options
Downloads
Patches
Plain Diff
reworked args in pbldia_new_sfx.f90
parent
0f9143aa
No related branches found
No related tags found
No related merge requests found
Pipeline
#1805
canceled
2 weeks ago
Stage: build
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
diag/pbldia_new_sfx.f90
+12
-12
12 additions, 12 deletions
diag/pbldia_new_sfx.f90
with
12 additions
and
12 deletions
diag/pbldia_new_sfx.f90
+
12
−
12
View file @
05960b89
...
...
@@ -38,8 +38,8 @@ module pbldia_new_sfx
!C* UFTEMP - UNIVERSAL FUNCTION FOR SCALARS
subroutine
pbldia_new_log
(
AR2
,
ARDIN
,
ARDOUT
,
lat
)
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
,
lat
subroutine
pbldia_new_log
(
AR2
,
ARDIN
,
ARDOUT
)
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
real
,
intent
(
out
)::
ARDOUT
(
3
)
real
hwind
,
htemp
,
ustar
,
tstar
,
qstar
real
dteta
,
dq
,
wind
,
HIN
,
zeta
...
...
@@ -66,10 +66,10 @@ module pbldia_new_sfx
return
end
subroutine
pbldia_new_log
subroutine
pbldia_new_sheba
(
AR2
,
ARDIN
,
ARDOUT
,
lat
)
subroutine
pbldia_new_sheba
(
AR2
,
ARDIN
,
ARDOUT
)
use
sfx_sheba
,
only
:
get_psi_sheba
=>
get_psi
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
,
lat
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
real
,
intent
(
out
)::
ARDOUT
(
3
)
real
,
parameter
::
zetalim
=
1.
!maximum value of z/L for
! stable SL for wind
...
...
@@ -122,12 +122,12 @@ module pbldia_new_sfx
return
end
subroutine
pbldia_new_sheba
subroutine
pbldia_new_sheba_coare
(
AR2
,
ARDIN
,
ARDOUT
,
lat
)
subroutine
pbldia_new_sheba_coare
(
AR2
,
ARDIN
,
ARDOUT
)
use
sfx_sheba_coare
,
only
:
&
get_psi_coare
=>
get_psi_a
,
&
get_psi_stable_sheba
=>
get_psi_stable
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
,
lat
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
real
,
intent
(
out
)::
ARDOUT
(
3
)
real
,
parameter
::
zetalim
=
1.
!maximum value of z/L for stable SL
real
psi_m
,
psi_h
,
psi_m_hs
,
psi_h_hs
...
...
@@ -185,11 +185,11 @@ module pbldia_new_sfx
end
subroutine
pbldia_new_sheba_coare
subroutine
pbldia_new_sheba_noit
(
AR2
,
ARDIN
,
ARDOUT
,
lat
)
subroutine
pbldia_new_sheba_noit
(
AR2
,
ARDIN
,
ARDOUT
)
use
sfx_sheba_noniterative
,
only
:
&
get_psi_stable_sheba
=>
get_psi_stable
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
,
lat
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
real
,
intent
(
out
)::
ARDOUT
(
3
)
real
,
parameter
::
zetalim
=
1.
!maximum value of z/L for stable SL
real
psi_m
,
psi_h
,
psi_m_hs
,
psi_h_hs
...
...
@@ -252,11 +252,11 @@ module pbldia_new_sfx
return
end
subroutine
pbldia_new_sheba_noit
subroutine
pbldia_new_most
(
AR2
,
ARDIN
,
ARDOUT
,
lat
)
subroutine
pbldia_new_most
(
AR2
,
ARDIN
,
ARDOUT
)
use
sfx_most
,
only
:
&
get_psi_most
=>
get_psi
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
,
lat
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
real
,
intent
(
out
)::
ARDOUT
(
3
)
real
,
parameter
::
zetalim
=
1.
!maximum value of z/L for stable SL
real
psi_m
,
psi_h
,
psi_m_hs
,
psi_h_hs
...
...
@@ -305,8 +305,8 @@ module pbldia_new_sfx
return
end
subroutine
pbldia_new_most
subroutine
pbldia_new_esm
(
AR2
,
ARDIN
,
ARDOUT
,
lat
)
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
,
lat
subroutine
pbldia_new_esm
(
AR2
,
ARDIN
,
ARDOUT
)
real
,
intent
(
in
)::
AR2
(
11
),
ARDIN
(
6
)
real
,
intent
(
out
)::
ARDOUT
(
3
)
real
,
parameter
::
zetalim
=
1.
!maximum value of z/L for stable SL
real
psi_m
,
psi_h
,
psi_m_hs
,
psi_h_hs
...
...
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