tutorials/multiphase: Removed unnecessary specification of name and dimensions for transport properties

This commit is contained in:
Henry Weller
2017-03-31 17:11:30 +01:00
parent dfd611aeac
commit 1f5b9dbbcf
32 changed files with 184 additions and 184 deletions

View File

@ -40,7 +40,7 @@ const dimensionedScalar& rho1 = mixture.rho1();
const dimensionedScalar& rho2 = mixture.rho2(); const dimensionedScalar& rho2 = mixture.rho2();
const dimensionedScalar& rho3 = mixture.rho3(); const dimensionedScalar& rho3 = mixture.rho3();
dimensionedScalar D23(mixture.lookup("D23")); dimensionedScalar D23("D23", dimViscosity, mixture);
// Need to store rho for ddt(rho, U) // Need to store rho for ddt(rho, U)
volScalarField rho volScalarField rho

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -168,8 +168,8 @@ Foam::threePhaseInterfaceProperties::threePhaseInterfaceProperties
).lookup("cAlpha") ).lookup("cAlpha")
) )
), ),
sigma12_(mixture.lookup("sigma12")), sigma12_("sigma12", dimensionSet(1, 0, -2, 0, 0), mixture),
sigma13_(mixture.lookup("sigma13")), sigma13_("sigma13", dimensionSet(1, 0, -2, 0, 0), mixture),
deltaN_ deltaN_
( (

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -47,10 +47,10 @@ Foam::phaseChangeTwoPhaseMixtures::Kunz::Kunz
: :
phaseChangeTwoPhaseMixture(typeName, U, phi), phaseChangeTwoPhaseMixture(typeName, U, phi),
UInf_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("UInf")), UInf_("UInf", dimVelocity, phaseChangeTwoPhaseMixtureCoeffs_),
tInf_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("tInf")), tInf_("tInf", dimTime, phaseChangeTwoPhaseMixtureCoeffs_),
Cc_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("Cc")), Cc_("Cc", dimless, phaseChangeTwoPhaseMixtureCoeffs_),
Cv_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("Cv")), Cv_("Cv", dimless, phaseChangeTwoPhaseMixtureCoeffs_),
p0_("0", pSat().dimensions(), 0.0), p0_("0", pSat().dimensions(), 0.0),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -47,10 +47,10 @@ Foam::phaseChangeTwoPhaseMixtures::Merkle::Merkle
: :
phaseChangeTwoPhaseMixture(typeName, U, phi), phaseChangeTwoPhaseMixture(typeName, U, phi),
UInf_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("UInf")), UInf_("UInf", dimVelocity, phaseChangeTwoPhaseMixtureCoeffs_),
tInf_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("tInf")), tInf_("tInf", dimTime, phaseChangeTwoPhaseMixtureCoeffs_),
Cc_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("Cc")), Cc_("Cc", dimless, phaseChangeTwoPhaseMixtureCoeffs_),
Cv_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("Cv")), Cv_("Cv", dimless, phaseChangeTwoPhaseMixtureCoeffs_),
p0_("0", pSat().dimensions(), 0.0), p0_("0", pSat().dimensions(), 0.0),

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -54,10 +54,10 @@ Foam::phaseChangeTwoPhaseMixtures::SchnerrSauer::SchnerrSauer
: :
phaseChangeTwoPhaseMixture(typeName, U, phi), phaseChangeTwoPhaseMixture(typeName, U, phi),
n_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("n")), n_("n", dimless/dimVolume, phaseChangeTwoPhaseMixtureCoeffs_),
dNuc_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("dNuc")), dNuc_("dNuc", dimLength, phaseChangeTwoPhaseMixtureCoeffs_),
Cc_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("Cc")), Cc_("Cc", dimless, phaseChangeTwoPhaseMixtureCoeffs_),
Cv_(phaseChangeTwoPhaseMixtureCoeffs_.lookup("Cv")), Cv_("Cv", dimless, phaseChangeTwoPhaseMixtureCoeffs_),
p0_("0", pSat().dimensions(), 0.0) p0_("0", pSat().dimensions(), 0.0)
{ {

View File

@ -20,17 +20,17 @@ phases (phase1 phase2);
phase1 phase1
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 300; rho 300;
} }
phase2 phase2
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-6; nu 1e-6;
rho [1 -3 0 0 0 0 0] 1027; rho 1027;
} }
sigma [1 0 -2 0 0 0 0] 0.07; sigma 0.07;
// ************************************************************************* // // ************************************************************************* //

