Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef DAMAGE_SOURCE_HPP
00008 #define DAMAGE_SOURCE_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 "Teuchos_ParameterList.hpp"
00016 #include "Epetra_Vector.h"
00017 #include "Sacado_ParameterAccessor.hpp"
00018 #include "Stokhos_KL_ExponentialRandomField.hpp"
00019 #include "Teuchos_Array.hpp"
00020
00021 namespace LCM {
00026 template<typename EvalT, typename Traits>
00027 class DamageSource :
00028 public PHX::EvaluatorWithBaseImpl<Traits>,
00029 public PHX::EvaluatorDerived<EvalT, Traits> {
00030
00031 public:
00032 DamageSource(Teuchos::ParameterList& p);
00033
00034 void postRegistrationSetup(typename Traits::SetupData d,
00035 PHX::FieldManager<Traits>& vm);
00036
00037 void evaluateFields(typename Traits::EvalData d);
00038
00039 private:
00040
00041 typedef typename EvalT::ScalarT ScalarT;
00042 typedef typename EvalT::MeshScalarT MeshScalarT;
00043
00044
00045 PHX::MDField<ScalarT,Cell,QuadPoint> bulkModulus;
00046 PHX::MDField<ScalarT,Cell,QuadPoint> dp;
00047 PHX::MDField<ScalarT,Cell,QuadPoint> seff;
00048 PHX::MDField<ScalarT,Cell,QuadPoint> energy;
00049 PHX::MDField<ScalarT,Cell,QuadPoint> J;
00050 PHX::MDField<ScalarT,Cell,QuadPoint> damageLS;
00051 RealType gc;
00052 PHX::MDField<ScalarT,Cell,QuadPoint> damage;
00053
00054
00055 PHX::MDField<ScalarT,Cell,QuadPoint> source;
00056
00057 std::string sourceName;
00058 std::string damageName;
00059 unsigned int numQPs;
00060 unsigned int numDims;
00061 };
00062 }
00063
00064 #endif