STYLE: limiting to 80 chars

This commit is contained in:
andy
2011-03-11 16:39:11 +00:00
parent 36defd1f1e
commit c3ee4bad06
3 changed files with 8 additions and 4 deletions

View File

@ -228,7 +228,8 @@ protected:
const label filmPatchI,
const label primaryPatchI,
const mapDistribute& distMap,
const regionModels::surfaceFilmModels::surfaceFilmModel& filmModel
const regionModels::surfaceFilmModels::surfaceFilmModel&
filmModel
);
//- Set the individual parcel properties

View File

@ -475,7 +475,10 @@ kinematicSingleLayer::kinematicSingleLayer
momentumPredictor_(solution().subDict("PISO").lookup("momentumPredictor")),
nOuterCorr_(readLabel(solution().subDict("PISO").lookup("nOuterCorr"))),
nCorr_(readLabel(solution().subDict("PISO").lookup("nCorr"))),
nNonOrthCorr_(readLabel(solution().subDict("PISO").lookup("nNonOrthCorr"))),
nNonOrthCorr_
(
readLabel(solution().subDict("PISO").lookup("nNonOrthCorr"))
),
cumulativeContErr_(0.0),

View File

@ -100,7 +100,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
dimensionedScalar deltaStable_;
@ -393,7 +393,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]
);