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

com.zepben.evolve.cim.iec61970.base.protection.CurrentRelay.kt Maven / Gradle / Ivy

There is a newer version: 0.24.0rc1
Show newest version
/*
 * Copyright 2022 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.protection

/**
 * A device that checks current flow values in any direction or designated direction.
 *
 * @property currentLimit1 Current limit number 1 for inverse time pickup in amperes.
 * @property inverseTimeFlag Set true if the current relay has inverse time characteristic.
 * @property timeDelay1 Inverse time delay number 1 for current limit number 1 in seconds.
 */
class CurrentRelay @JvmOverloads constructor(mRID: String = "") : ProtectionRelayFunction(mRID) {

    var currentLimit1: Double? = null
    var inverseTimeFlag: Boolean? = null
    var timeDelay1: Double? = null

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy