com.synerset.hvacengine.fluids.humidair.VapourState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hvac-engine Show documentation
Show all versions of hvac-engine Show documentation
HVAC|Engine is a comprehensive library for calculating moist air properties, including crucial thermodynamic
processes such as heating, dry cooling, real cooling with condensate discharge, mixing single or multiple air
streams, and more. Immutable, thread-safe, very accurate.
The newest version!
package com.synerset.hvacengine.fluids.humidair;
/**
* Enum representing the state of water vapor in humid air.
*/
public enum VapourState {
/**
* Represents unsaturated humid air, where the humidity is below the saturation point.
*/
UNSATURATED,
/**
* Represents saturated humid air, where the humidity is at the saturation point.
*/
SATURATED,
/**
* Represents the state of water mist, which is tiny water droplets suspended in the air.
*/
WATER_MIST,
/**
* Represents the state of ice fog, which is tiny ice crystals suspended in the air.
*/
ICE_FOG
}