adjoint_refinement_estimator.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2018 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 
20 #ifndef LIBMESH_ADJOINT_REFINEMENT_ESTIMATOR_H
21 #define LIBMESH_ADJOINT_REFINEMENT_ESTIMATOR_H
22 
23 // Local Includes
25 #include "libmesh/libmesh.h"
26 #include "libmesh/qoi_set.h"
27 
28 // C++ includes
29 #include <cstddef>
30 #include <vector>
31 
32 // Forward declarations
33 class DifferentiablePhysics;
34 
35 #ifdef LIBMESH_ENABLE_AMR
36 
37 namespace libMesh
38 {
39 
51 {
52 public:
53 
58 
67  virtual ~AdjointRefinementEstimator() = default;
68 
73  QoISet & qoi_set() { return _qoi_set; }
74 
79  const QoISet & qoi_set() const { return _qoi_set; }
80 
97  virtual void estimate_error (const System & system,
98  ErrorVector & error_per_cell,
99  const NumericVector<Number> * solution_vector = nullptr,
100  bool estimate_parent_error = false);
101 
106  Number & get_global_QoI_error_estimate(unsigned int qoi_index)
107  {
108  return computed_global_QoI_errors[qoi_index];
109  }
110 
111  virtual ErrorEstimatorType type() const;
112 
116  unsigned char number_h_refinements;
117 
121  unsigned char number_p_refinements;
122 
128  { return this->_residual_evaluation_physics; }
129 
134  { this->_residual_evaluation_physics = set_physics; }
135 
136 protected:
137 
143 
144  /* A vector to hold the computed global QoI error estimate */
145  std::vector<Number> computed_global_QoI_errors;
146 
151 };
152 
153 } // namespace libMesh
154 
155 #endif // #ifdef LIBMESH_ENABLE_AMR
156 
157 #endif // LIBMESH_ADJOINT_REFINEMENT_ESTIMATOR_H
DifferentiablePhysics * get_residual_evaluation_physics()
virtual ErrorEstimatorType type() const
Used to specify quantities of interest in a simulation.
Definition: qoi_set.h:45
virtual ~AdjointRefinementEstimator()=default
AdjointRefinementEstimator & operator=(const AdjointRefinementEstimator &)=default
Manages consistently variables, degrees of freedom, and coefficient vectors.
Definition: system.h:92
Number & get_global_QoI_error_estimate(unsigned int qoi_index)
void set_residual_evaluation_physics(DifferentiablePhysics *set_physics)
virtual void estimate_error(const System &system, ErrorVector &error_per_cell, const NumericVector< Number > *solution_vector=nullptr, bool estimate_parent_error=false)