Skip to content
Snippets Groups Projects
Commit 9553a60a authored by andy's avatar andy
Browse files

ENH: Updated heat transfer coefficient calculation

parent beeb2650
Branches
Tags
No related merge requests found
......@@ -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();
}
}
......
......@@ -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_;
}
......
......@@ -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_;
}
......
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