Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef L2_PROJECTION_RESIDUAL_HPP
00008 #define 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 L2ProjectionResidual : public PHX::EvaluatorWithBaseImpl<Traits>,
00027 public PHX::EvaluatorDerived<EvalT, Traits> {
00028
00029 public:
00030
00031 L2ProjectionResidual(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
00047
00048 PHX::MDField<ScalarT,Cell,QuadPoint,Dim,Dim> Pfield;
00049
00050 bool haveSource;
00051 bool haveMechSource;
00052 bool enableTransient;
00053
00054 unsigned int numNodes;
00055 unsigned int numQPs;
00056 unsigned int numDims;
00057 unsigned int worksetSize;
00058
00059
00060 PHX::MDField<ScalarT,Cell,QuadPoint,VecDim> projectedField;
00061
00062
00063 PHX::MDField<ScalarT,Cell,Node,VecDim> TResidual;
00064
00065
00066 };
00067 }
00068
00069 #endif