Closed azzeddinetiba closed 1 year ago
Yes, the Voight notation in 2D is XX, YY and XY
voigt notation:
3D case:
STRAIN Voigt Notation: e00 e11 e22 2e01 2e12 2*e02 STRESS Voigt Notation: s00 s11 s22 s01 s12 s02
2D plane strain/axisymmetric case (4 stress components)
STRAIN Voigt Notation: e00 e11 e22 2*e01 STRESS Voigt Notation: s00 s11 s22 s01
2D plane stress/strain
STRAIN Voigt Notation: e00 e11 2*e01 STRESS Voigt Notation: s00 s11 s01
What element are you using, some implementations may lack for some variables
I'm using the TotalLagrangianElement2D4N
I'm using the
TotalLagrangianElement2D4N
Should work..., maybe the VTK setting is not correct...
I'm using the
TotalLagrangianElement2D4N
Should work..., maybe the VTK setting is not correct...
Use gauss_point_variables_extrapolated_to_nodes
instead of gauss_point_variables_in_elements
Yes, Sorry, my bad, I was using PK2_STRESS_TENSOR
instead of PK2_STRESS_VECTOR
. It works even with gauss_point_variables_in_elements
Thank you.
Is there a variable for the first Piola Kirchoff stress as well ?
PK2_STRESS_VECTOR
I am not sure if PK1 is the same as KIRCHHOFF_STRESS_VECTOR
PK2_STRESS_VECTOR
I am not sure if PK1 is the same as KIRCHHOFF_STRESS_VECTOR
Nope, they are not the same. PK1 is not symmetrical (half based on the ref and curr conf) and Kirchhoff (full curr config) yes AFAIK
see https://en.wikipedia.org/wiki/Alternative_stress_measures
And it can't be retrieved since it's a tensor and not a vector (like PK2_STRESS_TENSOR
?)
Thatit is true. However when retrieving the vector is doing the conversion as it was symm.
Description In StructuralMechanicsApplication, what is the notation for the Piola Kirchoff stress ? On the json file I used :
On the output using Paraview I only get the
GREEN_LAGRANGE_STRAIN_VECTOR
and nothing else on the elements. Is there smth wrong with the parameters file.The material file has
PS : Is the notation used for the 2D tensors (xx, yy, xy) ? Since I get 3 components.
Scope
Thank you in advance.