Power consumption

Power consumption
Equation Description:
Calculate the power (Voltage X Current)
Equation Contents:

//A custom equation. Do not change equation name. Equation must return a value.
public double PowerConsume(double Input)
{
    //assume channel1 is the voltage and channel2 is the current
    return this.Channels[1].Measurement * this.Channels[2].Measurement;
}