Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef FELIX_STOKESCONTRAVARIENTMETRICTENSOR_HPP
00008 #define FELIX_STOKESCONTRAVARIENTMETRICTENSOR_HPP
00009
00010 #include "Phalanx_ConfigDefs.hpp"
00011 #include "Phalanx_Evaluator_WithBaseImpl.hpp"
00012 #include "Phalanx_Evaluator_Derived.hpp"
00013 #include "Phalanx_MDField.hpp"
00014
00015 #include "Intrepid_CellTools.hpp"
00016 #include "Intrepid_Cubature.hpp"
00017 #include "Albany_Layouts.hpp"
00018
00019 namespace FELIX {
00026 template<typename EvalT, typename Traits>
00027 class StokesContravarientMetricTensor :
00028 public PHX::EvaluatorWithBaseImpl<Traits>,
00029 public PHX::EvaluatorDerived<EvalT, Traits> {
00030
00031 public:
00032
00033 StokesContravarientMetricTensor(const Teuchos::ParameterList& p,
00034 const Teuchos::RCP<Albany::Layouts>& dl);
00035
00036 void postRegistrationSetup(typename Traits::SetupData d,
00037 PHX::FieldManager<Traits>& vm);
00038
00039 void evaluateFields(typename Traits::EvalData d);
00040
00041 private:
00042
00043 typedef typename EvalT::MeshScalarT MeshScalarT;
00044 int numDims, numQPs;
00045
00046
00048 PHX::MDField<MeshScalarT,Cell,Vertex,Dim> coordVec;
00049 Teuchos::RCP<Intrepid::Cubature<RealType> > cubature;
00050 Teuchos::RCP<shards::CellTopology> cellType;
00051
00052
00053 Intrepid::FieldContainer<RealType> refPoints;
00054 Intrepid::FieldContainer<RealType> refWeights;
00055 Intrepid::FieldContainer<MeshScalarT> jacobian;
00056 Intrepid::FieldContainer<MeshScalarT> jacobian_inv;
00057
00058
00059 PHX::MDField<MeshScalarT,Cell,QuadPoint,Dim,Dim> Gc;
00060 };
00061 }
00062
00063 #endif