OptFEM3DP1 Toolbox  V1.0
Matlab/Octave Optimized P1-Lagrange Finite Element Method in 3D
 All Files Functions Variables Pages
Hooke.m
Go to the documentation of this file.
1 function H=Hooke(lambda,mu);
2 % Copyright:
3 % See \ref license
4 d=lambda+2*mu;
5 H=zeros(6,6);
6 H(1:3,1:3)=lambda*ones(3,3)+2*mu*eye(3,3);
7 H(4,4)=mu;H(5,5)=mu;H(6,6)=mu;