Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef PHAL_ODERESID_HPP
00008 #define PHAL_ODERESID_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 "PHAL_AlbanyTraits.hpp"
00016
00017 #include "PHAL_Dimension.hpp"
00018
00019 #include "Teuchos_ParameterList.hpp"
00020
00021 namespace PHAL {
00022
00023 template<typename EvalT, typename Traits>
00024 class ODEResid :
00025 public PHX::EvaluatorWithBaseImpl<Traits>,
00026 public PHX::EvaluatorDerived<EvalT, Traits> {
00027
00028 public:
00029
00030 ODEResid(Teuchos::ParameterList& p);
00031
00032 void postRegistrationSetup(typename Traits::SetupData d,
00033 PHX::FieldManager<Traits>& vm);
00034
00035 void evaluateFields(typename Traits::EvalData ud);
00036
00037 private:
00038
00039 typedef typename EvalT::ScalarT ScalarT;
00040
00041 PHX::MDField<ScalarT,Cell,Node> X;
00042 PHX::MDField<ScalarT,Cell,Node> X_dot;
00043 PHX::MDField<ScalarT,Cell,Node> Y;
00044 PHX::MDField<ScalarT,Cell,Node> Y_dot;
00045 PHX::MDField<ScalarT,Cell,Node> Xoderesid;
00046 PHX::MDField<ScalarT,Cell,Node> Yoderesid;
00047
00048 };
00049 }
00050
00051 #endif