ENH: Updated heat transfer coefficient calculation

This commit is contained in:
andy
2013-01-10 09:15:08 +00:00
parent beeb2650f7
commit 9553a60ab3
3 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ Foam::fv::constantHeatTransfer::constantHeatTransfer
AoV_().dimensionedInternalField();
dimensionedScalar interVol("V", dimVolume, meshInterp().V());
htc_.dimensionedInternalField() = htcConsti*AoVi*interVol/mesh.V();
htc_.dimensionedInternalField() = htcConsti*AoVi;
htc_.correctBoundaryConditions();
}
}

View File

@ -130,7 +130,7 @@ Foam::fv::tabulatedHeatTransfer::calculateHtc()
htcc[i] = hTable()(mag(U[i]), UMagNbrMapped[i]);
}
htcc = htcc*AoV()*meshInterp().V()/mesh_.V();
htcc = htcc*AoV();
return htc_;
}

View File

@ -120,7 +120,7 @@ Foam::fv::variableHeatTransfer::calculateHtc()
const scalarField htcNbrMapped(interpolate(htcNbr));
htc_.internalField() = htcNbrMapped*AoV_*meshInterp().V()/mesh_.V();
htc_.internalField() = htcNbrMapped*AoV_;
return htc_;
}