00001 // $Id: FEApp_QuadraticSourceFunction.hpp,v 1.2 2007/07/10 23:17:18 etphipp Exp $ 00002 // $Source: /space/CVS/Trilinos/packages/sacado/example/FEApp/FEApp_QuadraticSourceFunction.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_QUADRATICSOURCEFUNCTION_HPP 00033 #define FEAPP_QUADRATICSOURCEFUNCTION_HPP 00034 00035 #include "FEApp_AbstractSourceFunction.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 QuadraticNonlinearFactorParameter; 00045 00049 template <typename ScalarT> 00050 class QuadraticSourceFunction : 00051 public FEApp::AbstractSourceFunction<ScalarT> { 00052 public: 00053 00055 QuadraticSourceFunction( 00056 const ScalarT& factor, 00057 const Teuchos::RCP<Sacado::ScalarParameterLibrary>& paramLib) : 00058 alpha(factor) 00059 { 00060 // Add nonlinear factor to parameter library 00061 std::string name = "Quadratic Source Function Nonlinear Factor"; 00062 if (!paramLib->isParameter(name)) 00063 paramLib->addParameterFamily(name, true, false); 00064 if (!paramLib->template isParameterForType<ScalarT>(name)) { 00065 Teuchos::RCP< QuadraticNonlinearFactorParameter<ScalarT> > tmp = 00066 Teuchos::rcp(new QuadraticNonlinearFactorParameter<ScalarT>(Teuchos::rcp(this,false))); 00067 paramLib->template addEntry<ScalarT>(name, tmp); 00068 } 00069 }; 00070 00072 virtual ~QuadraticSourceFunction() {}; 00073 00075 virtual void 00076 evaluate(const std::vector<ScalarT>& solution, 00077 std::vector<ScalarT>& value) const { 00078 for (unsigned int i=0; i<solution.size(); i++) 00079 value[i] = alpha*solution[i]*solution[i]; 00080 } 00081 00083 void setFactor(const ScalarT& val, bool mark_constant) { 00084 alpha = val; 00085 if (mark_constant) Sacado::MarkConstant<ScalarT>::eval(alpha); 00086 } 00087 00089 const ScalarT& getFactor() const { return alpha; } 00090 00091 private: 00092 00094 QuadraticSourceFunction(const QuadraticSourceFunction&); 00095 00097 QuadraticSourceFunction& operator=(const QuadraticSourceFunction&); 00098 00099 protected: 00100 00102 ScalarT alpha; 00103 00104 }; 00105 00110 template <typename ScalarT> 00111 class QuadraticNonlinearFactorParameter : 00112 public Sacado::ScalarParameterEntry<ScalarT> { 00113 00114 public: 00115 00117 QuadraticNonlinearFactorParameter( 00118 const Teuchos::RCP< QuadraticSourceFunction<ScalarT> >& s) : 00119 srcFunc(s) {} 00120 00122 virtual ~QuadraticNonlinearFactorParameter() {} 00123 00125 virtual void setRealValue(double value) { 00126 setValueAsConstant(ScalarT(value)); } 00127 00129 virtual void setValueAsConstant(const ScalarT& value) { 00130 srcFunc->setFactor(value, true); } 00131 00133 virtual void setValueAsIndependent(const ScalarT& value) { 00134 srcFunc->setFactor(value, false); } 00135 00137 virtual const ScalarT& getValue() const { return srcFunc->getFactor(); } 00138 00139 protected: 00140 00142 Teuchos::RCP< QuadraticSourceFunction<ScalarT> > srcFunc; 00143 00144 }; 00145 00146 } 00147 00148 #endif // FEAPP_QUADRATICSOURCEFUNCTION_HPP
1.4.7