https://github.com/AlexandreMercierAubin/AdaptiveRigidification2022
Tip revision: 6207aed1ab8e0701a17e8642a5c5bf761e3bec1c authored by Alexandre Mercier Aubin on 14 July 2023, 16:40:31 UTC
Update README.md
Update README.md
Tip revision: 6207aed
toLame.m
function [mu, lambda] = toLame(nu, E)
% TOLAME Converts Poisson ratio and nu and Young's modulus E to Lamé
% parameters.
mu = E / 2 / (1 + nu);
lambda = E * nu / (1 + nu) / (1 - 2 * nu);
% Can also use Bartels: [lambda, mu] = emu_to_lame(E,nu);
end