NeoPZ
pzgradient.cpp
Go to the documentation of this file.
1 /*
2  * pzgradient.cpp
3  * PZ
4  *
5  * Created by Agnaldo on 14/01/13.
6  * Copyright 2013 __MyCompanyName__. All rights reserved.
7  *
8  */
9 
10 #include <iostream>
11 #include <string>
12 
13 #include "pzgradient.h"
14 
16 
17  fCenter.Resize(3,0.);
18  fGradient.Resize(3);
19  fUc=0.;
20  falphaK = 1.;
21 }
22 
24 
25  fUc = cp.fUc;
26  falphaK = cp.falphaK;
27 }
28 
Contains the TPZGradient class which implements the methods to reconstruction gradient.
STATE fUc
Definition: pzgradient.h:23
TPZManVector< STATE, 3 > fGradient
Definition: pzgradient.h:20
Implements a function. Utility.
Definition: pzfunction.h:19
virtual void Resize(const int64_t newsize, const T &object)
Resizes the vector object.
Definition: pzmanvector.h:426
STATE falphaK
Definition: pzgradient.h:26
TPZManVector< REAL, 3 > fCenter
Definition: pzgradient.h:17