GetJacobianDeterminant

PURPOSE ^

GETJACOBIANDETERMINANT - computes the determinant of the jacobian for a pentaelem

SYNOPSIS ^

function Jdet=GetJacobianDeterminant(pentaelem,xyz_list,gauss_coord),

DESCRIPTION ^

GETJACOBIANDETERMINANT - computes the determinant of the jacobian for a pentaelem

   Usage:
      Jdet=GetJacobianDeterminant(pentaelem,xyz_list,gauss_coord)

   See also GETJACOBIAN, GETJACOBIANINVERT

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function Jdet=GetJacobianDeterminant(pentaelem,xyz_list,gauss_coord),
0002 %GETJACOBIANDETERMINANT - computes the determinant of the jacobian for a pentaelem
0003 %
0004 %   Usage:
0005 %      Jdet=GetJacobianDeterminant(pentaelem,xyz_list,gauss_coord)
0006 %
0007 %   See also GETJACOBIAN, GETJACOBIANINVERT
0008 
0009 J=GetJacobian(pentaelem,xyz_list,gauss_coord);
0010 Jdet=det(J);
0011 if(Jdet<0),
0012     error('negative jacobian determinant!')
0013 end

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