https://mooseframework.inl.gov
Loading...
Searching...
No Matches
PIMPLE.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 "TransientBase.h"
13#include "PIMPLESolve.h"
14
20class PIMPLE : public TransientBase
21{
22public:
24
26
27 virtual void init() override;
28
29 virtual Real relativeSolutionDifferenceNorm(bool check_aux) const override;
30
31protected:
32 virtual std::set<TimeIntegrator *> getTimeIntegrators() const override;
33
36};
const InputParameters & parameters() const
PIMPLE-based (PISO + SIMPLE) for transient solution object with linear FV system assembly.
Definition PIMPLESolve.h:32
Executioner set up to solve a transient thermal-hydraulics problem using the PIMPLE algorithm.
Definition PIMPLE.h:21
virtual std::set< TimeIntegrator * > getTimeIntegrators() const override
Definition PIMPLE.C:63
virtual Real relativeSolutionDifferenceNorm(bool check_aux) const override
Definition PIMPLE.C:47
static InputParameters validParams()
Definition PIMPLE.C:21
PIMPLESolve _pimple_solve
The solve object performing the PIMPLE iteration.
Definition PIMPLE.h:35
virtual void init() override
Definition PIMPLE.C:38