ENH: Surface film - added access function for deltaRho

This commit is contained in:
andy
2013-10-10 17:01:36 +01:00
parent 6492028fab
commit 010e2e2d3f
2 changed files with 9 additions and 0 deletions

View File

@ -936,6 +936,12 @@ const volVectorField& kinematicSingleLayer::Uw() const
}
const volScalarField& kinematicSingleLayer::deltaRho() const
{
return deltaRho_;
}
const surfaceScalarField& kinematicSingleLayer::phi() const
{
return phi_;

View File

@ -351,6 +351,9 @@ public:
//- Return the film wall velocity [m/s]
virtual const volVectorField& Uw() const;
//- Return the film thickness*density (helper field) [kg/m3]
virtual const volScalarField& deltaRho() const;
//- Return the film flux [kg.m/s]
virtual const surfaceScalarField& phi() const;