BUG: Correcting adimensional formulation for fanPressureFvPatchScalarField

This commit is contained in:
sergio
2017-11-06 09:04:15 -08:00
parent 454e609fbc
commit 07e662a0ef

View File

@ -181,7 +181,7 @@ void Foam::fanPressureFvPatchScalarField::updateCoeffs()
{ {
// Create an adimensional flow rate // Create an adimensional flow rate
volFlowRate = 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 // Pressure drop for this flow rate
@ -190,7 +190,7 @@ void Foam::fanPressureFvPatchScalarField::updateCoeffs()
if (nonDimensional_) if (nonDimensional_)
{ {
// Convert the adimensional deltap from curve into deltaP // 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 totalPressureFvPatchScalarField::updateCoeffs