libMesh
adjoint_refinement_estimator.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2024 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
24 #include "libmesh/error_estimator.h"
25 #include "libmesh/libmesh.h"
26 #include "libmesh/qoi_set.h"
27 
28 // C++ includes
29 #include <cstddef>
30 #include <vector>
31 
32 #ifdef LIBMESH_ENABLE_AMR
33 
34 namespace libMesh
35 {
36 
37 // Forward declarations
38 class DifferentiablePhysics;
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) override;
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 override;
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 
141  { return this->_adjoint_evaluation_physics; }
142 
147  { this->_adjoint_evaluation_physics = set_physics; }
148 
149 protected:
150 
156 
162 
163  /* A vector to hold the computed global QoI error estimate */
164  std::vector<Number> computed_global_QoI_errors;
165 
170 };
171 
172 } // namespace libMesh
173 
174 #endif // #ifdef LIBMESH_ENABLE_AMR
175 
176 #endif // LIBMESH_ADJOINT_REFINEMENT_ESTIMATOR_H
DifferentiablePhysics * get_residual_evaluation_physics()
virtual ErrorEstimatorType type() const override
QoISet & qoi_set()
Access to the QoISet (default: weight all QoIs equally) to use when computing errors.
This class implements a "brute force" goal-oriented error estimator which computes an estimate of err...
Data structure for specifying which Quantities of Interest should be calculated in an adjoint or a pa...
Definition: qoi_set.h:45
DifferentiablePhysics * _adjoint_evaluation_physics
Pointer to object to use for adjoint assembly.
The ErrorVector is a specialization of the StatisticsVector for error data computed on a finite eleme...
Definition: error_vector.h:50
ErrorEstimatorType
Defines an enum for the different types of error estimators which are available.
DifferentiablePhysics * get_adjoint_evaluation_physics()
The libMesh namespace provides an interface to certain functionality in the library.
QoISet _qoi_set
A QoISet to handle cases with multiple QoIs available.
void set_adjoint_evaluation_physics(DifferentiablePhysics *set_physics)
Set the _adjoint_evaluation_physics member to argument.
const QoISet & qoi_set() const
Access to the QoISet (default: weight all QoIs equally) to use when computing errors.
virtual ~AdjointRefinementEstimator()=default
AdjointRefinementEstimator & operator=(const AdjointRefinementEstimator &)=default
Manages consistently variables, degrees of freedom, and coefficient vectors.
Definition: system.h:96
This class holds functions that will estimate the error in a finite element solution on a given mesh...
Number & get_global_QoI_error_estimate(unsigned int qoi_index)
This is an accessor function to access the computed global QoI error estimates.
DifferentiablePhysics * _residual_evaluation_physics
Pointer to object to use for physics assembly evaluations.
virtual void estimate_error(const System &system, ErrorVector &error_per_cell, const NumericVector< Number > *solution_vector=nullptr, bool estimate_parent_error=false) override
This function does uniform refinements and an adjoint solve to get an adjoint solution on each cell...
void set_residual_evaluation_physics(DifferentiablePhysics *set_physics)
Set the _residual_evaluation_physics member to argument.
This class provides a specific system class.
Definition: diff_physics.h:76
unsigned char number_h_refinements
How many h refinements to perform to get the fine grid.
unsigned char number_p_refinements
How many p refinements to perform to get the fine grid.