Skip to content
Snippets Groups Projects
Commit d1534b14 authored by Henry Weller's avatar Henry Weller Committed by Andrew Heather
Browse files

flowRateInletVelocity, flowRateOutletVelocity BCs: Updated docs

parent ab0d53f9
Branches
Tags
1 merge request!144Integration openfoam.org
...@@ -47,6 +47,7 @@ Usage ...@@ -47,6 +47,7 @@ Usage
Property | Description | Required | Default value Property | Description | Required | Default value
massFlowRate | mass flow rate [kg/s] | no | massFlowRate | mass flow rate [kg/s] | no |
volumetricFlowRate | volumetric flow rate [m3/s]| no | volumetricFlowRate | volumetric flow rate [m3/s]| no |
rho | density field name | no | rho
rhoInlet | inlet density | no | rhoInlet | inlet density | no |
extrapolateProfile | Extrapolate velocity profile | no | false extrapolateProfile | Extrapolate velocity profile | no | false
\endtable \endtable
......
...@@ -148,7 +148,7 @@ void Foam::flowRateOutletVelocityFvPatchVectorField::updateValues ...@@ -148,7 +148,7 @@ void Foam::flowRateOutletVelocityFvPatchVectorField::updateValues
{ {
const scalar t = db().time().timeOutputValue(); const scalar t = db().time().timeOutputValue();
const vectorField n = patch().nf(); const vectorField n(patch().nf());
// Extrapolate patch velocity // Extrapolate patch velocity
vectorField Up(this->patchInternalField()); vectorField Up(this->patchInternalField());
......
...@@ -46,7 +46,8 @@ Usage ...@@ -46,7 +46,8 @@ Usage
Property | Description | Required | Default value Property | Description | Required | Default value
massFlowRate | mass flow rate [kg/s] | no | massFlowRate | mass flow rate [kg/s] | no |
volumetricFlowRate | volumetric flow rate [m^3/s]| no | volumetricFlowRate | volumetric flow rate [m^3/s]| no |
rhoOutlet | outlet density | no | rho | density field name | no | rho
rhoOutlet | outlet density | no |
\endtable \endtable
Example of the boundary condition specification for a volumetric flow rate: Example of the boundary condition specification for a volumetric flow rate:
......
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