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
a752773a
Commit
a752773a
authored
1 year ago
by
Florian Zill
Browse files
Options
Downloads
Patches
Plain Diff
[propertylib] get_preset finds derived props
parent
e4c31756
No related branches found
No related tags found
1 merge request
!134
MeshSeries aggregation function
Pipeline
#22369
passed
1 year ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ogstools/propertylib/presets.py
+31
-4
31 additions, 4 deletions
ogstools/propertylib/presets.py
with
31 additions
and
4 deletions
ogstools/propertylib/presets.py
+
31
−
4
View file @
a752773a
...
@@ -14,6 +14,7 @@ from . import mesh_dependent, tensor_math
...
@@ -14,6 +14,7 @@ from . import mesh_dependent, tensor_math
from
.custom_colormaps
import
integrity_cmap
,
temperature_cmap
from
.custom_colormaps
import
integrity_cmap
,
temperature_cmap
from
.matrix
import
Matrix
from
.matrix
import
Matrix
from
.property
import
Property
,
Scalar
from
.property
import
Property
,
Scalar
from
.tensor_math
import
identity
from
.vector
import
Vector
from
.vector
import
Vector
T_MASK
=
"
temperature_active
"
T_MASK
=
"
temperature_active
"
...
@@ -148,6 +149,8 @@ def get_preset(
...
@@ -148,6 +149,8 @@ def get_preset(
Returns a Property preset or creates one with correct type.
Returns a Property preset or creates one with correct type.
Searches for presets by data_name and output_name and returns if found.
Searches for presets by data_name and output_name and returns if found.
If
'
mesh_property
'
is given as type Property this will also look for
derived properties (difference, aggregate).
Otherwise create Scalar, Vector, or Matrix Property depending on the shape
Otherwise create Scalar, Vector, or Matrix Property depending on the shape
of data in mesh.
of data in mesh.
...
@@ -155,8 +158,30 @@ def get_preset(
...
@@ -155,8 +158,30 @@ def get_preset(
:param mesh: The mesh containing the property data.
:param mesh: The mesh containing the property data.
:returns: A corresponding Property preset or a new Property of correct type.
:returns: A corresponding Property preset or a new Property of correct type.
"""
"""
data_keys
:
list
[
str
]
=
list
(
set
().
union
(
mesh
.
point_data
,
mesh
.
cell_data
))
error_msg
=
(
f
"
Data not found in mesh. Available data names are
{
data_keys
}
.
"
)
if
isinstance
(
mesh_property
,
Property
):
if
isinstance
(
mesh_property
,
Property
):
return
mesh_property
if
mesh_property
.
data_name
in
data_keys
:
return
mesh_property
matches
=
[
mesh_property
.
output_name
in
data_key
for
data_key
in
data_keys
]
if
not
any
(
matches
):
raise
KeyError
(
error_msg
)
data_key
=
data_keys
[
matches
.
index
(
True
)]
if
data_key
==
f
"
{
mesh_property
.
output_name
}
_difference
"
:
return
mesh_property
.
difference
return
mesh_property
.
replace
(
data_name
=
data_key
,
data_unit
=
mesh_property
.
output_unit
,
output_unit
=
mesh_property
.
output_unit
,
output_name
=
data_key
,
func
=
identity
,
mesh_dependent
=
False
,
)
for
prop
in
all_properties
:
for
prop
in
all_properties
:
if
prop
.
output_name
==
mesh_property
:
if
prop
.
output_name
==
mesh_property
:
...
@@ -164,9 +189,11 @@ def get_preset(
...
@@ -164,9 +189,11 @@ def get_preset(
for
prop
in
all_properties
:
for
prop
in
all_properties
:
if
prop
.
data_name
==
mesh_property
:
if
prop
.
data_name
==
mesh_property
:
return
prop
return
prop
if
mesh_property
not
in
set
().
union
(
mesh
.
point_data
,
mesh
.
cell_data
):
msg
=
f
"
Property
{
mesh_property
}
not found in mesh.
"
matches
=
[
mesh_property
in
data_key
for
data_key
in
data_keys
]
raise
KeyError
(
msg
)
if
not
any
(
matches
):
raise
KeyError
(
error_msg
)
data_shape
=
mesh
[
mesh_property
].
shape
data_shape
=
mesh
[
mesh_property
].
shape
if
len
(
data_shape
)
==
1
:
if
len
(
data_shape
)
==
1
:
return
Scalar
(
mesh_property
)
return
Scalar
(
mesh_property
)
...
...
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