#include <TriaRef.h>
|
| TriaRef () |
|
| ~TriaRef () |
|
void | GetInputDerivativeValue (IssmDouble *pp, IssmDouble *plist, IssmDouble *xyz_list, Gauss *gauss, int finiteelement) |
|
void | GetInputValue (IssmDouble *pp, IssmDouble *plist, Gauss *gauss, int finiteelement) |
|
void | GetJacobian (IssmDouble *J, IssmDouble *xyz_list, Gauss *gauss) |
|
void | GetJacobianDeterminant (IssmDouble *Jdet, IssmDouble *xyz_list, Gauss *gauss) |
|
void | GetJacobianDeterminant3D (IssmDouble *Jdet, IssmDouble *xyz_list, Gauss *gauss) |
|
void | GetJacobianInvert (IssmDouble *Jinv, IssmDouble *xyz_list, Gauss *gauss) |
|
void | GetNodalFunctions (IssmDouble *basis, Gauss *gauss, int finiteelement) |
|
void | GetNodalFunctionsDerivatives (IssmDouble *dbasis, IssmDouble *xyz_list, Gauss *gauss, int finiteelement) |
|
void | GetNodalFunctionsDerivativesReference (IssmDouble *dbasis, Gauss *gauss, int finiteelement) |
|
void | GetSegmentJacobianDeterminant (IssmDouble *Jdet, IssmDouble *xyz_list, Gauss *gauss) |
|
void | GetSegmentNodalFunctions (IssmDouble *basis, Gauss *gauss, int index1, int index2, int finiteelement) |
|
void | GetSegmentNodalFunctionsDerivatives (IssmDouble *dbasis, IssmDouble *xyz_list_tria, Gauss *gauss, int index1, int index2, int finiteelement) |
|
void | Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction) |
|
void | NodeOnEdgeIndices (int *pnumindices, int **pindices, int index, int finiteelement) |
|
int | NumberofNodes (int finiteelement) |
|
int | PressureInterpolation (int fe_stokes) |
|
int | TensorInterpolation (int fe_stokes) |
|
int | VelocityInterpolation (int fe_stokes) |
|
Definition at line 11 of file TriaRef.h.
◆ TriaRef()
◆ ~TriaRef()
◆ GetInputDerivativeValue()
Definition at line 34 of file TriaRef.cpp.
59 for(
int i=0;i<numnodes;i++) dpx += dbasis[0*numnodes+i]*plist[i];
60 for(
int i=0;i<numnodes;i++) dpy += dbasis[1*numnodes+i]*plist[i];
◆ GetInputValue()
Definition at line 68 of file TriaRef.cpp.
84 for(
int i=0;i<numnodes;i++) value += basis[i]*plist[i];
◆ GetJacobian()
Definition at line 90 of file TriaRef.cpp.
101 J[2*0+0] = 0.5*(x2-x1);
102 J[2*1+0] =
SQRT3/6.0*(2*x3-x1-x2);
103 J[2*0+1] = 0.5*(y2-y1);
104 J[2*1+1] =
SQRT3/6.0*(2*y3-y1-y2);
◆ GetJacobianDeterminant()
◆ GetJacobianDeterminant3D()
◆ GetJacobianInvert()
◆ GetNodalFunctions()
void TriaRef::GetNodalFunctions |
( |
IssmDouble * |
basis, |
|
|
Gauss * |
gauss, |
|
|
int |
finiteelement |
|
) |
| |
Definition at line 147 of file TriaRef.cpp.
154 GaussTria* gauss = xDynamicCast<GaussTria*>(gauss_in);
156 switch(finiteelement){
◆ GetNodalFunctionsDerivatives()
Definition at line 202 of file TriaRef.cpp.
222 for(
int i=0;i<numnodes;i++){
223 dbasis[numnodes*0+i] = Jinv[0][0]*dbasis_ref[0*numnodes+i]+Jinv[0][1]*dbasis_ref[1*numnodes+i];
224 dbasis[numnodes*1+i] = Jinv[1][0]*dbasis_ref[0*numnodes+i]+Jinv[1][1]*dbasis_ref[1*numnodes+i];
◆ GetNodalFunctionsDerivativesReference()
void TriaRef::GetNodalFunctionsDerivativesReference |
( |
IssmDouble * |
dbasis, |
|
|
Gauss * |
gauss, |
|
|
int |
finiteelement |
|
) |
| |
Definition at line 314 of file TriaRef.cpp.
322 GaussTria* gauss = xDynamicCast<GaussTria*>(gauss_in);
324 switch(finiteelement){
◆ GetSegmentJacobianDeterminant()
Definition at line 229 of file TriaRef.cpp.
238 *Jdet = .5*sqrt(pow(x2-x1,2) + pow(y2-y1,2));
239 if(*Jdet<0)
_error_(
"negative jacobian determinant!");
◆ GetSegmentNodalFunctions()
void TriaRef::GetSegmentNodalFunctions |
( |
IssmDouble * |
basis, |
|
|
Gauss * |
gauss, |
|
|
int |
index1, |
|
|
int |
index2, |
|
|
int |
finiteelement |
|
) |
| |
Definition at line 243 of file TriaRef.cpp.
253 IssmDouble* triabasis=xNew<IssmDouble>(numnodes);
256 switch(finiteelement){
258 basis[0]=triabasis[0];
259 xDelete<IssmDouble>(triabasis);
262 basis[0]=triabasis[index1];
263 basis[1]=triabasis[index2];
264 xDelete<IssmDouble>(triabasis);
267 basis[0]=triabasis[index1];
268 basis[1]=triabasis[index2];
269 xDelete<IssmDouble>(triabasis);
273 basis[0]=triabasis[index1];
274 basis[1]=triabasis[index2];
275 basis[2]=triabasis[3+index2-1];
276 xDelete<IssmDouble>(triabasis);
283 xDelete<IssmDouble>(triabasis);
◆ GetSegmentNodalFunctionsDerivatives()
void TriaRef::GetSegmentNodalFunctionsDerivatives |
( |
IssmDouble * |
dbasis, |
|
|
IssmDouble * |
xyz_list_tria, |
|
|
Gauss * |
gauss, |
|
|
int |
index1, |
|
|
int |
index2, |
|
|
int |
finiteelement |
|
) |
| |
Definition at line 286 of file TriaRef.cpp.
296 IssmDouble* dtriabasis=xNew<IssmDouble>(2*numnodes);
299 switch(finiteelement){
301 dbasis[2*0+0] = dtriabasis[numnodes*0+index1];
302 dbasis[2*0+1] = dtriabasis[numnodes*1+index1];
303 dbasis[2*1+0] = dtriabasis[numnodes*0+index2];
304 dbasis[2*1+1] = dtriabasis[numnodes*1+index2];
311 xDelete<IssmDouble>(dtriabasis);
◆ Marshall()
void TriaRef::Marshall |
( |
char ** |
pmarshalled_data, |
|
|
int * |
pmarshalled_data_size, |
|
|
int |
marshall_direction |
|
) |
| |
|
inline |
◆ NodeOnEdgeIndices()
void TriaRef::NodeOnEdgeIndices |
( |
int * |
pnumindices, |
|
|
int ** |
pindices, |
|
|
int |
index, |
|
|
int |
finiteelement |
|
) |
| |
Definition at line 404 of file TriaRef.cpp.
410 switch(finiteelement){
413 indices = xNew<int>(numindices);
428 _error_(
"Edge index provided ("<<index<<
") is not between 0 and 2");
433 indices = xNew<int>(numindices);
451 _error_(
"Edge index provided ("<<index<<
") is not between 0 and 2");
459 *pnumindices = numindices;
◆ NumberofNodes()
int TriaRef::NumberofNodes |
( |
int |
finiteelement | ) |
|
Definition at line 463 of file TriaRef.cpp.
465 switch(finiteelement){
◆ PressureInterpolation()
int TriaRef::PressureInterpolation |
( |
int |
fe_stokes | ) |
|
◆ TensorInterpolation()
int TriaRef::TensorInterpolation |
( |
int |
fe_stokes | ) |
|
◆ VelocityInterpolation()
int TriaRef::VelocityInterpolation |
( |
int |
fe_stokes | ) |
|
The documentation for this class was generated from the following files: