Skip to content
Snippets Groups Projects
Commit 4da97eef authored by andy's avatar andy
Browse files

ENH: Surface film - added new deltaMass function

parent 06f8cba3
Branches
Tags
No related merge requests found
......@@ -472,6 +472,9 @@ public:
//- Return the net film mass available over the next integration
inline tmp<volScalarField> netMass() const;
//- Return the change in film mass due to sources/sinks
inline tmp<volScalarField> deltaMass() const;
//- Return the gravity normal-to-patch component contribution
inline tmp<volScalarField> gNorm() const;
......
......@@ -198,6 +198,12 @@ inline tmp<volScalarField> kinematicSingleLayer::netMass() const
}
inline tmp<volScalarField> kinematicSingleLayer::deltaMass() const
{
return rhoSp_*magSf()*time().deltaT();
}
inline tmp<volScalarField> kinematicSingleLayer::gNorm() const
{
tmp<volScalarField> tgNorm
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment