Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
Detection eddies
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container 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
IPSL
LMD
DPAO
Detection eddies
Commits
d5174416
Commit
d5174416
authored
1 year ago
by
Lionel GUEZ
Browse files
Options
Downloads
Patches
Plain Diff
Change order of dummy arguments of `set_max_speed`
Because `cont_list` is going to become `intent(inout)`.
parent
1c027cb9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Inst_eddies/Tests/test_set_max_speed.f90
+2
-2
2 additions, 2 deletions
Inst_eddies/Tests/test_set_max_speed.f90
Inst_eddies/set_all_contours.f90
+3
-3
3 additions, 3 deletions
Inst_eddies/set_all_contours.f90
Inst_eddies/set_max_speed.f90
+7
-7
7 additions, 7 deletions
Inst_eddies/set_max_speed.f90
with
12 additions
and
12 deletions
Inst_eddies/Tests/test_set_max_speed.f90
+
2
−
2
View file @
d5174416
...
...
@@ -68,9 +68,9 @@ program test_set_max_speed
corner_window
=
corner
+
(
llc
-
1
)
*
step
e
%
extr
%
coord_proj
=
nint
((
e
%
extr
%
coord
-
corner
)
/
step
)
+
1
cont_list
(
1
)
=
e
%
out_cont
call
set_max_speed
(
e
,
ssh
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
&
call
set_max_speed
(
e
,
cont_list
,
ssh
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
&
u
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
&
v
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
corner_window
,
step
,
cont_list
)
v
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
corner_window
,
step
)
call
shpc_create
(
hshp
,
shpc_dir
=
"SHPC"
,
cyclone
=
cyclone
,
slice
=
0
,
&
grid_lon_lat
=
.true.
)
call
write_eddy
(
e
,
hshp
,
d
,
i
)
...
...
This diff is collapsed.
Click to expand it.
Inst_eddies/set_all_contours.f90
+
3
−
3
View file @
d5174416
...
...
@@ -156,10 +156,10 @@ contains
corner_window
=
corner
+
(
llc
-
1
)
*
step
call
set_max_speed
(
e
,
ssh
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
&
call
set_max_speed
(
e
,
cont_list
(:
n_cont
),
&
ssh
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
&
u
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
&
v
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
corner_window
,
step
,
&
cont_list
(:
n_cont
))
v
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
corner_window
,
step
)
end
if
end
associate
end
do
loop_extr
...
...
This diff is collapsed.
Click to expand it.
Inst_eddies/set_max_speed.f90
+
7
−
7
View file @
d5174416
...
...
@@ -4,7 +4,7 @@ module set_max_speed_m
contains
subroutine
set_max_speed
(
e
,
ssh
,
u
,
v
,
corner
,
step
,
cont_list
)
subroutine
set_max_speed
(
e
,
cont_list
,
ssh
,
u
,
v
,
corner
,
step
)
! This procedure defines the components speed_cont and max_speed
! of argument e. On return, e%speed_cont may be a null ssh contour
...
...
@@ -27,6 +27,12 @@ contains
! e%out_cont, e%cyclone, e%extr%ssh and e%extr%coord
! should be defined on input.
type
(
ssh_contour
),
intent
(
in
)::
cont_list
(:)
! (n_cont)
! Contour list. n_cont >= 1. The outermost contour is element with
! subscript n_cont. The contours are in monotonic order of ssh. If
! n_cont >= 2, cont_list(:n_cont - 1)%area are missing and
! cont_list(:n_cont - 1) are not oriented.
real
,
intent
(
in
)::
ssh
(:,
:),
u
(:,
:),
v
(:,
:)
! The domain should be the bounding box of out_cont, because we do
! not exclude other extrema.
...
...
@@ -36,12 +42,6 @@ contains
real
,
intent
(
in
)::
step
(:)
! (2) longitude and latitude steps, in rad
type
(
ssh_contour
),
intent
(
in
)::
cont_list
(:)
! (n_cont)
! Contour list. n_cont >= 1. The outermost contour is element with
! subscript n_cont. The contours are in monotonic order of ssh. If
! n_cont >= 2, cont_list(:n_cont - 1)%area are missing and
! cont_list(:n_cont - 1) are not oriented.
! Local:
real
speed
(
size
(
cont_list
))
! (n_cont) speed on the contour
integer
i
,
n_cont
...
...
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