GetParameterDerivativeValue
PURPOSE 
GETPARAMETERDERIVATIVEVALUE - return the derivative value of a parameter at a specified point
SYNOPSIS 
function derivatives=GetParameterDerivativeValue(pentaelem,grid_values,xyz_list,gauss_coord),
DESCRIPTION 
CROSS-REFERENCE INFORMATION 
This function calls:
This function is called by:
- CreateKMatrix CREATEKMATRIX - create the stiffmess matrix for pentaelem
- CreatePVector CREATEPVECTOR - create the load vector for pentaelem
- CreateKMatrix CREATEKMATRIX - create the stiffmess matrix for triaelem
- CreatePVector CREATEPVECTOR - create the load vector for triaelem
SOURCE CODE 
0001 function derivatives=GetParameterDerivativeValue(pentaelem,grid_values,xyz_list,gauss_coord),
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 derivatives=zeros(3,1);
0016
0017
0018 dh1dh6=GetNodalFunctionsDerivativesBasic(pentaelem,xyz_list, gauss_coord);
0019 derivatives(1)=sum(grid_values'.*dh1dh6(1,:));
0020 derivatives(2)=sum(grid_values'.*dh1dh6(2,:));
0021 derivatives(3)=sum(grid_values'.*dh1dh6(3,:));
Generated on Sun 29-Mar-2009 20:22:55 by m2html © 2003