www.mooseframework.org
Eigenvalues.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 {
18 public:
20 
22 
23  virtual void initialize() override;
24  virtual void execute() override;
25 
26 protected:
28  const bool _inverse;
29 
32 
35 
38 };
Nonlinear eigenvalue system to be solved.
const NonlinearEigenSystem *const _nl_eigen
Nonlinear eigen-system to get the eigenvalues from.
Definition: Eigenvalues.h:37
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...
static InputParameters validParams()
Definition: Eigenvalues.C:22
const bool _inverse
Whether to report the inverse of the eigenvalues.
Definition: Eigenvalues.h:28
Eigenvalues(const InputParameters &parameters)
Definition: Eigenvalues.C:30
VectorPostprocessorValue & _eigen_values_real
Real part of the eigenvalues.
Definition: Eigenvalues.h:31
virtual void execute() override
Execute method.
Definition: Eigenvalues.C:49
std::vector< Real > VectorPostprocessorValue
Definition: MooseTypes.h:192
virtual void initialize() override
Called before execute() is ever called so that data can be cleared.
Definition: Eigenvalues.C:42
const InputParameters & parameters() const
Get the parameters of the object.
VectorPostprocessorValue & _eigen_values_imag
Imaginary part of the eigenvalues.
Definition: Eigenvalues.h:34