51 lines
1.2 KiB
C++
Executable File
51 lines
1.2 KiB
C++
Executable File
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v1912 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object phaseChangeProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
type massTransferMultiphaseSystem;
|
|
|
|
phases (liquid gas);
|
|
|
|
liquid
|
|
{
|
|
type pureMovingPhaseModel;
|
|
}
|
|
|
|
gas
|
|
{
|
|
type pureMovingPhaseModel;
|
|
}
|
|
|
|
surfaceTension
|
|
(
|
|
(gas and liquid)
|
|
{
|
|
type constant;
|
|
sigma 0.0;
|
|
}
|
|
);
|
|
|
|
massTransferModel
|
|
(
|
|
(liquid to gas)
|
|
{
|
|
type Lee;
|
|
C 1700;
|
|
Tactivate 373.25;
|
|
}
|
|
);
|
|
|
|
// ************************************************************************* //
|