temperaturePhaseChangeTwoPhaseMixtureNew.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2016-2021 OpenCFD Ltd.
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 \*---------------------------------------------------------------------------*/
27 
29 #include "basicThermo.H"
30 
31 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
32 
35 (
36  const thermoIncompressibleTwoPhaseMixture& thermo,
37  const fvMesh& mesh
38 )
39 {
40  const IOdictionary dict
41  (
42  IOobject
43  (
44  "phaseChangeProperties",
45  mesh.time().constant(),
46  mesh,
49  false // Do not register
50  )
51  );
52 
53  const word modelType(dict.get<word>("phaseChangeTwoPhaseModel"));
54 
55  Info<< "Selecting phaseChange model " << modelType << endl;
56 
57  auto* ctorPtr = componentsConstructorTable(modelType);
58 
59  if (!ctorPtr)
60  {
62  (
63  dict,
64  "temperaturePhaseChangeTwoPhaseMixture",
65  modelType,
66  *componentsConstructorTablePtr_
67  ) << exit(FatalIOError);
68  }
69 
70  return
71  autoPtr<temperaturePhaseChangeTwoPhaseMixture>
72  (
73  ctorPtr(thermo, mesh)
74  );
75 }
76 
77 
78 // ************************************************************************* //
Foam::IOobject::NO_WRITE
Definition: IOobject.H:195
basicThermo.H
thermo
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
Foam::FatalIOError
IOerror FatalIOError
Foam::IOobject::IOobject
IOobject(const IOobject &)=default
Copy construct.
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:369
Foam::temperaturePhaseChangeTwoPhaseMixture::New
static autoPtr< temperaturePhaseChangeTwoPhaseMixture > New(const thermoIncompressibleTwoPhaseMixture &mixture, const fvMesh &mesh)
Return a reference to the selected phaseChange model.
FatalIOErrorInLookup
#define FatalIOErrorInLookup(ios, lookupTag, lookupName, lookupTable)
Report an error message using Foam::FatalIOError.
Definition: error.H:478
Foam::Info
messageStream Info
Information stream (stdout output on master, null elsewhere)
Foam::IOdictionary::IOdictionary
IOdictionary(const IOobject &io, const dictionary *fallback=nullptr)
Definition: IOdictionary.C:37
dict
dictionary dict
Definition: searchingEngine.H:14
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:6
Foam::exit
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:130
temperaturePhaseChangeTwoPhaseMixture.H
Foam::autoPtr
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
Definition: HashPtrTable.H:53
Foam::IOobject::MUST_READ
Definition: IOobject.H:185