Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OGSTools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
ogs
OpenGeoSys Tools
OGSTools
Commits
bad3d516
Commit
bad3d516
authored
1 year ago
by
Florian Zill
Browse files
Options
Downloads
Patches
Plain Diff
refactoring meshplotlib with last changes
parent
cbc4812b
No related branches found
No related tags found
1 merge request
!115
limit plots, difference plots, clean up
Pipeline
#21619
passed
1 year ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ogstools/meshplotlib/core.py
+28
-24
28 additions, 24 deletions
ogstools/meshplotlib/core.py
with
28 additions
and
24 deletions
ogstools/meshplotlib/core.py
+
28
−
24
View file @
bad3d516
...
...
@@ -32,14 +32,29 @@ def _q_zero_line(property: Property, levels: np.ndarray):
)
def
get_data
(
mesh
:
pv
.
UnstructuredGrid
,
property
:
Property
)
->
np
.
ndarray
:
def
has_masked_values
(
mesh
:
pv
.
UnstructuredGrid
,
property
:
Property
)
->
bool
:
return
(
not
property
.
is_mask
()
and
property
.
mask
in
mesh
.
cell_data
and
(
len
(
mesh
.
cell_data
[
property
.
mask
])
!=
0
)
)
def
get_data
(
mesh
:
pv
.
UnstructuredGrid
,
property
:
Property
,
masked
:
bool
=
False
)
->
np
.
ndarray
:
"""
Get the data associated with a scalar or vector property from a mesh.
"""
if
property
.
data_name
in
mesh
.
point_data
:
return
mesh
.
point_data
[
property
.
data_name
]
if
property
.
data_name
in
mesh
.
cell_data
:
return
mesh
.
cell_data
[
property
.
data_name
]
msg
=
f
"
Property not found in mesh
{
mesh
}
.
"
raise
IndexError
(
msg
)
if
(
property
.
data_name
not
in
mesh
.
point_data
and
property
.
data_name
not
in
mesh
.
cell_data
):
msg
=
f
"
Property not found in mesh
{
mesh
}
.
"
raise
IndexError
(
msg
)
if
masked
:
return
mesh
.
ctp
(
True
).
threshold
(
value
=
[
1
,
1
],
scalars
=
property
.
mask
)[
property
.
data_name
]
return
mesh
[
property
.
data_name
]
def
get_level_boundaries
(
levels
:
np
.
ndarray
):
...
...
@@ -196,11 +211,7 @@ def subplot(
ax
.
axis
(
"
auto
"
)
if
(
not
property
.
is_mask
()
and
property
.
mask
in
mesh
.
cell_data
and
len
(
mesh
.
cell_data
[
property
.
mask
])
):
if
has_masked_values
(
mesh
,
property
):
subplot
(
mesh
,
property
.
get_mask
(),
ax
)
mesh
=
mesh
.
ctp
(
True
).
threshold
(
value
=
[
1
,
1
],
scalars
=
property
.
mask
)
...
...
@@ -341,17 +352,9 @@ def get_combined_levels(
p_min
,
p_max
=
np
.
inf
,
-
np
.
inf
unique_vals
=
np
.
array
([])
for
mesh
in
np
.
ravel
(
meshes
):
if
(
not
property
.
is_mask
()
and
property
.
mask
in
mesh
.
cell_data
and
len
(
mesh
.
cell_data
[
property
.
mask
])
):
_mesh
=
mesh
.
ctp
(
True
).
threshold
(
value
=
[
1
,
1
],
scalars
=
property
.
mask
)
values
=
property
.
magnitude
.
strip_units
(
get_data
(
_mesh
,
property
))
else
:
values
=
property
.
magnitude
.
strip_units
(
get_data
(
mesh
,
property
))
values
=
property
.
magnitude
.
strip_units
(
get_data
(
mesh
,
property
,
masked
=
has_masked_values
(
mesh
,
property
))
)
if
setup
.
log_scaled
:
# TODO: can be improved
values
=
np
.
log10
(
np
.
where
(
values
>
1e-14
,
values
,
1e-14
))
p_min
=
min
(
p_min
,
np
.
nanmin
(
values
))
if
setup
.
p_min
is
None
else
p_min
...
...
@@ -508,7 +511,8 @@ def plot_limit(
data_shape
=
mesh
[
property
].
shape
property
=
_resolve_property
(
property
,
data_shape
)
func
=
{
"
min
"
:
np
.
min
,
"
max
"
:
np
.
max
}[
limit
]
mesh
=
mesh_series
.
reduce_with
(
func
,
property
.
data_name
)
vals
=
mesh_series
.
values
(
property
.
data_name
)
func
(
vals
,
out
=
mesh
[
property
.
data_name
],
axis
=
0
)
limit_property
=
property
.
replace
(
output_name
=
limit
+
"
"
+
property
.
output_name
)
...
...
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