View File

@ -17,8 +17,8 @@ FoamFile
phases (water air); phases (water air);
pMin [1 -1 -2 0 0 0 0] 1000; pMin 1000;
sigma [1 0 -2 0 0 0 0] 0; sigma 0;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 998.2; rho 998.2;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0; sigma 0;
// ************************************************************************* // // ************************************************************************* //

View File

@ -17,7 +17,7 @@ FoamFile
phases (water oil mercury air); phases (water oil mercury air);
pMin [1 -1 -2 0 0 0 0] 10000; pMin 10000;
sigmas sigmas
( (

View File

@ -20,17 +20,17 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.09e-06; nu 1.09e-06;
rho [1 -3 0 0 0 0 0] 998.8; rho 998.8;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0; sigma 0;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 998.2; rho 998.2;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0; sigma 0;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,17 +20,17 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 300; rho 300;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-6; nu 1e-6;
rho [1 -3 0 0 0 0 0] 1027; rho 1027;
} }
sigma [1 0 -2 0 0 0 0] 0.07; sigma 0.07;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 1000; rho 1000;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0.07; sigma 0.07;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,17 +20,17 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 998.2; rho 998.2;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0.07; sigma 0.07;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,17 +20,17 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 998.2; rho 998.2;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0; sigma 0;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 998.2; rho 998.2;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0; sigma 0;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,17 +20,17 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 998.2; rho 998.2;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0; sigma 0;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 998.2; rho 998.2;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0; sigma 0;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,17 +20,17 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 998.2; rho 998.2;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0; sigma 0;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 998.2; rho 998.2;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0; sigma 0;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,17 +20,17 @@ phases (fuel air);
fuel fuel
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 5.952e-06; nu 5.952e-06;
rho [1 -3 0 0 0 0 0] 840; rho 840;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 8.5e-07; nu 8.5e-07;
rho [1 -3 0 0 0 0 0] 20; rho 20;
} }
sigma [1 0 -2 0 0 0 0] 0.0261; sigma 0.0261;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,17 +20,17 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.09e-06; nu 1.09e-06;
rho [1 -3 0 0 0 0 0] 998.8; rho 998.8;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0; sigma 0;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 1000; rho 1000;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0.07; sigma 0.07;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 1000; rho 1000;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0.07; sigma 0.07;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 1000; rho 1000;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0.07; sigma 0.07;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 1000; rho 1000;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0.07; sigma 0.07;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 1000; rho 1000;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0.07; sigma 0.07;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water air);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-06; nu 1e-06;
rho [1 -3 0 0 0 0 0] 1000; rho 1000;
} }
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
sigma [1 0 -2 0 0 0 0] 0.0707106; sigma 0.0707106;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,18 +20,18 @@ phases (water oir);
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-4; nu 1e-4;
rho [1 -3 0 0 0 0 0] 1000; rho 1000;
} }
oir oir
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-4; nu 1e-4;
rho [1 -3 0 0 0 0 0] 500; rho 500;
} }
sigma [1 0 -2 0 0 0 0] 0.05; sigma 0.05;
// ************************************************************************* // // ************************************************************************* //

View File

@ -20,29 +20,29 @@ phases (air other water);
air air
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1.48e-05; nu 1.48e-05;
rho [1 -3 0 0 0 0 0] 1; rho 1;
} }
other other
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-6; nu 1e-6;
rho [1 -3 0 0 0 0 0] 1010; rho 1010;
} }
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 1e-6; nu 1e-6;
rho [1 -3 0 0 0 0 0] 1000; rho 1000;
} }
// Surface tension coefficients // Surface tension coefficients
sigma12 sigma12 [1 0 -2 0 0 0 0] 0.05; sigma12 0.05;
sigma13 sigma13 [1 0 -2 0 0 0 0] 0.04; sigma13 0.04;
// Diffusivity between miscible phases // Diffusivity between miscible phases
D23 D23 [0 2 -1 0 0 0 0] 3e-09; D23 3e-09;
// ************************************************************************* // // ************************************************************************* //

