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

#include <codecogs/engineering/heat_transfer/convection/nusselt_flat.h> #include <stdio.h> int main() { double Pr = 233.7745380139, Re1 = 1700, Re2 = 4200; printf("\nEthylene Glycol at 17 deg. Celsius\n\n"); printf("Re = %.2lf (laminar flow)\n", Re1); printf("Nu = %.4lf\n\n", Engineering::Heat_Transfer::Convection::Nusselt_flat(Pr, Re1)); printf("Re = %.2lf (turbulent flow)\n", Re2); printf("Nu = %.4lf\n\n", Engineering::Heat_Transfer::Convection::Nusselt_flat(Pr, Re2)); return 0; }Output
Ethylene Glycol at 17 deg. Celsius Re = 1700.00 (laminar flow) Nu = 211.1873 Re = 4200.00 (turbulent flow) Nu = 17041.1869
| Pr | the Prandtl number of the fluid |
| 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