Skip to content

Yeoh

Regularized Yeoh Material For Compressible Rubbers

The following strain energy density is used.

W=i=1nCi0(J13)i+i=1nCi1(J31)2i.

where Ci0 and Ci1 are material constants. J1 and J3 are reduced invariants of the right Cauchy-Green deformation tensor.

Syntax

Text Only
1
2
3
material Yeoh (1) (2...)
# (1) int, unique material tag
# (2...) double, material constants with possible density

Remarks

  1. The above command takes input list of arbitrary length (2, excluding tag).
  2. If the number of double inputs is odd, the last one is interpreted as density.
  3. If the number of double inputs is even, the density is assumed to be zero.
  4. The first half of double inputs is read as Ci0 and the second half Ci1.

Examples

For i=1, let C10=20 and C11=4000, the strain energy density is

W=20(J13)+4000(J31)2.

The following command shall be used.

Text Only
material Yeoh 1 20 4000

If density is nonzero, say for example ρ=104, then the following command shall be used.

Text Only
material Yeoh 1 20 4000 1E-4

For i=3, let C10=20, C20=30, C30=40, C11=2000,C21=3000 and C31=4000, the strain energy density is

W=20(J13)+30(J13)2+40(J13)3+2000(J31)2+3000(J31)4+4000(J31)6.

The following command shall be used.

Text Only
material Yeoh 1 20 30 40 2000 3000 4000