NeoPZ
tpzgraphelt3d.cpp
Go to the documentation of this file.
1 
6 #include "tpzgraphelt3d.h"
7 
8 
10 {
11 }
12 
17 void TPZGraphElT3d::QsiEta(TPZVec<int> &i, int imax, TPZVec<REAL> &qsieta)
18 {
19  TPZGraphElQ3dd::QsiEta(i,imax,qsieta);
20  REAL temp[3];
21  temp[0] = (-1.+qsieta[1])*(1.+qsieta[0])*(-1.+qsieta[2])/8.;
22  temp[1] = -(1.+qsieta[1])*(-1.+qsieta[2])/4.;
23  temp[2] = (1.+qsieta[2])/2.;
24  qsieta[0] = temp[0];
25  qsieta[1] = temp[1];
26  qsieta[2] = temp[2];
27 }
28 
29 
virtual void QsiEta(TPZVec< int > &i, int imax, TPZVec< REAL > &qsieta)
This method maps the index of a point to parameter space as a function of the number of divisions...
Contains the TPZGraphElT3d class which implements the graphical representation of a tetrahedra elemen...
virtual void QsiEta(TPZVec< int > &i, int imax, TPZVec< REAL > &qsieta)
This method maps the index of a point to parameter space as a function of the number of divisions...
Definition: pzgraphel.cpp:62
~TPZGraphElT3d()
Default destructor.