Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fossils
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
Boman Romain
fossils
Commits
a1c3a648
Commit
a1c3a648
authored
3 weeks ago
by
Boman Romain
Browse files
Options
Downloads
Patches
Plain Diff
add principal strain extraction script
parent
52bc0067
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#53773
passed
3 weeks ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
min_max_strain.py
+38
-0
38 additions, 0 deletions
min_max_strain.py
with
38 additions
and
0 deletions
min_max_strain.py
0 → 100644
+
38
−
0
View file @
a1c3a648
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
#
# extract principal strains from results
# (run this script in the workspace folder)
import
gmsh
import
numpy
as
np
gmsh
.
initialize
()
gmsh
.
merge
(
'
mesh.msh
'
)
gmsh
.
merge
(
'
smooth_strain_tensor.msh
'
)
dataType
,
tags
,
data
,
time
,
numComp
=
gmsh
.
view
.
getModelData
(
1
,
0
)
# compute the 3 principal strains from nodal strain tensor
e1s
=
[]
e2s
=
[]
e3s
=
[]
for
epl
in
data
:
[
xx
,
xy
,
xz
,
yx
,
yy
,
yz
,
zx
,
zy
,
zz
]
=
epl
# compute the 3 principal strains
epl
=
np
.
array
([[
xx
,
xy
,
xz
],
[
yx
,
yy
,
yz
],
[
zx
,
zy
,
zz
]])
eigvals
=
np
.
linalg
.
eigvals
(
epl
)
eigvals
=
np
.
sort
(
eigvals
)
e1s
.
append
(
eigvals
[
0
])
e2s
.
append
(
eigvals
[
1
])
e3s
.
append
(
eigvals
[
2
])
e1s
=
np
.
array
(
e1s
)
e2s
=
np
.
array
(
e2s
)
e3s
=
np
.
array
(
e3s
)
# display min of lowest principal strain and max of highest principal strain
print
(
f
'
e1_min =
{
np
.
min
(
e1s
)
}
'
)
print
(
f
'
e3_max =
{
np
.
max
(
e3s
)
}
'
)
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