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
69dc82e0
Commit
69dc82e0
authored
2 years ago
by
Lionel GUEZ
Browse files
Options
Downloads
Patches
Plain Diff
Transform function `get_1_outerm` into subroutine
Because we are going to add another intent out argument.
parent
293f4878
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Inst_eddies/Tests/test_get_1_outerm.f90
+1
-1
1 addition, 1 deletion
Inst_eddies/Tests/test_get_1_outerm.f90
Inst_eddies/get_1_outerm.f90
+6
-5
6 additions, 5 deletions
Inst_eddies/get_1_outerm.f90
Inst_eddies/set_all_outerm.f90
+1
-1
1 addition, 1 deletion
Inst_eddies/set_all_outerm.f90
with
8 additions
and
7 deletions
Inst_eddies/Tests/test_get_1_outerm.f90
+
1
−
1
View file @
69dc82e0
...
@@ -66,7 +66,7 @@ program test_get_1_outerm
...
@@ -66,7 +66,7 @@ program test_get_1_outerm
outside_points
=
transpose
(
outside_points
)
*
deg_to_rad
outside_points
=
transpose
(
outside_points
)
*
deg_to_rad
e
%
extr
%
coord_proj
=
ind_targ_extr
e
%
extr
%
coord_proj
=
ind_targ_extr
e
%
extr
%
coord
=
corner
+
(
ind_targ_extr
-
1
)
*
step
e
%
extr
%
coord
=
corner
+
(
ind_targ_extr
-
1
)
*
step
e
%
out_cont
=
get_1_outerm
(
cyclone
,
e
%
extr
%
coord
,
innermost_level
,
&
call
get_1_outerm
(
e
%
out_cont
,
cyclone
,
e
%
extr
%
coord
,
innermost_level
,
&
outside_points
,
ssh
,
corner
,
step
)
outside_points
,
ssh
,
corner
,
step
)
if
(
e
%
out_cont
%
closed
)
then
if
(
e
%
out_cont
%
closed
)
then
...
...
This diff is collapsed.
Click to expand it.
Inst_eddies/get_1_outerm.f90
+
6
−
5
View file @
69dc82e0
...
@@ -4,8 +4,8 @@ module get_1_outerm_m
...
@@ -4,8 +4,8 @@ module get_1_outerm_m
contains
contains
type
(
ssh_contour
)
function
get_1_outerm
(
cyclone
,
coord_extr
,
&
subroutine
get_1_outerm
(
out_cont
,
cyclone
,
coord_extr
,
innermost_level_2
,
&
innermost_level_2
,
outside_points
,
ssh
,
corner
,
step
)
outside_points
,
ssh
,
corner
,
step
)
! This procedure gets one outermost good contour, if it can find
! This procedure gets one outermost good contour, if it can find
! one. If the procedure cannot find an outermost contour, it
! one. If the procedure cannot find an outermost contour, it
...
@@ -43,6 +43,7 @@ contains
...
@@ -43,6 +43,7 @@ contains
use
good_contour_m
,
only
:
good_contour
use
good_contour_m
,
only
:
good_contour
use
spher_polyline_area_m
,
only
:
spher_polyline_area
use
spher_polyline_area_m
,
only
:
spher_polyline_area
type
(
ssh_contour
),
intent
(
out
)::
out_cont
logical
,
intent
(
in
)::
cyclone
logical
,
intent
(
in
)::
cyclone
real
,
intent
(
in
)::
coord_extr
(:)
! (2)
real
,
intent
(
in
)::
coord_extr
(:)
! (2)
...
@@ -82,7 +83,7 @@ contains
...
@@ -82,7 +83,7 @@ contains
coord_extr
,
outside_points
)
coord_extr
,
outside_points
)
if
(
cont_list
(
1
)
%
n_points
==
0
)
then
if
(
cont_list
(
1
)
%
n_points
==
0
)
then
get_1_outerm
=
null_ssh_contour
()
out_cont
=
null_ssh_contour
()
else
else
n_cont
=
1
n_cont
=
1
cont_list
(
1
)
%
ssh
=
innermost_level_2
cont_list
(
1
)
%
ssh
=
innermost_level_2
...
@@ -132,9 +133,9 @@ contains
...
@@ -132,9 +133,9 @@ contains
cont_list
(
n_cont
)
%
area
=
spher_polyline_area
(
cont_list
(
n_cont
)
%
polyline
)
cont_list
(
n_cont
)
%
area
=
spher_polyline_area
(
cont_list
(
n_cont
)
%
polyline
)
call
ccw_orient
(
cont_list
(
n_cont
))
call
ccw_orient
(
cont_list
(
n_cont
))
get_1_outerm
=
cont_list
(
n_cont
)
out_cont
=
cont_list
(
n_cont
)
end
if
end
if
end
function
get_1_outerm
end
subroutine
get_1_outerm
end
module
get_1_outerm_m
end
module
get_1_outerm_m
This diff is collapsed.
Click to expand it.
Inst_eddies/set_all_outerm.f90
+
1
−
1
View file @
69dc82e0
...
@@ -118,7 +118,7 @@ contains
...
@@ -118,7 +118,7 @@ contains
+
ceiling
((
corner_window
(
1
)
-
outside_points
(
1
,
:))
/
twopi
)
*
twopi
+
ceiling
((
corner_window
(
1
)
-
outside_points
(
1
,
:))
/
twopi
)
*
twopi
! (Shift the longitude of each point to a value close to the
! (Shift the longitude of each point to a value close to the
! longitude of the target extremum.)
! longitude of the target extremum.)
s
%
list
(
i
)
%
out_cont
=
get_1_outerm
(
s
%
list
(
i
)
%
cyclone
,
&
call
get_1_outerm
(
s
%
list
(
i
)
%
out_cont
,
s
%
list
(
i
)
%
cyclone
,
&
s
%
list
(
i
)
%
extr
%
coord
,
innermost_level_2
,
outside_points
,
&
s
%
list
(
i
)
%
extr
%
coord
,
innermost_level_2
,
outside_points
,
&
ssh
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
corner_window
,
step
)
ssh
(
llc
(
1
):
urc
(
1
),
llc
(
2
):
urc
(
2
)),
corner_window
,
step
)
s
%
list
(
i
)
%
valid
=
s
%
list
(
i
)
%
out_cont
%
area
>=
min_area
s
%
list
(
i
)
%
valid
=
s
%
list
(
i
)
%
out_cont
%
area
>=
min_area
...
...
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