FEApp_CubicSourceFunction.hpp

Go to the documentation of this file.
00001 // $Id: FEApp_CubicSourceFunction.hpp,v 1.2 2008/05/16 19:56:56 etphipp Exp $ 
00002 // $Source: /space/CVS/Trilinos/packages/sacado/example/FEApp/FEApp_CubicSourceFunction.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_CUBICSOURCEFUNCTION_HPP
00033 #define FEAPP_CUBICSOURCEFUNCTION_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 CubicNonlinearFactorParameter;
00045 
00049   template <typename ScalarT>
00050   class CubicSourceFunction : 
00051     public FEApp::AbstractSourceFunction<ScalarT> {
00052   public:
00053   
00055     CubicSourceFunction(
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 = "Cubic 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< CubicNonlinearFactorParameter<ScalarT> > tmp = 
00066     Teuchos::rcp(new CubicNonlinearFactorParameter<ScalarT>(Teuchos::rcp(this,false)));
00067   paramLib->template addEntry<ScalarT>(name, tmp);
00068       }
00069     };
00070 
00072     virtual ~CubicSourceFunction() {};
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]*solution[i];
00080       }
00081       
00082     }
00083 
00085     void setFactor(const ScalarT& val, bool mark_constant) { 
00086       alpha = val;
00087       if (mark_constant) Sacado::MarkConstant<ScalarT>::eval(alpha); 
00088     }
00089 
00091     const ScalarT& getFactor() const { return alpha; }
00092 
00093   private:
00094 
00096     CubicSourceFunction(const CubicSourceFunction&);
00097 
00099     CubicSourceFunction& operator=(const CubicSourceFunction&);
00100 
00101   protected:
00102   
00104     ScalarT alpha;
00105 
00106   };
00107 
00112   template <typename ScalarT>
00113   class CubicNonlinearFactorParameter : 
00114     public Sacado::ScalarParameterEntry<ScalarT> {
00115 
00116   public:
00117 
00119     CubicNonlinearFactorParameter(
00120       const Teuchos::RCP< CubicSourceFunction<ScalarT> >& s) 
00121       : srcFunc(s) {}
00122 
00124     virtual ~CubicNonlinearFactorParameter() {}
00125 
00127     virtual void setRealValue(double value) { 
00128       setValueAsConstant(ScalarT(value)); }
00129 
00131     virtual void setValueAsConstant(const ScalarT& value) { 
00132       srcFunc->setFactor(value, true); }
00133     
00135     virtual void setValueAsIndependent(const ScalarT& value) { 
00136       srcFunc->setFactor(value, false); }
00137     
00139     virtual const ScalarT& getValue() const { return srcFunc->getFactor(); }
00140     
00141   protected:  
00142     
00144     Teuchos::RCP< CubicSourceFunction<ScalarT> > srcFunc;
00145 
00146   };
00147 
00148 }
00149 
00150 #endif // FEAPP_CUBICSOURCEFUNCTION_HPP

Generated on Wed May 12 21:59:03 2010 for Sacado Package Browser (Single Doxygen Collection) by  doxygen 1.4.7