FEM-Course-Matlab/3.1matlab矩形薄板小挠度弯曲有限元编程(边界条.../四边简支/hooke.m

16 lines
444 B
Mathematica
Raw Normal View History

2024-01-28 16:46:36 +00:00
function [D]=hooke(E,v)
% D=hooke(E,v)
%-------------------------------------------------------------
% PURPOSE
% Calculate the material matrix for a linear
% elastic and isotropic material.
%
% INPUT: E : Young's modulus
% v : Poissons const.
%
% OUTPUT: D : material matrix
%-------------------------------------------------------------
D=E/(1-v^2)*[1 v 0;v 1 0;0 0 (1-v)/2];
%--------------------------end--------------------------------