libMesh
Loading...
Searching...
No Matches
adjoint_refinement_estimator.h
Go to the documentation of this file.
1// The libMesh Finite Element Library.
2// Copyright (C) 2002-2026 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
34namespace libMesh
35{
36
37// Forward declarations
38class DifferentiablePhysics;
39
51{
52public:
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
129
135
142
148
149protected:
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
This class implements a "brute force" goal-oriented error estimator which computes an estimate of err...
void set_residual_evaluation_physics(DifferentiablePhysics *set_physics)
Set the _residual_evaluation_physics member to argument.
AdjointRefinementEstimator & operator=(const AdjointRefinementEstimator &)=default
virtual ErrorEstimatorType type() const override
DifferentiablePhysics * get_residual_evaluation_physics()
unsigned char number_h_refinements
How many h refinements to perform to get the fine grid.
AdjointRefinementEstimator(AdjointRefinementEstimator &&)=default
AdjointRefinementEstimator(const AdjointRefinementEstimator &)=default
Copy/move ctor, copy/move assignment operator, and destructor are all explicitly defaulted for this c...
const QoISet & qoi_set() const
Access to the QoISet (default: weight all QoIs equally) to use when computing errors.
QoISet & qoi_set()
Access to the QoISet (default: weight all QoIs equally) to use when computing errors.
Number & get_global_QoI_error_estimate(unsigned int qoi_index)
This is an accessor function to access the computed global QoI error estimates.
DifferentiablePhysics * _adjoint_evaluation_physics
Pointer to object to use for adjoint assembly.
unsigned char number_p_refinements
How many p refinements to perform to get the fine grid.
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.
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,...
virtual ~AdjointRefinementEstimator()=default
This class provides a specific system class.
This class holds functions that will estimate the error in a finite element solution on a given mesh.
The ErrorVector is a specialization of the StatisticsVector for error data computed on a finite eleme...
Provides a uniform interface to vector storage schemes for different linear algebra libraries.
Data structure for specifying which Quantities of Interest should be calculated in an adjoint or a pa...
Definition qoi_set.h:46
Manages consistently variables, degrees of freedom, and coefficient vectors.
Definition system.h:100
The libMesh namespace provides an interface to certain functionality in the library.
ErrorEstimatorType
Defines an enum for the different types of error estimators which are available.