Sunteți pe pagina 1din 6

.2.

14 Stress-strain relations for linear elastic Transversely Isotropic Material

A special case of an orthotropic solid is one that contains a plane of isotropy (this implies that the solid can be rotated with respect to the loading direction about one axis without measurable effect on the solids response). Choose requires that , , so that the stiffness matrix has the form perpendicular to this symmetry plane. Then, transverse isotropy , ,

The engineering constants must satisfy

and the compliance matrix has the form

where before the Poissons ratios are not symmetric, but satisfy

As

The engineering constants and stiffnesses are related by

For this material the two thermal expansion coefficients in the symmetry plane must be equal, so the thermal expansion coefficient tensor has the form

% function C = makeTransversallyIsotropicStiffnessTensor(El, Et, Glt, Gtt, nutl) % % Return the elasticity tensor for an transversely isotropic material with % El: longitudinal modulus % Et: modulus in the transverse plane % Glt: shear modulus in longitudinal direction with the transversal plane. % Gtt: shear modulus in the transversal plane % nutl: minor (lower triangular) Poisson's ratio %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (C) 2011, Maarten Moesen % % All rights reserved. % % % % Author(s): Maarten Moesen % % E-mail: moesen.maarten@gmail.com % % % % This file is part of MMTensor. % % % % % Redistribution and use in source and binary forms, with or without % % modification, are permitted provided that the following conditions are % % met: % % * Redistributions of source code must retain the above copyright % % notice, this list of conditions and the following disclaimer. % % * Redistributions in binary form must reproduce the above copyright % % notice, this list of conditions and the following disclaimer in % % the documentation and/or other materials provided with the % % distribution. % % * Neither the name of the Katholieke Universiteit Leuven nor the % % names of its contributors may be used to endorse or promote % % products derived from this software without specific prior written % % permission. % % % % THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS % % "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT % % LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A % % PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KATHOLIEKE % % UNIVERSITEIT LEUVEN BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, % % SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED % % TO, PROCUREMENT OF SUBSTITUTE GOODS ORSERVICES; LOSS OF USE, DATA, OR % % PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF % % LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING % % NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS %

% SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function C = makeTransversallyIsotropicStiffnessTensor(El, Et, Glt, Gtt, nutl) C = zeros(6,6); if (El == 0 || Et == 0 || Gtt == 0) return end S = zeros(3,3); nu12 = 0.5*Et/Gtt-1; S(1,1) = 1/Et; S(2,2) = 1/Et; S(3,3) = 1/El; S(1,2) S(2,1) S(3,1) S(1,3) S(3,2) S(2,3) = = = = = = -nu12*S(2,2); S(1,2); -nutl/Et; S(3,1); S(3,1); S(3,2);

S = inv(S); C(1:3,1:3) = S; C(4,4) = 2*Glt; C(5,5) = 2*Glt; C(6,6) = 2*Gtt; end

Elasticity of Transversely Isotropic Materials.pdf

S-ar putea să vă placă și