00001 // $Id: FEApp_ModelEvaluator.hpp,v 1.3 2007/07/09 17:04:02 etphipp Exp $ 00002 // $Source: /space/CVS/Trilinos/packages/sacado/example/FEApp/FEApp_ModelEvaluator.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_MODELEVALUATOR_HPP 00033 #define FEAPP_MODELEVALUATOR_HPP 00034 00035 #include "Teuchos_RCP.hpp" 00036 #include "Teuchos_Array.hpp" 00037 00038 #include "EpetraExt_ModelEvaluator.h" 00039 00040 #include "FEApp_Application.hpp" 00041 00042 #include "Epetra_LocalMap.h" 00043 #include "Sacado_ScalarParameterVector.hpp" 00044 00045 namespace FEApp { 00046 00047 class ModelEvaluator : public EpetraExt::ModelEvaluator { 00048 public: 00049 00050 // Constructor 00051 ModelEvaluator( 00052 const Teuchos::RCP<FEApp::Application>& app, 00053 const Teuchos::RCP< Teuchos::Array<std::string> >& free_param_names = Teuchos::null); 00054 00057 00059 Teuchos::RCP<const Epetra_Map> get_x_map() const; 00060 00062 Teuchos::RCP<const Epetra_Map> get_f_map() const; 00063 00065 Teuchos::RCP<const Epetra_Map> get_p_map(int l) const; 00066 00068 Teuchos::RCP<const Teuchos::Array<std::string> > 00069 get_p_names(int l) const; 00070 00072 Teuchos::RCP<const Epetra_Vector> get_x_init() const; 00073 00075 Teuchos::RCP<const Epetra_Vector> get_p_init(int l) const; 00076 00078 Teuchos::RCP<Epetra_Operator> create_W() const; 00079 00081 InArgs createInArgs() const; 00082 00084 OutArgs createOutArgs() const; 00085 00087 void evalModel(const InArgs& inArgs, const OutArgs& outArgs) const; 00088 00090 00091 protected: 00092 00094 Teuchos::RCP<FEApp::Application> app; 00095 00097 Teuchos::RCP< Teuchos::Array<std::string> > param_names; 00098 00100 Teuchos::RCP<Sacado::ScalarParameterVector> sacado_param_vec; 00101 00103 Teuchos::RCP<Epetra_LocalMap> epetra_param_map; 00104 00106 Teuchos::RCP<Epetra_Vector> epetra_param_vec; 00107 00108 }; 00109 00110 } 00111 00112 #endif // FEAPP_MODELEVALUATOR_HPP
1.4.7