00001 // $Id: FEApp_ConstantFunction.hpp,v 1.1 2008/08/01 22:57:12 etphipp Exp $ 00002 // $Source: /space/CVS/Trilinos/packages/sacado/example/FEApp/FEApp_ConstantFunction.hpp,v $ 00003 // @HEADER 00004 // *********************************************************************** 00005 // 00006 // Sacado Package 00007 // Copyright (2006) Sandia Corporation 00008 // 00009 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00010 // the U.S. Government retains certain rights in this software. 00011 // 00012 // This library is free software; you can redistribute it and/or modify 00013 // it under the terms of the GNU Lesser General Public License as 00014 // published by the Free Software Foundation; either version 2.1 of the 00015 // License, or (at your option) any later version. 00016 // 00017 // This library is distributed in the hope that it will be useful, but 00018 // WITHOUT ANY WARRANTY; without even the implied warranty of 00019 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00020 // Lesser General Public License for more details. 00021 // 00022 // You should have received a copy of the GNU Lesser General Public 00023 // License along with this library; if not, write to the Free Software 00024 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00025 // USA 00026 // Questions? Contact David M. Gay (dmgay@sandia.gov) or Eric T. Phipps 00027 // (etphipp@sandia.gov). 00028 // 00029 // *********************************************************************** 00030 // @HEADER 00031 00032 #ifndef FEAPP_CONSTANTFUNCTION_HPP 00033 #define FEAPP_CONSTANTFUNCTION_HPP 00034 00035 #include "FEApp_AbstractFunction.hpp" 00036 00037 #include "Teuchos_RCP.hpp" 00038 #include "Sacado_ScalarParameterLibrary.hpp" 00039 #include "Sacado_ScalarParameterEntry.hpp" 00040 #include "Sacado_Traits.hpp" 00041 00042 namespace FEApp { 00043 00044 template <typename ScalarT> class ConstantFunctionParameter; 00045 00049 template <typename ScalarT> 00050 class ConstantFunction : 00051 public FEApp::AbstractFunction<ScalarT> { 00052 public: 00053 00055 ConstantFunction( 00056 const ScalarT& value, 00057 const Teuchos::RCP<Sacado::ScalarParameterLibrary>& paramLib) : 00058 val(value) 00059 { 00060 // Add val to parameter library 00061 std::string name = "Constant Function Value"; 00062 if (!paramLib->isParameter(name)) 00063 paramLib->addParameterFamily(name, true, false); 00064 if (!paramLib->template isParameterForType<ScalarT>(name)) { 00065 Teuchos::RCP< ConstantFunctionParameter<ScalarT> > tmp = 00066 Teuchos::rcp(new ConstantFunctionParameter<ScalarT>(Teuchos::rcp(this,false))); 00067 paramLib->template addEntry<ScalarT>(name, tmp); 00068 } 00069 }; 00070 00072 virtual ~ConstantFunction() {}; 00073 00075 virtual void 00076 evaluate(const std::vector<double>& quad_points, 00077 std::vector<ScalarT>& value) const { 00078 for (unsigned int i=0; i<quad_points.size(); i++) { 00079 value[i] = val; 00080 } 00081 } 00082 00084 void setValue(const ScalarT& value, bool mark_constant) { 00085 val = value; 00086 if (mark_constant) Sacado::MarkConstant<ScalarT>::eval(val); 00087 } 00088 00090 const ScalarT& getValue() const { return val; } 00091 00092 private: 00093 00095 ConstantFunction(const ConstantFunction&); 00096 00098 ConstantFunction& operator=(const ConstantFunction&); 00099 00100 protected: 00101 00103 ScalarT val; 00104 00105 }; 00106 00111 template <typename ScalarT> 00112 class ConstantFunctionParameter : 00113 public Sacado::ScalarParameterEntry<ScalarT> { 00114 00115 public: 00116 00118 ConstantFunctionParameter( 00119 const Teuchos::RCP< ConstantFunction<ScalarT> >& s) : 00120 func(s) {} 00121 00123 virtual ~ConstantFunctionParameter() {} 00124 00126 virtual void setRealValue(double value) { 00127 setValueAsConstant(ScalarT(value)); } 00128 00130 virtual void setValueAsConstant(const ScalarT& value) { 00131 func->setValue(value, true); } 00132 00134 virtual void setValueAsIndependent(const ScalarT& value) { 00135 func->setValue(value, false); } 00136 00138 virtual const ScalarT& getValue() const { return func->getValue(); } 00139 00140 protected: 00141 00143 Teuchos::RCP< ConstantFunction<ScalarT> > func; 00144 00145 }; 00146 00147 } 00148 00149 #endif // FEAPP_CONSTANTFUNCTION_HPP
1.4.7