GetJacobianInvert

PURPOSE ^

GETJACOBIANINVERT - computes the invert of the jacobian for a triaelem

SYNOPSIS ^

function Jinv=GetJacobianInvert(triaelem,xyz_list,gauss_l1l2l3)

DESCRIPTION ^

GETJACOBIANINVERT - computes the invert of the jacobian for a triaelem

   Usage:
      Jinv=GetJacobianInvert(triaelem,z_list,gauss_coord)

   See also GETJACOBIAN, GETJACOBIANDETERMINANT

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function Jinv=GetJacobianInvert(triaelem,xyz_list,gauss_l1l2l3)
0002 %GETJACOBIANINVERT - computes the invert of the jacobian for a triaelem
0003 %
0004 %   Usage:
0005 %      Jinv=GetJacobianInvert(triaelem,z_list,gauss_coord)
0006 %
0007 %   See also GETJACOBIAN, GETJACOBIANDETERMINANT
0008 
0009 %Call Jacobian routine to get the jacobian:*/
0010 J=GetJacobian(triaelem,xyz_list,gauss_l1l2l3);
0011 Jinv=J^(-1);

Generated on Sun 29-Mar-2009 20:22:55 by m2html © 2003