rts-sim-module/component/iscs_bas_flow_switch.go

20 lines
551 B
Go
Raw Normal View History

package component
import (
"joylink.club/ecs"
)
// FlowSwitch 流量开关
2023-12-19 11:11:27 +08:00
// 具体异常-通信中断
//
// 主要是在水、气、油等介质管路中在线或者插入式安装监控水系统中水流量的大小。
// 在水流量高于或者低于某一个设定点时候触发输出报警信号传递给机组,
// 系统获取信号后即可作出相应的指示动作。避免或减少主机“干烧”。
type FlowSwitch struct {
2023-12-19 11:11:27 +08:00
Open bool //true-开启false-关闭
}
var (
FlowSwitchType = ecs.NewComponentType[FlowSwitch]()
)