https://mooseframework.inl.gov
PrintMatricesNSProblem.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 #include "FEProblem.h"
13 #include "libmesh/libmesh_config.h"
14 #include <petscsnes.h>
15 
16 class NonlinearSystem;
17 
23 {
24 public:
26 
28 
29 protected:
30  virtual void onTimestepEnd() override;
31 
32 private:
34  const TagName & _pressure_mass_matrix;
36  const TagName & _velocity_mass_matrix;
38  const std::vector<TagName> & _augmented_lagrange_matrices;
39 };
virtual void onTimestepEnd() override
A problem that solves and prints matrices used when solving the incompressible Navier-Stokes equation...
static InputParameters validParams()
PrintMatricesNSProblem(const InputParameters &parameters)
const TagName & _pressure_mass_matrix
The tag name of the pressure mass matrix.
const TagName & _velocity_mass_matrix
The tag name of the velocity mass matrix.
const std::vector< TagName > & _augmented_lagrange_matrices
The tag name of the jump matrix.
const InputParameters & parameters() const