


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

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];