OpenFOAM-5.x/src/finiteVolume/cfdTools/general/solutionControl/pisoControl/pisoControl.H

86 lines
2.5 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2015 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class
Foam::pisoControl
Description
Specialization of the pimpleControl class for PISO control.
\*---------------------------------------------------------------------------*/
#ifndef pisoControl_H
#define pisoControl_H
#include "pimpleControl.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class pisoControl Declaration
\*---------------------------------------------------------------------------*/
class pisoControl
:
public pimpleControl
{
// Private member functions
//- Disallow default bitwise copy construct
pisoControl(const pisoControl&);
//- Disallow default bitwise assignment
void operator=(const pisoControl&);
public:
// Static Data Members
//- Run-time type information
TypeName("pisoControl");
// Constructors
//- Construct from mesh and the name of control sub-dictionary
pisoControl(fvMesh& mesh, const word& dictName="PISO");
//- Destructor
virtual ~pisoControl();
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //