libMesh
Loading...
Searching...
No Matches
file_solution_history.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_FILE_SOLUTION_HISTORY_H
21#define LIBMESH_FILE_SOLUTION_HISTORY_H
22
23// Local includes
24#include "libmesh/solution_history.h"
25#include "libmesh/libmesh.h"
26
27// C++ includes
28#include <vector>
29#include <memory>
30
31namespace libMesh
32{
33
34// Forward declarations
35template <typename T> class NumericVector;
36class DifferentiableSystem;
37
47{
48public:
49
55
60
64 virtual void store(bool is_adjoint_solve, Real time) override;
65
69 virtual void retrieve(bool is_adjoint_solve, Real time) override;
70
74 virtual std::unique_ptr<SolutionHistory> clone() const override;
75
76private:
77
78 // A system reference
80
85 std::vector< std::unique_ptr<NumericVector<Number>> > dual_solution_copies;
86 std::vector< std::unique_ptr<NumericVector<Number>> > old_dual_solution_copies;
87};
88
89} // end namespace libMesh
90
91#endif // LIBMESH_FILE_SOLUTION_HISTORY_H
This class provides a specific system class.
Definition diff_system.h:57
Subclass of Solution History that stores the solutions and other important vectors onto disk.
virtual void retrieve(bool is_adjoint_solve, Real time) override
Virtual function retrieve which we will be overriding to retrieve timesteps.
virtual void store(bool is_adjoint_solve, Real time) override
Virtual function store which we will be overriding to store timesteps.
virtual std::unique_ptr< SolutionHistory > clone() const override
Definition of the clone function needed for the setter function.
std::vector< std::unique_ptr< NumericVector< Number > > > dual_solution_copies
A vector of pointers to adjoint and old adjoint solutions at the last time step.
std::vector< std::unique_ptr< NumericVector< Number > > > old_dual_solution_copies
~FileSolutionHistory()
Destructor, defaulted out-of-line.
A SolutionHistory class that enables the storage and retrieval of timesteps and (in the future) adapt...
The libMesh namespace provides an interface to certain functionality in the library.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real