Comment style
This commit is contained in:
parent
d7d9cc59ee
commit
23a3dcfada
1 changed files with 18 additions and 1 deletions
|
@ -48,7 +48,7 @@ namespace Foam
|
|||
{
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class pressureDirectedInletVelocityFvPatch Declaration
|
||||
Class pressureDirectedInletVelocityFvPatchVectorField Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
class pressureDirectedInletVelocityFvPatchVectorField
|
||||
|
@ -57,8 +57,13 @@ class pressureDirectedInletVelocityFvPatchVectorField
|
|||
{
|
||||
// Private data
|
||||
|
||||
//- Name of flux field
|
||||
word phiName_;
|
||||
|
||||
//- Name of density field
|
||||
word rhoName_;
|
||||
|
||||
//- Inlet direction
|
||||
vectorField inletDir_;
|
||||
|
||||
|
||||
|
@ -163,6 +168,18 @@ public:
|
|||
return phiName_;
|
||||
}
|
||||
|
||||
//- Return inlet direction
|
||||
const vectorField& inletDir() const
|
||||
{
|
||||
return inletDir_;
|
||||
}
|
||||
|
||||
//- Return access to inlet direction
|
||||
vectorField& inletDir()
|
||||
{
|
||||
return inletDir_;
|
||||
}
|
||||
|
||||
|
||||
// Mapping functions
|
||||
|
||||
|
|
Reference in a new issue