Skip to content
Snippets Groups Projects
Commit 7aacf2a0 authored by preischig's avatar preischig
Browse files

gtStrainPlaneNormals: now also outputs the reference vectors


Signed-off-by: default avatarpreischig <preischig@gmail.com>
parent 853402d6
No related branches found
No related tags found
No related merge requests found
function [pldef, drel] = gtStrainPlaneNormals(pl, defT)
function [pldef, drel, e1, e2] = gtStrainPlaneNormals(pl, defT)
% GTSTRAINPLANENORMALS Given a deformation tensor, calculates new plane
% normals with no approximations.
%
......@@ -17,8 +17,10 @@ function [pldef, drel] = gtStrainPlaneNormals(pl, defT)
% defT - deformation tensor(s) (3x3 or 3x3xn)
%
% OUTPUT
% pldef - plane normals in deformed state
% drel - relative elongations along the (deformed) plane normals
% pldef - plane normals in deformed state (3xn)
% drel - relative elongations along the (deformed) plane normals (1xn)
% e1 - reference vectors 1, perpendicular to pl; not normalised; (3xn)
% e2 - reference vectors 2, perpendicular to pl and e1; not normalised; (3xn)
%
num_pls = size(pl, 2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment