db7fac3f24
git-svn-id: https://openfoam-extend.svn.sourceforge.net/svnroot/openfoam-extend/trunk/Core/OpenFOAM-1.5-dev@1731 e4e07f05-0c2f-0410-a05a-b8ba57e0c909
68 lines
1.3 KiB
C
68 lines
1.3 KiB
C
Info<< "Reading physicalProperties\n" << endl;
|
|
|
|
IOdictionary physicalProperties
|
|
(
|
|
IOobject
|
|
(
|
|
"physicalProperties",
|
|
runTime.constant(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::NO_WRITE
|
|
)
|
|
);
|
|
|
|
dimensionedScalar epsilon0
|
|
(
|
|
physicalProperties.lookup("epsilon0")
|
|
);
|
|
|
|
dimensionedScalar k
|
|
(
|
|
physicalProperties.lookup("k")
|
|
);
|
|
|
|
|
|
Info<< "Reading field phi\n" << endl;
|
|
volScalarField phi
|
|
(
|
|
IOobject
|
|
(
|
|
"phi",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh
|
|
);
|
|
|
|
|
|
Info<< "Reading field rho\n" << endl;
|
|
volScalarField rho
|
|
(
|
|
IOobject
|
|
(
|
|
"rho",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh
|
|
);
|
|
|
|
|
|
Info<< "Calculating field rhoFlux\n" << endl;
|
|
surfaceScalarField rhoFlux
|
|
(
|
|
IOobject
|
|
(
|
|
"rhoFlux",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::NO_READ,
|
|
IOobject::NO_WRITE
|
|
),
|
|
-k*mesh.magSf()*fvc::snGrad(phi)
|
|
);
|