https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Eigenvalues.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
13
15
17{
18public:
20
22
23 virtual void initialize() override;
24 virtual void execute() override;
25
26protected:
28 const bool _inverse;
29
32
35
38};
std::vector< Real > VectorPostprocessorValue
Definition MooseTypes.h:231
VectorPostprocessorValue & _eigen_values_imag
Imaginary part of the eigenvalues.
Definition Eigenvalues.h:34
const bool _inverse
Whether to report the inverse of the eigenvalues.
Definition Eigenvalues.h:28
static InputParameters validParams()
Definition Eigenvalues.C:22
const NonlinearEigenSystem *const _nl_eigen
Nonlinear eigen-system to get the eigenvalues from.
Definition Eigenvalues.h:37
virtual void initialize() override
Called before execute() is ever called so that data can be cleared.
Definition Eigenvalues.C:42
VectorPostprocessorValue & _eigen_values_real
Real part of the eigenvalues.
Definition Eigenvalues.h:31
virtual void execute() override
Execute method.
Definition Eigenvalues.C:49
This class is here to combine the VectorPostprocessor interface and the base class VectorPostprocesso...
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
const InputParameters & parameters() const
Get the parameters of the object.
Definition MooseBase.h:131
Nonlinear eigenvalue system to be solved.