![]() |
OptFEM2DP1 Toolbox
V1.2
Matlab/Octave Optimized P1-Lagrange Finite Element Method in 2D
|
Computation of Lame coefficients from Young's modulus and Poisson's ratio. More...
Go to the source code of this file.
Functions | |
function [
lambda , mu ] = | Compute_Lame (E, nu, alpha) |
Computation of Lame coefficients from Young's modulus and Poisson's ratio. |
Computation of Lame coefficients from Young's modulus and Poisson's ratio.
Definition in file Compute_Lame.m.
function [ lambda , mu ] = Compute_Lame | ( | E, | |
nu, | |||
alpha | |||
) |
Computation of Lame coefficients from Young's modulus and Poisson's ratio.
Th=SquareMesh(10); E=2.1*1e11; nu=0.27; alpha=1; [lambda,mu]=Compute_Lame(E,nu,alpha); Num=0; K=StiffElasAssemblingP1base(Th.nq,Th.nme,Th.q,Th.me,Th.areas,lambda,mu,Num);
E | Young's modulus |
nu | Poisson's ratio |
alpha | parameter such that alpha=1 <=> plane strain, alpha=0 <=> plane stress |
lambda | First Lame coefficient in Hooke's law |
mu | Second Lame coefficient in Hooke's law |
Definition at line 17 of file Compute_Lame.m.