NeoPZ
pzfstrmatrix.cpp
Go to the documentation of this file.
1 
6 #include "pzfstrmatrix.h"
7 #include "pzfmatrix.h"
8 #include "pzcmesh.h"
9 #include "pzsubcmesh.h"
10 #include <sstream>
11 #include "pzlog.h"
12 
13 #ifdef LOG4CXX
14 static LoggerPtr logger(Logger::getLogger("pz.strmatrix.tpzfstructmatrix"));
15 static LoggerPtr loggerel(Logger::getLogger("pz.strmatrix.element"));
16 #endif
17 
18 
19 using namespace std;
20 
22  int64_t neq = fEquationFilter.NActiveEquations();
23 
24  return new TPZFMatrix<STATE>(neq,neq,0.);
25 }
26 
28 {
29 }
30 
32 {
33 }
34 
36 {
37 }
38 
40  return new TPZFStructMatrix(*this);
41 }
virtual TPZMatrix< STATE > * Create()
Contains definitions to LOGPZ_DEBUG, LOGPZ_INFO, LOGPZ_WARN, LOGPZ_ERROR and LOGPZ_FATAL, and the implementation of the inline InitializePZLOG(string) function using log4cxx library or not. It must to be called out of "#ifdef LOG4CXX" scope.
Contains the TPZFStructMatrix class which implements Full Structural Matrices.
Refines geometrical mesh (all the elements) num times.
Definition: pzstrmatrix.h:35
virtual TPZStructMatrix * Clone()
Contains TPZMatrixclass which implements full matrix (using column major representation).
Contains declaration of TPZCompMesh class which is a repository for computational elements...
Contains declaration of TPZSubCompMesh class which implements a group of computational elements as a ...
Implements computational mesh. Computational Mesh.
Definition: pzcmesh.h:47