14class TPM :
public Problem<SC,LO,GO,NO> {
19 typedef Problem<SC,LO,GO,NO> Problem_Type;
20 typedef typename Problem_Type::Matrix_Type Matrix_Type;
21 typedef typename Problem_Type::MatrixPtr_Type MatrixPtr_Type;
22 typedef typename Problem_Type::Map_Type Map_Type;
23 typedef typename Problem_Type::MapPtr_Type MapPtr_Type;
24 typedef typename Problem_Type::MapConstPtr_Type MapConstPtr_Type;
26 typedef typename Problem_Type::BlockMatrix_Type BlockMatrix_Type;
28 typedef typename Problem_Type::MultiVector_Type MultiVector_Type;
29 typedef typename Problem_Type::MultiVectorPtr_Type MultiVectorPtr_Type;
30 typedef typename Problem_Type::MultiVectorConstPtr_Type MultiVectorConstPtr_Type;
32 typedef typename Problem_Type::DomainConstPtr_Type DomainConstPtr_Type;
33 typedef typename Problem_Type::CommConstPtr_Type CommConstPtr_Type;
35 TPM(
const DomainConstPtr_Type &domainVelocity, std::string FETypeVelocity,
const DomainConstPtr_Type &domainPressure, std::string FETypePressure, ParameterListPtr_Type parameterList );
41 virtual void assemble( std::string type )
const;
45 virtual void getValuesOfInterest( vec_dbl_Type& values ){};
47 virtual void computeValuesOfInterestAndExport() {};
50 mutable MultiVectorPtr_Type u_repNewton_;
51 mutable MultiVectorPtr_Type p_repNewton_;
52 mutable MultiVectorPtr_Type u_repTime_;
53 mutable MultiVectorPtr_Type p_repTime_;