mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: limiting to 80 chars
This commit is contained in:
@ -59,7 +59,8 @@ bool Foam::surfaceFilmModels::kinematicSingleLayer::read()
|
||||
{
|
||||
if (surfaceFilmModel::read())
|
||||
{
|
||||
const dictionary& solution = filmRegion_.solutionDict().subDict("PISO");
|
||||
const dictionary& solution =
|
||||
filmRegion_.solutionDict().subDict("PISO");
|
||||
solution.lookup("momentumPredictor") >> momentumPredictor_;
|
||||
solution.lookup("nOuterCorr") >> nOuterCorr_;
|
||||
solution.lookup("nCorr") >> nCorr_;
|
||||
@ -903,7 +904,7 @@ Foam::surfaceFilmModels::kinematicSingleLayer::kinematicSingleLayer
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
"U", // must have same name as U on primary region to enable mapping
|
||||
"U", // must have same name as U to enable mapping
|
||||
time_.timeName(),
|
||||
filmRegion_,
|
||||
IOobject::MUST_READ,
|
||||
@ -915,7 +916,7 @@ Foam::surfaceFilmModels::kinematicSingleLayer::kinematicSingleLayer
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
"p", // must have same name as p on primary region to enable mapping
|
||||
"p", // must have same name as p to enable mapping
|
||||
time_.timeName(),
|
||||
filmRegion_,
|
||||
IOobject::MUST_READ,
|
||||
@ -1172,7 +1173,8 @@ Foam::surfaceFilmModels::kinematicSingleLayer::diametersForPrimary() const
|
||||
|
||||
|
||||
const Foam::volScalarField&
|
||||
Foam::surfaceFilmModels::kinematicSingleLayer::massPhaseChangeForPrimary() const
|
||||
Foam::surfaceFilmModels::kinematicSingleLayer::massPhaseChangeForPrimary()
|
||||
const
|
||||
{
|
||||
return massPhaseChangeForPrimary_;
|
||||
}
|
||||
|
||||
@ -120,7 +120,7 @@ protected:
|
||||
//- Skin frition coefficient for film/primary region interface
|
||||
scalar Cf_;
|
||||
|
||||
//- Stable film thickness - film cannot detach until this is reached
|
||||
//- Stable film thickness - film cannot detach until reached
|
||||
dimensionedScalar deltaStable_;
|
||||
|
||||
|
||||
@ -434,7 +434,7 @@ public:
|
||||
const label patchI, // patchI on primary region
|
||||
const label faceI, // faceI of patchI
|
||||
const scalar massSource, // [kg]
|
||||
const vector& momentumSource, // [kg.m/s] (tangential momentum)
|
||||
const vector& momentumSource, // [kg.m/s] (tang'l momentum)
|
||||
const scalar pressureSource, // [kg.m/s] (normal momentum)
|
||||
const scalar energySource = 0 // [J]
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user