All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zepben.evolve.cim.iec61970.base.meas.Control.kt Maven / Gradle / Ivy

There is a newer version: 0.24.0rc1
Show newest version
/*
 * Copyright 2020 Zeppelin Bend Pty Ltd
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 */

package com.zepben.evolve.cim.iec61970.base.meas

import com.zepben.evolve.cim.iec61970.base.scada.RemoteControl

/**
 * Control is used for supervisory/device control. It represents control outputs that are used to change the state in a
 * process, e.g. close or open breaker, a set point value or a raise lower command.
 *
 * @property powerSystemResourceMRID Regulating device governed by this control output.
 * @property remoteControl The remote point controlling the physical actuator.
 */
class Control @JvmOverloads constructor(mRID: String = "") : IoPoint(mRID) {

    var powerSystemResourceMRID: String? = null
    var remoteControl: RemoteControl? = null
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy