NeoPZ
convtest.h
Go to the documentation of this file.
1 
6 #ifndef CONVTEST_H
7 #define CONVTEST_H
8 
9 #include "pzvec.h"
10 
11 class TPZGeoEl;
12 class TPZGeoElSide;
13 
19 class ConvTest {
20 
21 public:
22 
24  ConvTest();
26  ~ConvTest();
27 
29  void JacobianConv(TPZGeoEl &Object, TPZVec< REAL > QsiEta);
31  void JacobianConv(TPZGeoElSide &Object, TPZVec< REAL > QsiEta);
32 
33 };
34 
35 #endif
void JacobianConv(TPZGeoEl &Object, TPZVec< REAL > QsiEta)
Evaluates the Jacobian by obtained Convergence Order.
Definition: convtest.cpp:19
ConvTest()
Default constructor.
Definition: convtest.cpp:7
Templated vector implementation.
Utility class which represents an element with its side. The Geometric approximation classes Geometry...
Definition: pzgeoelside.h:83
Defines the behaviour of all geometric elements. GeometryTPZGeoEl is the common denominator for all g...
Definition: pzgeoel.h:43
~ConvTest()
Default destructor.
Definition: convtest.cpp:12
Implements methods to evaluate jacobians by obtained convergence order to geometric element...
Definition: convtest.h:19