use of com.beanit.openiec61850.ModelNode in project Protocol-Adapter-IEC61850 by OSGP.
the class DistributionAutomationGetPQValuesRequestMessageProcessor method processPQValue.
private DataSampleDto processPQValue(final ModelNode node) {
Date ts = null;
String type = null;
BigDecimal value = null;
if (node.getChildren() != null) {
ts = this.findBdaTimestampNodeValue(node);
final ModelNode floatNode = this.findBdaFloat32NodeInConstructedDataAttribute(node);
if (floatNode != null) {
type = node.getName() + "." + floatNode.getParent().getName() + "." + floatNode.getName();
value = new BigDecimal(((BdaFloat32) floatNode).getFloat(), new MathContext(3, RoundingMode.HALF_EVEN));
}
}
return new DataSampleDto(type, ts, value);
}
use of com.beanit.openiec61850.ModelNode in project Protocol-Adapter-IEC61850 by OSGP.
the class Iec61850RtuDeviceReportingService method enableChpReportingOnDevice.
private void enableChpReportingOnDevice(final DeviceConnection connection, final String deviceIdentification) {
final ServerModel serverModel = connection.getConnection().getServerModel();
final String chpPrefix = LogicalDevice.CHP.getDescription();
int i = 1;
String logicalDeviceName = chpPrefix + i;
ModelNode chpNode = serverModel.getChild(this.serverName + logicalDeviceName);
while (chpNode != null) {
this.enableStatusReportingOnDevice(connection, deviceIdentification, LogicalDevice.CHP, i, DataAttribute.REPORT_STATUS_ONE);
this.enableMeasurementReportingOnDevice(connection, deviceIdentification, LogicalDevice.CHP, i, DataAttribute.REPORT_MEASUREMENTS_ONE);
i += 1;
logicalDeviceName = chpPrefix + i;
chpNode = serverModel.getChild(this.serverName + logicalDeviceName);
}
}
use of com.beanit.openiec61850.ModelNode in project Protocol-Adapter-IEC61850 by OSGP.
the class Iec61850RtuDeviceReportingService method enableRtuReportingOnDevice.
private void enableRtuReportingOnDevice(final DeviceConnection connection, final String deviceIdentification) {
final ServerModel serverModel = connection.getConnection().getServerModel();
final String rtuPrefix = LogicalDevice.RTU.getDescription();
int i = 1;
String logicalDeviceName = rtuPrefix + i;
ModelNode rtuNode = serverModel.getChild(this.serverName + logicalDeviceName);
while (rtuNode != null) {
this.enableStatusReportingOnDevice(connection, deviceIdentification, LogicalDevice.RTU, i, DataAttribute.REPORT_STATUS_ONE);
i += 1;
logicalDeviceName = rtuPrefix + i;
rtuNode = serverModel.getChild(this.serverName + logicalDeviceName);
}
}
use of com.beanit.openiec61850.ModelNode in project Protocol-Adapter-IEC61850 by OSGP.
the class Iec61850RtuDeviceReportingService method enablePvReportingOnDevice.
private void enablePvReportingOnDevice(final DeviceConnection connection, final String deviceIdentification) {
final ServerModel serverModel = connection.getConnection().getServerModel();
final String pvPrefix = LogicalDevice.PV.getDescription();
int i = 1;
String logicalDeviceName = pvPrefix + i;
ModelNode pvNode = serverModel.getChild(this.serverName + logicalDeviceName);
while (pvNode != null) {
this.enableStatusReportingOnDevice(connection, deviceIdentification, LogicalDevice.PV, i, DataAttribute.REPORT_STATUS_ONE);
this.enableMeasurementReportingOnDevice(connection, deviceIdentification, LogicalDevice.PV, i, DataAttribute.REPORT_MEASUREMENTS_ONE);
i += 1;
logicalDeviceName = pvPrefix + i;
pvNode = serverModel.getChild(this.serverName + logicalDeviceName);
}
}
use of com.beanit.openiec61850.ModelNode in project Protocol-Adapter-IEC61850 by OSGP.
the class RtuSimulator method addPvDevices.
private void addPvDevices(final ServerModel serverModel) {
final String pvPrefix = "PV";
int i = 1;
String logicalDeviceName = pvPrefix + i;
ModelNode pvNode = serverModel.getChild(this.getDeviceName() + logicalDeviceName);
while (pvNode != null) {
this.logicalDevices.add(new Pv(this.getDeviceName(), logicalDeviceName, serverModel));
i += 1;
logicalDeviceName = pvPrefix + i;
pvNode = serverModel.getChild(this.getDeviceName() + logicalDeviceName);
}
}
Aggregations