All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.synerset.hvacengine.process.mixing.AirMixingResult Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.2.0
Show newest version
package com.synerset.hvacengine.process.mixing;

import com.synerset.hvacengine.fluids.humidair.FlowOfHumidAir;

import java.util.List;

/**
 * The AirMixingResult record represents the result of a mixing process.
 */
public record AirMixingResult(FlowOfHumidAir inletFlow,
                              List recirculationFlows,
                              FlowOfHumidAir outletFlow) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy