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
6cc1de8a
Commit
6cc1de8a
authored
2 weeks ago
by
Debolskiy Andrey
Browse files
Options
Downloads
Patches
Plain Diff
fixed zetalim bug in pbldia_new_sfx.f90
parent
05960b89
No related branches found
No related tags found
No related merge requests found
Pipeline
#1807
failed
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
+35
-17
35 additions, 17 deletions
diag/pbldia_new_sfx.f90
with
35 additions
and
17 deletions
diag/pbldia_new_sfx.f90
+
35
−
17
View file @
6cc1de8a
...
...
@@ -88,12 +88,15 @@ module pbldia_new_sfx
TSTAR
=
AR2
(
9
)
*
ARDIN
(
2
)
QSTAR
=
AR2
(
9
)
*
ARDIN
(
3
)
if
(
zeta
.ne.
0
)
then
if
(
zeta
.gt.
zetalim
)
L_lim
=
HIN
/
zetalim
if
(
zeta
.ne.
0
)
then
L
=
HIN
/
zeta
if
(
zeta
.gt.
zetalim
)
then
L_lim
=
HIN
/
zetalim
else
L_lim
=
L
end
if
L
=
HIN
/
zeta
call
get_psi_sheba
(
psi_m_hs
,
psi_h_hs
,
HIN
/
L_lim
)
call
get_psi_sheba
(
psi_m
,
psi_h
,
HWIND
/
L_lim
)
...
...
@@ -144,9 +147,13 @@ module pbldia_new_sfx
QSTAR
=
AR2
(
9
)
*
ARDIN
(
3
)
if
(
zeta
.ne.
0
)
then
if
(
zeta
.gt.
zetalim
)
L_lim
=
HIN
/
zetalim
L
=
HIN
/
zeta
L
=
HIN
/
zeta
if
(
zeta
.gt.
zetalim
)
then
L_lim
=
HIN
/
zetalim
else
L_lim
=
L
end
if
if
(
zeta
.gt.
0
)
then
! stable stratification
...
...
@@ -208,9 +215,13 @@ module pbldia_new_sfx
QSTAR
=
AR2
(
9
)
*
ARDIN
(
3
)
if
(
zeta
.ne.
0
)
then
if
(
zeta
.gt.
zetalim
)
L_lim
=
HIN
/
zetalim
L
=
HIN
/
zeta
L
=
HIN
/
zeta
if
(
zeta
.gt.
zetalim
)
then
L_lim
=
HIN
/
zetalim
else
L_lim
=
L
end
if
if
(
zeta
.gt.
0
)
then
! stable stratification
...
...
@@ -275,9 +286,13 @@ module pbldia_new_sfx
QSTAR
=
AR2
(
9
)
*
ARDIN
(
3
)
if
(
zeta
.ne.
0
)
then
if
(
zeta
.gt.
zetalim
)
L_lim
=
HIN
/
zetalim
L
=
HIN
/
zeta
L
=
HIN
/
zeta
if
(
zeta
.gt.
zetalim
)
then
L_lim
=
HIN
/
zetalim
else
L_lim
=
L
end
if
call
get_psi_most
(
psi_m_hs
,
psi_h_hs
,
HIN
/
L_lim
)
call
get_psi_most
(
psi_m
,
psi_h
,
HWIND
/
L_lim
)
...
...
@@ -323,9 +338,12 @@ module pbldia_new_sfx
QSTAR
=
AR2
(
9
)
*
ARDIN
(
3
)
if
(
zeta
.ne.
0
)
then
if
(
zeta
.gt.
zetalim
)
L_lim
=
HIN
/
zetalim
L
=
HIN
/
zeta
L
=
HIN
/
zeta
if
(
zeta
.gt.
zetalim
)
then
L_lim
=
HIN
/
zetalim
else
L_lim
=
L
end
if
call
get_psi_esm1
(
psi_m
,
psi_h
,
HIN
,
HWIND
,
L_lim
)
UFWIND
=
psi_m
...
...
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