diff --git a/src/lagrangian/intermediate/submodels/Thermodynamic/SurfaceFilmModel/ThermoSurfaceFilm/ThermoSurfaceFilm.H b/src/lagrangian/intermediate/submodels/Thermodynamic/SurfaceFilmModel/ThermoSurfaceFilm/ThermoSurfaceFilm.H index 270e90388a11e62563295e0ae8d212c5c220c306..72f8525687158dd1b0a760bcdf901d63fcbabe18 100644 --- a/src/lagrangian/intermediate/submodels/Thermodynamic/SurfaceFilmModel/ThermoSurfaceFilm/ThermoSurfaceFilm.H +++ b/src/lagrangian/intermediate/submodels/Thermodynamic/SurfaceFilmModel/ThermoSurfaceFilm/ThermoSurfaceFilm.H @@ -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 diff --git a/src/regionModels/surfaceFilmModels/kinematicSingleLayer/kinematicSingleLayer.C b/src/regionModels/surfaceFilmModels/kinematicSingleLayer/kinematicSingleLayer.C index c4fc039553b508e8bcf2824d0a21186f114509f3..0182e70d35ee888118c6bbcf2a2728d673803bfb 100644 --- a/src/regionModels/surfaceFilmModels/kinematicSingleLayer/kinematicSingleLayer.C +++ b/src/regionModels/surfaceFilmModels/kinematicSingleLayer/kinematicSingleLayer.C @@ -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), diff --git a/src/regionModels/surfaceFilmModels/kinematicSingleLayer/kinematicSingleLayer.H b/src/regionModels/surfaceFilmModels/kinematicSingleLayer/kinematicSingleLayer.H index 4c2e7ec939892128935d689645bbbc6cd25dd5b4..60d458727019eafc59ebd346b85a08644aa6c55e 100644 --- a/src/regionModels/surfaceFilmModels/kinematicSingleLayer/kinematicSingleLayer.H +++ b/src/regionModels/surfaceFilmModels/kinematicSingleLayer/kinematicSingleLayer.H @@ -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] );