You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
223 B
7 lines
223 B
3 years ago
|
function [u0, l0, D0] = material_paras(e0, nu0)
|
||
|
u0 = 0.5*e0/(1+nu0);
|
||
|
l0 = e0*nu0/((1+nu0)*(1-2*nu0));
|
||
|
l0 = 2*u0*l0/(l0+2*u0); % 2d lame paras!!!!
|
||
|
|
||
|
D0 = e0/(1-nu0^2)*[1 nu0 0; nu0 1 0; 0 0 (1-nu0)/2];
|
||
|
end
|