Panzer  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Panzer_ResponseEvaluatorFactory_ExtremeValue.hpp
Go to the documentation of this file.
1 // @HEADER
2 // ***********************************************************************
3 //
4 // Panzer: A partial differential equation assembly
5 // engine for strongly coupled complex multiphysics systems
6 // Copyright (2011) Sandia Corporation
7 //
8 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9 // the U.S. Government retains certain rights in this software.
10 //
11 // Redistribution and use in source and binary forms, with or without
12 // modification, are permitted provided that the following conditions are
13 // met:
14 //
15 // 1. Redistributions of source code must retain the above copyright
16 // notice, this list of conditions and the following disclaimer.
17 //
18 // 2. Redistributions in binary form must reproduce the above copyright
19 // notice, this list of conditions and the following disclaimer in the
20 // documentation and/or other materials provided with the distribution.
21 //
22 // 3. Neither the name of the Corporation nor the names of the
23 // contributors may be used to endorse or promote products derived from
24 // this software without specific prior written permission.
25 //
26 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 //
38 // Questions? Contact Roger P. Pawlowski (rppawlo@sandia.gov) and
39 // Eric C. Cyr (eccyr@sandia.gov)
40 // ***********************************************************************
41 // @HEADER
42 
43 #ifndef __Panzer_ResponseEvaluatorFactory_ExtremeValue_hpp__
44 #define __Panzer_ResponseEvaluatorFactory_ExtremeValue_hpp__
45 
46 #include <string>
47 
48 #include "PanzerDiscFE_config.hpp"
49 #include "Panzer_PhysicsBlock.hpp"
50 #include "Panzer_BC.hpp"
51 #include "Panzer_Traits.hpp"
55 
56 #include <mpi.h>
57 
58 namespace panzer {
59 
62 template <typename EvalT,typename LO,typename GO>
64 public:
65 
67  int cubatureDegree=1,
68  bool requiresCellReduction=true,
69  bool useMax=true,
70  const std::string & quadPointField="",
71  const Teuchos::RCP<const panzer::LinearObjFactory<panzer::Traits> > & linearObjFactory=Teuchos::null,
72  const Teuchos::RCP<const panzer::GlobalIndexer> & globalIndexer=Teuchos::null,
73  bool applyDirichletToDerivative=false,
74  std::string in_prefix="")
75  : comm_(comm), cubatureDegree_(cubatureDegree), requiresCellExtreme_(requiresCellReduction), useMax_(useMax)
76  , quadPointField_(quadPointField), linearObjFactory_(linearObjFactory), globalIndexer_(globalIndexer)
77  , applyDirichletToDerivative_(applyDirichletToDerivative)
78  , prefix_(in_prefix)
79  {
80  TEUCHOS_ASSERT((linearObjFactory==Teuchos::null && globalIndexer==Teuchos::null) ||
81  (linearObjFactory!=Teuchos::null && globalIndexer!=Teuchos::null));
82  }
83 
85 
95  virtual Teuchos::RCP<ResponseBase> buildResponseObject(const std::string & responseName) const;
96 
97  virtual Teuchos::RCP<ResponseBase> buildResponseObject(const std::string & responseName,
98  const std::vector<WorksetDescriptor> & /* wkstDesc */) const
99  { return buildResponseObject(responseName); }
100 
112  virtual void buildAndRegisterEvaluators(const std::string & responseName,
114  const panzer::PhysicsBlock & physicsBlock,
115  const Teuchos::ParameterList & user_data) const;
116 
124  virtual bool typeSupported() const;
125 
126 protected:
128  int getCubatureDegree() const { return cubatureDegree_; }
129 
130 private:
131  MPI_Comm comm_;
134  bool useMax_;
135  std::string quadPointField_;
139  std::string prefix_;
140 };
141 
142 template <typename LO,typename GO>
144  MPI_Comm comm;
147  bool useMax;
148  std::string quadPointField;
149  bool applyDirichletToDerivative; // if this is set to true, then the dirichlet values will be zerod out in
150  // the DgDx vector
151 
152  std::string prefix;
154 
156 
158  const Teuchos::RCP<const panzer::GlobalIndexer> & in_globalIndexer)
159  {
160  linearObjFactory = in_linearObjFactory;
161  globalIndexer = in_globalIndexer;
162 
163  TEUCHOS_ASSERT((linearObjFactory==Teuchos::null && globalIndexer==Teuchos::null) ||
164  (linearObjFactory!=Teuchos::null && globalIndexer!=Teuchos::null));
165  }
166 
167  virtual void setDerivativeInformation(const Teuchos::RCP<const panzer::LinearObjFactory<panzer::Traits> > & in_linearObjFactory)
168  {
169  using Teuchos::rcp_dynamic_cast;
170 
171  setDerivativeInformation(in_linearObjFactory,
172  rcp_dynamic_cast<const panzer::GlobalIndexer>(in_linearObjFactory->getDomainGlobalIndexer(),true));
173  }
174 
175  template <typename T>
179 
181  { return build<panzer::Traits::Residual>(); }
182 
184  { return build<panzer::Traits::Jacobian>(); }
185 
187  { return build<panzer::Traits::Tangent>(); }
188 
189 #ifdef Panzer_BUILD_HESSIAN_SUPPORT
190 
194  { return build<panzer::Traits::Hessian>(); }
195 #endif
196 
197 private:
200 };
201 
202 
203 }
204 
206 
207 #endif
virtual Teuchos::RCP< panzer::ResponseEvaluatorFactoryBase > buildDerivativeFactory() const
Teuchos::RCP< const panzer::GlobalIndexer > globalIndexer
Object that contains information on the physics and discretization of a block of elements with the SA...
virtual Teuchos::RCP< panzer::ResponseEvaluatorFactoryBase > buildHessianFactory() const
virtual void setDerivativeInformation(const Teuchos::RCP< const panzer::LinearObjFactory< panzer::Traits > > &in_linearObjFactory)
void setDerivativeInformation(const Teuchos::RCP< const panzer::LinearObjFactory< panzer::Traits > > &in_linearObjFactory, const Teuchos::RCP< const panzer::GlobalIndexer > &in_globalIndexer)
virtual Teuchos::RCP< panzer::ResponseEvaluatorFactoryBase > buildTangentFactory() const
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
int getCubatureDegree() const
Accessor method for Cubature degree (can be used by sub classes)
Teuchos::RCP< panzer::ResponseEvaluatorFactoryBase > build() const
Teuchos::RCP< const panzer::LinearObjFactory< panzer::Traits > > linearObjFactory_
Teuchos::RCP< const panzer::LinearObjFactory< panzer::Traits > > linearObjFactory
ResponseEvaluatorFactory_ExtremeValue(MPI_Comm comm, int cubatureDegree=1, bool requiresCellReduction=true, bool useMax=true, const std::string &quadPointField="", const Teuchos::RCP< const panzer::LinearObjFactory< panzer::Traits > > &linearObjFactory=Teuchos::null, const Teuchos::RCP< const panzer::GlobalIndexer > &globalIndexer=Teuchos::null, bool applyDirichletToDerivative=false, std::string in_prefix="")
virtual Teuchos::RCP< ResponseBase > buildResponseObject(const std::string &responseName) const
virtual void buildAndRegisterEvaluators(const std::string &responseName, PHX::FieldManager< panzer::Traits > &fm, const panzer::PhysicsBlock &physicsBlock, const Teuchos::ParameterList &user_data) const
virtual Teuchos::RCP< panzer::ResponseEvaluatorFactoryBase > buildValueFactory() const
#define TEUCHOS_ASSERT(assertion_test)
virtual Teuchos::RCP< ResponseBase > buildResponseObject(const std::string &responseName, const std::vector< WorksetDescriptor > &) const