ElasticOrthotropic

class compas_fea.structure.ElasticOrthotropic(name, Ex, Ey, Ez, vxy, vyz, vzx, Gxy, Gyz, Gzx, p, tension=True, compression=True)[source]

Bases: compas_fea.structure.material.Material

Elastic, orthotropic and homogeneous material.

Parameters
  • name (str) – Material name.

  • Ex (float) – Young’s modulus Ex in x direction [Pa].

  • Ey (float) – Young’s modulus Ey in y direction [Pa].

  • Ez (float) – Young’s modulus Ez in z direction [Pa].

  • vxy (float) – Poisson’s ratio vxy in x-y directions [-].

  • vyz (float) – Poisson’s ratio vyz in y-z directions [-].

  • vzx (float) – Poisson’s ratio vzx in z-x directions [-].

  • Gxy (float) – Shear modulus Gxy in x-y directions [Pa].

  • Gyz (float) – Shear modulus Gyz in y-z directions [Pa].

  • Gzx (float) – Shear modulus Gzx in z-x directions [Pa].

  • p (float) – Density [kg/m3].

  • tension (bool) – Can take tension.

  • compression (bool) – Can take compression.

Notes

  • Can be created but is currently not implemented.