Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef FELIX_VISCOSITY_HPP
00008 #define FELIX_VISCOSITY_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 #include "Sacado_ParameterAccessor.hpp"
00015 #include "Albany_Layouts.hpp"
00016
00017 namespace FELIX {
00024 template<typename EvalT, typename Traits>
00025 class Viscosity : public PHX::EvaluatorWithBaseImpl<Traits>,
00026 public PHX::EvaluatorDerived<EvalT, Traits>,
00027 public Sacado::ParameterAccessor<EvalT, SPL_Traits> {
00028
00029 public:
00030
00031 typedef typename EvalT::ScalarT ScalarT;
00032
00033 Viscosity(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 ScalarT& getValue(const std::string &n);
00042
00043 private:
00044
00045 typedef typename EvalT::MeshScalarT MeshScalarT;
00046
00047 ScalarT homotopyParam;
00048
00049
00050 double A;
00051 double n;
00052
00053
00054 PHX::MDField<ScalarT,Cell,QuadPoint,Dim,Dim> VGrad;
00055 PHX::MDField<MeshScalarT,Cell,QuadPoint, Dim> coordVec;
00056
00057
00058 PHX::MDField<ScalarT,Cell,QuadPoint> mu;
00059
00060 unsigned int numQPs, numDims, numNodes;
00061
00062 enum VISCTYPE {CONSTANT, GLENSLAW};
00063 VISCTYPE visc_type;
00064
00065 };
00066 }
00067
00068 #endif