Calculates heat losses from walls of process heating equipment to the ambient.
|
struct | WallType |
| Represents a wall type and its associated shape factor used in heat loss calculations. More...
|
|
|
const std::vector< WallType > & | wallTypes () |
| Retrieves the predefined shape factors for various wall types.
|
|
double | totalHeatLoss (double surface_area, double ambient_temperature, double surface_temperature, double wind_speed, double surface_emissivity, double shape_factor, double correction_factor) |
| Calculates the total heat loss from a wall to the ambient (convective + radiative).
|
|
double | convectiveHeatLoss (double shape_factor, double wind_speed, double surface_area, double surface_temperature, double ambient_temperature) |
| Computes the convective heat loss from the wall to the ambient.
|
|
double | radiativeHeatLoss (double surface_emissivity, double surface_area, double surface_temperature, double ambient_temperature) |
| Calculates the radiative heat loss from the wall to the ambient.
|
|
|
const std::array< WallType, 7 > | kWallTypes |
| Predefined shape factors for various wall types.
|
|