00001 // $Id: FEApp_ExponentialSourceFunction.hpp,v 1.2 2008/08/01 22:57:12 etphipp Exp $ 00002 // $Source: /space/CVS/Trilinos/packages/sacado/example/FEApp/FEApp_ExponentialSourceFunction.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_EXPONENTIALSOURCEFUNCTION_HPP 00033 #define FEAPP_EXPONENTIALSOURCEFUNCTION_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 ExponentialNonlinearFactorParameter; 00045 00049 template <typename ScalarT> 00050 class ExponentialSourceFunction : 00051 public FEApp::AbstractSourceFunction<ScalarT> { 00052 public: 00053 00055 ExponentialSourceFunction( 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 = "Exponential 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< ExponentialNonlinearFactorParameter<ScalarT> > tmp = 00066 Teuchos::rcp(new ExponentialNonlinearFactorParameter<ScalarT>(Teuchos::rcp(this,false))); 00067 paramLib->template addEntry<ScalarT>(name, tmp); 00068 } 00069 }; 00070 00072 virtual ~ExponentialSourceFunction() {}; 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] = -std::exp(alpha)*std::exp(solution[i]); 00080 //value[i] = -1.0; 00081 } 00082 00083 } 00084 00086 void setFactor(const ScalarT& val, bool mark_constant) { 00087 alpha = val; 00088 if (mark_constant) Sacado::MarkConstant<ScalarT>::eval(alpha); 00089 } 00090 00092 const ScalarT& getFactor() const { return alpha; } 00093 00094 private: 00095 00097 ExponentialSourceFunction(const ExponentialSourceFunction&); 00098 00100 ExponentialSourceFunction& operator=(const ExponentialSourceFunction&); 00101 00102 protected: 00103 00105 ScalarT alpha; 00106 00107 }; 00108 00113 template <typename ScalarT> 00114 class ExponentialNonlinearFactorParameter : 00115 public Sacado::ScalarParameterEntry<ScalarT> { 00116 00117 public: 00118 00120 ExponentialNonlinearFactorParameter( 00121 const Teuchos::RCP< ExponentialSourceFunction<ScalarT> >& s) 00122 : srcFunc(s) {} 00123 00125 virtual ~ExponentialNonlinearFactorParameter() {} 00126 00128 virtual void setRealValue(double value) { 00129 setValueAsConstant(ScalarT(value)); } 00130 00132 virtual void setValueAsConstant(const ScalarT& value) { 00133 srcFunc->setFactor(value, true); } 00134 00136 virtual void setValueAsIndependent(const ScalarT& value) { 00137 srcFunc->setFactor(value, false); } 00138 00140 virtual const ScalarT& getValue() const { return srcFunc->getFactor(); } 00141 00142 protected: 00143 00145 Teuchos::RCP< ExponentialSourceFunction<ScalarT> > srcFunc; 00146 00147 }; 00148 00149 } 00150 00151 #endif // FEAPP_CUBICSOURCEFUNCTION_HPP
1.4.7