View File

@ -19,46 +19,46 @@ phases (water vapour);
phaseChangeTwoPhaseMixture SchnerrSauer; phaseChangeTwoPhaseMixture SchnerrSauer;
pSat [1 -1 -2 0 0 0 0] 2300; // Saturation pressure pSat 2300; // Saturation pressure
sigma [1 0 -2 0 0 0 0] 0.07; sigma 0.07;
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 9e-07; nu 9e-07;
rho [1 -3 0 0 0 0 0] 1000; rho 1000;
} }
vapour vapour
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 4.273e-04; nu 4.273e-04;
rho [1 -3 0 0 0 0 0] 0.02308; rho 0.02308;
} }
KunzCoeffs KunzCoeffs
{ {
UInf UInf [0 1 -1 0 0 0 0] 20.0; UInf 20.0;
tInf tInf [0 0 1 0 0 0 0] 0.005; // L = 0.1 m tInf 0.005; // L = 0.1 m
Cc Cc [0 0 0 0 0 0 0] 1000; Cc 1000;
Cv Cv [0 0 0 0 0 0 0] 1000; Cv 1000;
} }
MerkleCoeffs MerkleCoeffs
{ {
UInf UInf [0 1 -1 0 0 0 0] 20.0; UInf 20.0;
tInf tInf [0 0 1 0 0 0 0] 0.005; // L = 0.1 m tInf 0.005; // L = 0.1 m
Cc Cc [0 0 0 0 0 0 0] 80; Cc 80;
Cv Cv [0 0 0 0 0 0 0] 1e-03; Cv 1e-03;
} }
SchnerrSauerCoeffs SchnerrSauerCoeffs
{ {
n n [0 -3 0 0 0 0 0] 1.6e+13; n 1.6e+13;
dNuc dNuc [0 1 0 0 0 0 0] 2.0e-06; dNuc 2.0e-06;
Cc Cc [0 0 0 0 0 0 0] 1; Cc 1;
Cv Cv [0 0 0 0 0 0 0] 1; Cv 1;
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -18,46 +18,46 @@ phases (water vapour);
phaseChangeTwoPhaseMixture SchnerrSauer; phaseChangeTwoPhaseMixture SchnerrSauer;
pSat [1 -1 -2 0 0 0 0] 2300; // Saturation pressure pSat 2300; // Saturation pressure
sigma [1 0 -2 0 0 0 0] 0.07; sigma 0.07;
water water
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 9e-07; nu 9e-07;
rho [1 -3 0 0 0 0 0] 1000; rho 1000;
} }
vapour vapour
{ {
transportModel Newtonian; transportModel Newtonian;
nu [0 2 -1 0 0 0 0] 4.273e-04; nu 4.273e-04;
rho [1 -3 0 0 0 0 0] 0.02308; rho 0.02308;
} }
KunzCoeffs KunzCoeffs
{ {
UInf UInf [0 1 -1 0 0 0 0] 20.0; UInf U20.0;
tInf tInf [0 0 1 0 0 0 0] 0.005; // L = 0.1 m tInf t0.005; // L = 0.1 m
Cc Cc [0 0 0 0 0 0 0] 1000; Cc C1000;
Cv Cv [0 0 0 0 0 0 0] 1000; Cv C1000;
} }
MerkleCoeffs MerkleCoeffs
{ {
UInf UInf [0 1 -1 0 0 0 0] 20.0; UInf 20.0;
tInf tInf [0 0 1 0 0 0 0] 0.005; // L = 0.1 m tInf 0.005; // L = 0.1 m
Cc Cc [0 0 0 0 0 0 0] 80; Cc 80;
Cv Cv [0 0 0 0 0 0 0] 1e-03; Cv 1e-03;
} }
SchnerrSauerCoeffs SchnerrSauerCoeffs
{ {
n n [0 -3 0 0 0 0 0] 1.6e+13; n 1.6e+13;
dNuc dNuc [0 1 0 0 0 0 0] 2.0e-06; dNuc 2.0e-06;
Cc Cc [0 0 0 0 0 0 0] 1; Cc 1;
Cv Cv [0 0 0 0 0 0 0] 1; Cv 1;
} }