Skip to content
Snippets Groups Projects
Commit 346770e0 authored by sergio's avatar sergio Committed by Mark OLESEN
Browse files

BUG: Correcting adimensional formulation for fanPressureFvPatchScalarField

parent b28502b3
Branches
Tags
No related merge requests found
......@@ -181,7 +181,7 @@ void Foam::fanPressureFvPatchScalarField::updateCoeffs()
{
// Create an adimensional flow rate
volFlowRate =
120.0*volFlowRate/pow3(constant::mathematical::pi)/pow3(dm_);
120.0*volFlowRate/pow3(constant::mathematical::pi)/pow3(dm_)/rpm_;
}
// Pressure drop for this flow rate
......@@ -190,7 +190,7 @@ void Foam::fanPressureFvPatchScalarField::updateCoeffs()
if (nonDimensional_)
{
// Convert the adimensional deltap from curve into deltaP
pdFan = pdFan*pow4(constant::mathematical::pi)*rpm_*sqr(dm_)/1800;
pdFan = pdFan*pow4(constant::mathematical::pi)*sqr(dm_*rpm_)/1800;
}
totalPressureFvPatchScalarField::updateCoeffs
......
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