计轴区段

This commit is contained in:
xzb 2023-10-19 16:41:53 +08:00
parent 9b24b34c25
commit 994987bf5e

View File

@ -18,10 +18,14 @@ type AxleSectionState struct {
type AxleSectionDevice struct {
//计轴区段内车轴数
AxleCount int16
//true-正在进行计轴预复位
AxlePdrst bool
}
type AxleDeviceDrive struct {
//true-计轴直接复位
//计轴的轮对计数清零,区段转换为空闲状态
Drst bool
//true-计轴预复位
//将计轴的轮对计数清零,但是区段不会立即变成空闲区段,而是处于一种“占用”状态,在压道车通过之后确认区段空闲且计轴正常后,区段转换为空闲状态
Pdrst bool
}