Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef SCALAR_L2_PROJECTION_RESIDUAL_HPP
00008 #define SCALAR_L2_PROJECTION_RESIDUAL_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
00018 namespace LCM {
00025 template<typename EvalT, typename Traits>
00026 class ScalarL2ProjectionResidual : public PHX::EvaluatorWithBaseImpl<Traits>,
00027 public PHX::EvaluatorDerived<EvalT, Traits> {
00028
00029 public:
00030
00031 ScalarL2ProjectionResidual(const Teuchos::ParameterList& p);
00032
00033 void postRegistrationSetup(typename Traits::SetupData d,
00034 PHX::FieldManager<Traits>& vm);
00035
00036 void evaluateFields(typename Traits::EvalData d);
00037
00038 private:
00039
00040 typedef typename EvalT::ScalarT ScalarT;
00041 typedef typename EvalT::MeshScalarT MeshScalarT;
00042
00043
00044 PHX::MDField<MeshScalarT,Cell,Node,QuadPoint> wBF;
00045 PHX::MDField<MeshScalarT,Cell,Node,QuadPoint,Dim> wGradBF;
00046 PHX::MDField<ScalarT,Cell,QuadPoint,Dim, Dim> DefGrad;
00047 PHX::MDField<ScalarT,Cell,QuadPoint> projectedStress;
00048
00049
00050
00051 PHX::MDField<ScalarT,Cell,QuadPoint,Dim,Dim> Pstress;
00052
00053 bool enableTransient;
00054
00055 unsigned int numNodes;
00056 unsigned int numQPs;
00057 unsigned int numDims;
00058 unsigned int worksetSize;
00059
00060
00061 Intrepid::FieldContainer<ScalarT> tauH;
00062
00063
00064 PHX::MDField<ScalarT,Cell,Node> TResidual;
00065
00066
00067 };
00068 }
00069
00070 #endif