GetNodalFunctions

PURPOSE ^

GETNODALFUNCTIONS - return the values of nodal functions at gaussian point on the reference element

SYNOPSIS ^

function l1l6=GetNodalFunctions(pentaelem,gauss_coord)

DESCRIPTION ^

GETNODALFUNCTIONS - return the values of nodal functions at gaussian point on the reference element

   Usage:
      l1l6=GetNodalFunctions(pentaelem,gauss_coord)

   See also GETNODALFUNCTIONSSTOKES, GETNODALFUNCTIONSDERIVATIVESPARAMS, GETNODALFUNCTIONSDERIVATIVESBASIC

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function l1l6=GetNodalFunctions(pentaelem,gauss_coord)
0002 %GETNODALFUNCTIONS - return the values of nodal functions at gaussian point on the reference element
0003 %
0004 %   Usage:
0005 %      l1l6=GetNodalFunctions(pentaelem,gauss_coord)
0006 %
0007 %   See also GETNODALFUNCTIONSSTOKES, GETNODALFUNCTIONSDERIVATIVESPARAMS, GETNODALFUNCTIONSDERIVATIVESBASIC
0008 
0009 l1l6=[gauss_coord(1,1)*(1- gauss_coord(1,4))/2,  gauss_coord(1,2)*(1- gauss_coord(1,4))/2,  gauss_coord(1,3)*(1- gauss_coord(1,4))/2, ...
0010     gauss_coord(1,1)*(1+ gauss_coord(1,4))/2,  gauss_coord(1,2)*(1+gauss_coord(1,4))/2,  gauss_coord(1,3)*(1+ gauss_coord(1,4))/2];

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