Or login with:
| doubleNusselt_extpipe( | double | Pr | |
| double | Prw | ||
| double | Re | )[inline] |

#include <codecogs/engineering/heat_transfer/convection/nusselt_extpipe.h> #include <stdio.h> int main() { double Pr = 0.71977, Prw = 6.5870, Re1 = 1300, Re2 = 6000; printf("\nWater at 50 deg. Celsius\n"); printf("flowing over a pipe at 20 deg. Celsius\n\n"); printf("Re = %.2lf (laminar flow)\n", Re1); printf("Nu = %.4lf\n\n", Engineering::Heat_Transfer::Convection::Nusselt_extpipe(Pr, Prw, Re1)); printf("Re = %.2lf (turbulent flow)\n", Re2); printf("Nu = %.4lf\n\n", Engineering::Heat_Transfer::Convection::Nusselt_extpipe(Pr, Prw, Re2)); return 0; }
Water at 50 deg. Celsius flowing over a pipe at 20 deg. Celsius Re = 1300.00 (laminar flow) Nu = 9.1475 Re = 6000.00 (turbulent flow) Nu = 23.4526
| Pr | the Prandtl number of the fluid |
| Prw | the Prandtl number of the fluid at the temperature of the wall |
| Re | the Reynolds number of the fluid |
Source code is available when you buy a Commercial licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.
You must login to leave a messge