Or login with:
| doublePrandtl( | double | mu | |
| double | a | )[inline] |
#include <codecogs/engineering/heat_transfer/convection/parameters.h> #include <stdio.h> int main() { double mu = 2.1936E-5, a = 9.3834E-8; printf("\nEthylene Glycol at 17 deg. Celsius\n\n"); printf("Pr = %.4lf\n\n", Engineering::Heat_Transfer::Convection::Prandtl(mu, a)); return 0; }
Ethylene Glycol at 17 deg. Celsius Pr = 233.7745
| mu | the kinematic viscosity (sq. meters per second) |
| a | the thermal diffusivity (sq. meters per second) |
Source code is available when you agree to a GP Licence or buy a Commercial Licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.
| doubleGrashof( | double | mu | |
| double | beta | ||
| double | dT | ||
| double | L | )[inline] |
#include <codecogs/engineering/heat_transfer/convection/parameters.h> #include <stdio.h> int main() { double mu = 1.5571E-5, beta = 3.3540E-3, dT = 10, L = 0.1; printf("\nAir at 25 deg. Celsius\n\n"); printf("Gr = %.4lf\n\n", Engineering::Heat_Transfer::Convection::Grashof(mu, beta, dT, L)); return 0; }
Air at 25 deg. Celsius Gr = 1356596.6005
| mu | the kinematic viscosity (sq. meters per second) |
| beta | the thermal expansion coefficient (1 / Kelvin) |
| dT | the temperature difference (Kelvin) |
| L | the characteristic length (meters) |
Source code is available when you agree to a GP Licence or buy a Commercial Licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.
| doubleReynolds( | double | mu | |
| double | w | ||
| double | L | )[inline] |
#include <codecogs/engineering/heat_transfer/convection/parameters.h> #include <stdio.h> int main() { double mu = 1.1203E-5, velocity = 5, length = 1.5, Re = Engineering::Heat_Transfer::Convection::Reynolds(mu, velocity, length); printf("Carbon Dioxide at 75 deg. Celsius\n\n"); printf("Re = %.4lf\n", Re); if (Re < 2000) printf("Laminar flow.\n"); else if (Re > 4000) printf("Turbulent flow.\n"); else printf("Unpredictable flow (critical zone).\n"); printf("\n"); return 0; }
Carbon Dioxide at 75 deg. Celsius Re = 669463.5366 Turbulent flow.
| mu | kinematic viscosity of fluid (sq. meters per second) |
| w | mean velocity of flow (meters per second) |
| L | characteristic length (meters) |
Source code is available when you agree to a GP Licence or buy a Commercial Licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.
You must login to leave a messge