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
97d44974
Commit
97d44974
authored
2 years ago
by
Lionel GUEZ
Browse files
Options
Downloads
Patches
Plain Diff
Do not compute properties of isolated segments
parent
df485f35
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cost_function.py
+68
-62
68 additions, 62 deletions
cost_function.py
with
68 additions
and
62 deletions
cost_function.py
+
68
−
62
View file @
97d44974
...
...
@@ -139,68 +139,74 @@ num_of_days_to_avg = 7 # number of days to average
print
(
"
Iterating on vertices...
"
)
for
n
in
g
.
vertices
():
segment
=
g
.
vp
.
inst_eddies
[
n
]
num_of_days
=
len
(
segment
)
# Calculate the date index, the eddy index and the SHPC index of
# the first instantaneous eddy in the segment, then grab the
# position of the extremum and store it in a vertex property:
date_index
,
eddy_index
=
report_graph
.
node_to_date_eddy
(
segment
[
0
],
e_overestim
)
i_SHPC
=
get_SHPC
(
array_d_init
,
date_index
)
ishape
=
util_eddies
.
comp_ishape
(
handlers
[
i_SHPC
],
date_index
,
eddy_index
)
g
.
vp
.
pos_first
[
n
]
=
handlers
[
i_SHPC
][
"
readers
"
][
"
extremum
"
].
shape
(
ishape
)
\
.
points
[
0
]
# [in degrees]
# Same for last instantaneous eddy in the segment:
date_index
,
eddy_index
=
report_graph
.
node_to_date_eddy
(
segment
[
-
1
],
e_overestim
)
i_SHPC
=
get_SHPC
(
array_d_init
,
date_index
)
ishape
=
util_eddies
.
comp_ishape
(
handlers
[
i_SHPC
],
date_index
,
eddy_index
)
g
.
vp
.
pos_last
[
n
]
=
handlers
[
i_SHPC
][
"
readers
"
][
"
extremum
"
].
shape
(
ishape
)
\
.
points
[
0
]
# [in degrees]
if
(
num_of_days
>
num_of_days_to_avg
):
# The segment is longer than the number of days over which to average
# First 7 days calculation
first_res
=
calculate_radii_rossby
(
segment
[:
num_of_days_to_avg
],
e_overestim
,
handlers
,
array_d_init
)
# Average and assign the first radii:
g
.
vp
.
first_av_rad
[
n
]
=
first_res
[
'
radii
'
]
if
first_res
[
'
rossby
'
]
is
not
None
:
# Average and assign the rossbies:
g
.
vp
.
first_av_ros
[
n
]
=
first_res
[
'
rossby
'
]
# Last 7 days calculation:
last_res
=
calculate_radii_rossby
(
segment
[
-
num_of_days_to_avg
:],
e_overestim
,
handlers
,
array_d_init
)
# Average and assign the last radii
g
.
vp
.
last_av_rad
[
n
]
=
last_res
[
'
radii
'
]
if
last_res
[
'
rossby
'
]
is
not
None
:
# Average and assign the rossbies:
g
.
vp
.
last_av_ros
[
n
]
=
last_res
[
'
rossby
'
]
else
:
# The number of eddies in a segment is lower than the number
# of days over which to average. The values will be the same
# except for the positions.
res
=
calculate_radii_rossby
(
segment
,
e_overestim
,
handlers
,
array_d_init
)
if
res
[
'
rossby
'
]
is
not
None
:
# Average and assign the rossbies:
rossby
=
res
[
'
rossby
'
]
g
.
vp
.
first_av_ros
[
n
]
=
rossby
g
.
vp
.
last_av_ros
[
n
]
=
rossby
# Average and assign the radii
radii
=
res
[
'
radii
'
]
g
.
vp
.
first_av_rad
[
n
]
=
radii
g
.
vp
.
last_av_rad
[
n
]
=
radii
if
n
.
in_degree
()
!=
0
or
n
.
out_degree
()
!=
0
:
segment
=
g
.
vp
.
inst_eddies
[
n
]
num_of_days
=
len
(
segment
)
# Calculate the date index, the eddy index and the SHPC index of
# the first instantaneous eddy in the segment, then grab the
# position of the extremum and store it in a vertex property:
date_index
,
eddy_index
=
report_graph
.
node_to_date_eddy
(
segment
[
0
],
e_overestim
)
i_SHPC
=
get_SHPC
(
array_d_init
,
date_index
)
ishape
=
util_eddies
.
comp_ishape
(
handlers
[
i_SHPC
],
date_index
,
eddy_index
)
g
.
vp
.
pos_first
[
n
]
=
handlers
[
i_SHPC
][
"
readers
"
][
"
extremum
"
]
\
.
shape
(
ishape
).
points
[
0
]
# [in degrees]
# Same for last instantaneous eddy in the segment:
date_index
,
eddy_index
=
report_graph
.
node_to_date_eddy
(
segment
[
-
1
],
e_overestim
)
i_SHPC
=
get_SHPC
(
array_d_init
,
date_index
)
ishape
=
util_eddies
.
comp_ishape
(
handlers
[
i_SHPC
],
date_index
,
eddy_index
)
g
.
vp
.
pos_last
[
n
]
=
handlers
[
i_SHPC
][
"
readers
"
][
"
extremum
"
]
\
.
shape
(
ishape
).
points
[
0
]
# [in degrees]
if
(
num_of_days
>
num_of_days_to_avg
):
# The segment is longer than the number of days over which
# to average
# First 7 days calculation
first_res
=
calculate_radii_rossby
(
segment
[:
num_of_days_to_avg
],
e_overestim
,
handlers
,
array_d_init
)
# Average and assign the first radii:
g
.
vp
.
first_av_rad
[
n
]
=
first_res
[
'
radii
'
]
if
first_res
[
'
rossby
'
]
is
not
None
:
# Average and assign the rossbies:
g
.
vp
.
first_av_ros
[
n
]
=
first_res
[
'
rossby
'
]
# Last 7 days calculation:
last_res
=
calculate_radii_rossby
(
segment
[
-
num_of_days_to_avg
:],
e_overestim
,
handlers
,
array_d_init
)
# Average and assign the last radii
g
.
vp
.
last_av_rad
[
n
]
=
last_res
[
'
radii
'
]
if
last_res
[
'
rossby
'
]
is
not
None
:
# Average and assign the rossbies:
g
.
vp
.
last_av_ros
[
n
]
=
last_res
[
'
rossby
'
]
else
:
# The number of eddies in a segment is lower than the number
# of days over which to average. The values will be the same
# except for the positions.
res
=
calculate_radii_rossby
(
segment
,
e_overestim
,
handlers
,
array_d_init
)
if
res
[
'
rossby
'
]
is
not
None
:
# Average and assign the rossbies:
rossby
=
res
[
'
rossby
'
]
g
.
vp
.
first_av_ros
[
n
]
=
rossby
g
.
vp
.
last_av_ros
[
n
]
=
rossby
# Average and assign the radii
radii
=
res
[
'
radii
'
]
g
.
vp
.
first_av_rad
[
n
]
=
radii
g
.
vp
.
last_av_rad
[
n
]
=
radii
t1
=
time
.
perf_counter
()
timings
.
write
(
f
"
iterating on vertices:
{
t1
-
t0
:
.
0
f
}
s
\n
"
)
...
...
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