public static enum MeasuringEvcs.ChannelId extends java.lang.Enum<MeasuringEvcs.ChannelId> implements ChannelId
Enum Constant and Description |
---|
CURRENT_OFFERED
Current offered.
|
CURRENT_TO_EV
Current to ev (import).
|
CURRENT_TO_GRID
Current to grid (export).
|
ENERGY_ACTIVE_TO_EV
Active energy to ev (import).
|
ENERGY_ACTIVE_TO_EV_INTERVAL
Active energy to EV (import) in an interval.
|
ENERGY_ACTIVE_TO_GRID
Active energy to grid (export).
|
ENERGY_ACTIVE_TO_GRID_INTERVAL
Active energy to grid (export) in an interval.
|
ENERGY_REACTIVE_TO_EV
Reactive energy to EV (import).
|
ENERGY_REACTIVE_TO_EV_INTERVAL
Reactive energy to EV (import) in an interval.
|
ENERGY_REACTIVE_TO_GRID
Reactive energy to grid (export).
|
ENERGY_REACTIVE_TO_GRID_INTERVAL
Reactive energy to grid (export) in an interval.
|
FREQUENCY
Frequency.
|
POWER_ACTIVE_TO_GRID
Active power to grid (export)
|
POWER_FACTOR
Power factor.
|
POWER_OFFERED
Power offered.
|
POWER_REACTIVE_TO_EV
Reactive power to EV (import).
|
POWER_REACTIVE_TO_GRID
Reactive power to grid (export).
|
RPM
Fan speed.
|
TEMPERATURE
Temperature.
|
VOLTAGE
Voltage.
|
Modifier and Type | Method and Description |
---|---|
Doc |
doc()
Gets the Channel Doc for this ChannelId.
|
static MeasuringEvcs.ChannelId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeasuringEvcs.ChannelId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
channelIdCamelToUpper, channelIdUpperToCamel, id, name, printChannelIdsForInfluxQuery
public static final MeasuringEvcs.ChannelId CURRENT_TO_GRID
Instantaneous current flow from EV
public static final MeasuringEvcs.ChannelId CURRENT_TO_EV
Instantaneous current flow to EV
public static final MeasuringEvcs.ChannelId CURRENT_OFFERED
Maximum current offered to EV
public static final MeasuringEvcs.ChannelId ENERGY_ACTIVE_TO_GRID
Numerical value read from the "active electrical energy" (Wh) register of the (most authoritative) electrical meter measuring the total energy exported (to the grid).
public static final MeasuringEvcs.ChannelId ENERGY_ACTIVE_TO_EV
Numerical value read from the "active electrical energy" (Wh) register of the (most authoritative) electrical meter measuring the total energy imported (from the grid supply).
public static final MeasuringEvcs.ChannelId ENERGY_REACTIVE_TO_GRID
Numerical value read from the "reactive electrical energy" (VARh or kVARh) register of the (most authoritative) electrical meter measuring energy exported (to the grid).
public static final MeasuringEvcs.ChannelId ENERGY_REACTIVE_TO_EV
Numerical value read from the "reactive electrical energy" (VARh or kVARh) register of the (most authoritative) electrical meter measuring energy imported (from the grid supply).
public static final MeasuringEvcs.ChannelId ENERGY_ACTIVE_TO_GRID_INTERVAL
Absolute amount of "active electrical energy" (Wh or kWh) exported (to the grid) during an associated time "interval", specified by a Metervalues ReadingContext, and applicable interval duration configuration values (in seconds) for "ClockAlignedDataInterval" and "MeterValueSampleInterval".
public static final MeasuringEvcs.ChannelId ENERGY_ACTIVE_TO_EV_INTERVAL
Absolute amount of "active electrical energy" (Wh or kWh) imported (from the grid supply) during an associated time "interval", specified by a Metervalues ReadingContext, and applicable interval duration configuration values (in seconds) for "ClockAlignedDataInterval" and "MeterValueSampleInterval".
public static final MeasuringEvcs.ChannelId ENERGY_REACTIVE_TO_GRID_INTERVAL
Absolute amount of "reactive electrical energy" (VARh or kVARh) exported (to the grid) during an associated time "interval", specified by a Metervalues ReadingContext, and applicable interval duration configuration values (in seconds) for "ClockAlignedDataInterval" and "MeterValueSampleInterval".
public static final MeasuringEvcs.ChannelId ENERGY_REACTIVE_TO_EV_INTERVAL
Absolute amount of "reactive electrical energy" (VARh or kVARh) imported (from the grid supply) during an associated time "interval", specified by a Metervalues ReadingContext, and applicable interval duration configuration values (in seconds) for "ClockAlignedDataInterval" and "MeterValueSampleInterval".
public static final MeasuringEvcs.ChannelId FREQUENCY
Instantaneous reading of powerline frequency. NOTE: OCPP 1.6 does not have a UnitOfMeasure for frequency, the UnitOfMeasure for any SampledValue with measurand: Frequency is Hertz.
public static final MeasuringEvcs.ChannelId POWER_ACTIVE_TO_GRID
Instantaneous active power exported by EV. (W or kW)
public static final MeasuringEvcs.ChannelId POWER_FACTOR
Instantaneous power factor of total energy flow
public static final MeasuringEvcs.ChannelId POWER_OFFERED
Maximum power offered to EV
public static final MeasuringEvcs.ChannelId POWER_REACTIVE_TO_GRID
Instantaneous reactive power exported by EV. (var or kvar)
public static final MeasuringEvcs.ChannelId POWER_REACTIVE_TO_EV
Instantaneous reactive power imported by EV. (var or kvar)
public static final MeasuringEvcs.ChannelId RPM
Fan speed in RPM
public static final MeasuringEvcs.ChannelId VOLTAGE
Instantaneous AC RMS supply voltage.
public static final MeasuringEvcs.ChannelId TEMPERATURE
Temperature reading inside Charge Point.
public static MeasuringEvcs.ChannelId[] values()
for (MeasuringEvcs.ChannelId c : MeasuringEvcs.ChannelId.values()) System.out.println(c);
public static MeasuringEvcs.ChannelId valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null