///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
///
/// A pump controlled by a frequency inverter
/// using the test parameter 'Power' (0 .. 100.0f %)
///
public interface IPumpFM : IPump
{
///
/// Turns the frequency inverter on using 'power' argument (0 .. 100.0f %)
///
void TurnOn(float power);
///
/// Turns the frequency inverter off
///
void TurnOff();
///
/// Turns the frequency inverter on using 'power' argument (0 .. 100.0f %)
///
IOperation TurnOnOp(float power);
///
/// Turns the frequency inverter off
///
IOperation TurnOffOp();
}
}