18 lines
495 B
C#
18 lines
495 B
C#
///
|
|
/// Copyright (c) 2019 Sensus Slovensko a.s.
|
|
///
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IEvaporation : IComponent
|
|
{
|
|
/// <summary>
|
|
/// For a given temperature in [°C] returns evaporation rate in [kg/s]
|
|
/// </summary>
|
|
/// <param name="flow">Water temperature in [°C]</param>
|
|
/// <returns>Evaporation rate in [kg/s]</returns>
|
|
double EvaporationRate(double temperature);
|
|
}
|
|
}
|