diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C index bfc39c9197..320804a17d 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C @@ -55,7 +55,7 @@ void Foam::fanFvPatchField::calcFanJump() Un = 120.0*Un/pow3(constant::mathematical::pi) * patch().magSf() - / pow3(dm_); + / pow3(dm_)/rpm_; } } @@ -69,7 +69,7 @@ void Foam::fanFvPatchField::calcFanJump() scalarField deltap = this->jumpTable_->value(Un); // Convert adimensional deltap from curve into deltaP scalarField pdFan = - deltap*pow4(constant::mathematical::pi)*rpm_*sqr(dm_)/1800; + deltap*pow4(constant::mathematical::pi)*sqr(dm_*rpm_)/1800; this->jump_ = max(pdFan, scalar(0)); } else