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
efbb7e34
Commit
efbb7e34
authored
9 months ago
by
GUEZ Lionel
Browse files
Options
Downloads
Patches
Plain Diff
Polish
parent
fcfb13f5
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_set_max_speed.f90
+13
-13
13 additions, 13 deletions
Inst_eddies/Tests/test_set_max_speed.f90
Inst_eddies/set_contours.f90
+11
-14
11 additions, 14 deletions
Inst_eddies/set_contours.f90
Inst_eddies/set_max_speed.f90
+6
-6
6 additions, 6 deletions
Inst_eddies/set_max_speed.f90
with
30 additions
and
33 deletions
Inst_eddies/Tests/test_set_max_speed.f90
+
13
−
13
View file @
efbb7e34
...
...
@@ -47,21 +47,21 @@ program test_set_max_speed
type
(
polyline
)
cont_list
(
n_max_cont
)
! Contour list, with points given by longitude and latitude, in
! radians. Defined only for subscripts 1:n_cont. If n_cont >= 1, the
! outermost contour is element with subscript n_cont. For i <=
! n_cont, the order of points in cont_list(i) (clockwise or
! counter-clockwise) is not specified.
! radians. Defined only for subscripts 1:n_cont. The order of
! points in each contour (clockwise or counter-clockwise) is not
! specified.
type
(
ssh_contour
)
cont_list_proj
(
n_max_cont
)
! Contour list, with points given by projection coordinates. Defined
! only for subscripts 1:n_cont. If n_cont >= 1, the outermost
! contour is element with subscript n_cont. The contours are in
! monotonic order of ssh. The contour with a given subscript in
! cont_list_proj corresponds to the contour with the same subscript
! in cont_list. For i <= n_cont, cont_list_proj(i)%area has its
! default initialization value and the order of points in
! cont_list_proj(i) (clockwise or counter-clockwise) is not
! specified.
! Contour list, with points given by projection
! coordinates. Defined only for subscripts 1:n_cont. The contour
! with a given subscript in cont_list_proj corresponds to the
! contour with the same subscript in cont_list. More precisely,
! the point with subscript j in contour i of cont_list_proj
! corresponds to the point with subscript j in contour i of
! cont_list (this is important for mean_speed). For i <= n_cont,
! cont_list_proj(i)%area has its default initialization value and
! the order of points in cont_list_proj(i) (clockwise or
! counter-clockwise) is not specified.
TYPE
(
shpfileobject
)
hshp
type
(
polygon
)
p
...
...
This diff is collapsed.
Click to expand it.
Inst_eddies/set_contours.f90
+
11
−
14
View file @
efbb7e34
...
...
@@ -66,21 +66,18 @@ contains
type
(
polyline
)
cont_list
(
n_max_cont
)
! Contour list, with points given by longitude and latitude, in
! radians. Defined only for subscripts 1:n_cont. If n_cont >= 1,
! the outermost contour is element with subscript n_cont. For i <=
! n_cont, the order of points in cont_list(i) (clockwise or
! counter-clockwise) is not specified.
! radians. Defined only for subscripts 1:n_cont. The order of
! points in each contour (clockwise or counter-clockwise) is not
! specified.
type
(
ssh_contour
)
cont_list_proj
(
n_max_cont
)
! Contour list, with points given by projection
! coordinates. Defined only for subscripts 1:n_cont. If n_cont >=
! 1, the outermost contour is element with subscript n_cont. The
! contours are in monotonic order of ssh. The contour with a given
! subscript in cont_list_proj corresponds to the contour with the
! same subscript in cont_list. More precisely, the point with
! subscript j in contour i of cont_list_proj corresponds to the
! point with subscript j in contour i of cont_list (this is
! important for mean_speed). For i <= n_cont,
! coordinates. Defined only for subscripts 1:n_cont. The contour
! with a given subscript in cont_list_proj corresponds to the
! contour with the same subscript in cont_list. More precisely,
! the point with subscript j in contour i of cont_list_proj
! corresponds to the point with subscript j in contour i of
! cont_list (this is important for mean_speed). For i <= n_cont,
! cont_list_proj(i)%area has its default initialization value and
! the order of points in cont_list_proj(i) (clockwise or
! counter-clockwise) is not specified.
...
...
@@ -102,7 +99,7 @@ contains
! Done with outermost contour, now let us take care of the
! max-speed contour.
if
(
out_cont
%
closed
)
then
! Restrict the field to the outermost contour:
!
{begin}
Restrict the field to the outermost contour:
llc
=
floor
(
convert_to_ind
(
minval
(
out_cont
%
points
,
dim
=
2
),
corner
,
&
step
))
...
...
@@ -115,7 +112,7 @@ contains
corner_window
=
corner
+
(
llc
-
1
)
*
step
! Done restricting field
!
{end}
Done restricting field
call
set_max_speed
(
speed_cont
,
max_speed
,
cont_list
,
cont_list_proj
,
&
n_cont
,
extr
%
coord
,
real
(
extr
%
coord_proj
),
&
...
...
This diff is collapsed.
Click to expand it.
Inst_eddies/set_max_speed.f90
+
6
−
6
View file @
efbb7e34
...
...
@@ -44,15 +44,15 @@ contains
type
(
polyline
),
intent
(
inout
)::
cont_list
(:)
! (n_max_cont)
! Contour list, with points given by longitude and latitude, in
! radians. Defined only for subscripts 1:n_cont.
If n_cont >= 1,
!
the
outermost contour is element with subscript n_cont.
For i <=
!
n_cont, the order of points in
cont
_list(i) (
clockwise
or
!
counter-clockwise) is not
specified.
! radians. Defined only for subscripts 1:n_cont.
On entry, the
! outermost contour is element with subscript n_cont.
The order of
!
points in each contour (clockwise or
co
u
nt
er-
clockwise
) is not
! specified.
type
(
ssh_contour
),
intent
(
inout
)::
cont_list_proj
(:)
! (n_max_cont)
! Contour list, with points given by projection
! coordinates. Defined only for subscripts 1:n_cont.
If n_cont >=
!
1, the
outermost contour is element with subscript n_cont
. T
he
! coordinates. Defined only for subscripts 1:n_cont.
On entry, the
! outermost contour is element with subscript n_cont
and t
he
! contours are in monotonic order of ssh. The contour with a given
! subscript in cont_list_proj corresponds to the contour with the
! same subscript in cont_list. More precisely, the point with
...
...
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