19 lines
427 B
C#
19 lines
427 B
C#
///
|
|
/// Copyright (c) 2017-2019 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TBF.Rig.GenericDevices
|
|
{
|
|
public interface ITankDraining : ISequenceCondition
|
|
{
|
|
IValve DrainValve { get; }
|
|
bool IsEmpty();
|
|
bool ContainsMoreThen(float thld);
|
|
double EvaporationRate(double temperature); /// Returns evaporation rate in kg/s
|
|
}
|
|
}
|