Incorporate plasticity model. Update the tests

This commit is contained in:
Irlan
2019-05-22 18:16:47 -03:00
parent e0d2f9f512
commit 494fa0baa9
5 changed files with 110 additions and 4 deletions

View File

@ -33,7 +33,10 @@ public:
def.mesh = &m_mesh;
def.density = 0.2f;
def.E = 100.0f;
def.nu = 0.33f;
def.nu = 0.33f;
def.c_yield = 0.1f;
def.c_creep = 0.5f;
def.c_max = 1.0f;
m_body = new b3SoftBody(def);

View File

@ -39,6 +39,9 @@ public:
def.density = 0.2f;
def.E = 100.0f;
def.nu = 0.33f;
def.c_yield = 0.6f;
def.c_creep = 1.0f;
def.c_max = 1.0f;
m_body = new b3SoftBody(def);