https://mooseframework.inl.gov
Loading...
Searching...
No Matches
SingularTripletReporter.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#pragma once
11
12// MOOSE includes
13#include "GeneralReporter.h"
14#include "PODMapping.h"
15#include "MappingInterface.h"
16
21{
22public:
25
26 void initialize() override {}
27 void execute() override;
28 void finalize() override {}
29
30 void initialSetup() override;
31
32protected:
34 const std::vector<VariableName> & _variable_names;
35
38
41 std::map<VariableName, std::vector<DenseVector<Real>>> & _left_singular_vectors;
42 std::map<VariableName, std::vector<DenseVector<Real>>> & _right_singular_vectors;
43 std::map<VariableName, std::vector<Real>> & _singular_values;
45};
An interface class that helps getting access to Mapping objects.
const InputParameters & parameters() const
Class which provides a Proper Orthogonal Decomposition (POD)-based mapping between full-order and red...
Definition PODMapping.h:24
Reporter class which can print Singular Value Decompositions from PODMapping objects.
static InputParameters validParams()
std::map< VariableName, std::vector< DenseVector< Real > > > & _right_singular_vectors
std::map< VariableName, std::vector< Real > > & _singular_values
PODMapping * _pod_mapping
Link to the PODMapping object which contains the SVDs.
const std::vector< VariableName > & _variable_names
The names of the variables whose SVD should be printed.
std::map< VariableName, std::vector< DenseVector< Real > > > & _left_singular_vectors