#include <codecogs/engineering/heat_transfer/convection/nusselt_intpipe.h>
using namespace Engineering::Heat_Transfer::Convection;
| double | Nusselt_intpipe (double Pr, double Gr, double Re)[inline] Returns the Nusselt number for a fluid going through a pipe. | |
| Real | cc_convectionNusselt_intpipe (Real Pr, Real Gr, Real Re) This function is available as a Microsoft Excel add-in. |
| doubleNusselt_intpipe( | double | Pr | |
| double | Gr | ||
| double | Re | )[inline] |

#include <codecogs/engineering/heat_transfer/convection/nusselt_intpipe.h> #include <stdio.h> int main() { double Pr = 0.70849, Gr = 384057065.8607, Re1 = 800, Re2 = 5100; printf("\nAir at 65 deg. Celsius\n"); printf("flowing through a pipe at 25 deg. Celsius\n\n"); printf("Re = %.2lf (laminar flow)\n", Re1); printf("Nu = %.4lf\n\n", Engineering::Heat_Transfer::Convection::Nusselt_intpipe(Pr, Gr, Re1)); printf("Re = %.2lf (turbulent flow)\n", Re2); printf("Nu = %.4lf\n\n", Engineering::Heat_Transfer::Convection::Nusselt_intpipe(Pr, Gr, Re2)); return 0; }
Air at 65 deg. Celsius flowing through a pipe at 25 deg. Celsius Re = 800.00 (laminar flow) Nu = 8.4761 Re = 5100.00 (turbulent flow) Nu = 16.7463
| Pr | the Prandtl number of the fluid |
| Gr | the Grashof number of the fluid |
| Re | the Reynolds number of the fluid |