Files
CapMachine/CapMachine.Wpf/Models/ProModelPars/ProExFlag.cs
Tyrone CT 06ac590208 压缩机PTC 功能
参数控制,由跟随速度到单个大参数控制
2025-08-14 17:28:15 +08:00

51 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Models.ProModelPars
{
/// <summary>
/// 程序执行的标志信息
/// </summary>
public enum ProExFlag
{
/// <summary>
/// 没有特殊的标记
/// </summary>
None = 0,
/// <summary>
/// 压缩机 转速
/// </summary>
CapSpeed = 100,
/// <summary>
/// 压缩机PTC 功率SV1
/// 像速度一样这个执行不需要写入到PLC发给仪表控制直接发送给压缩机PTC控制
/// </summary>
CapPTCPw = 1,
/// <summary>
/// 压缩机PTC 功率SV2
/// 像速度一样这个执行不需要写入到PLC发给仪表控制直接发送给压缩机PTC控制
/// </summary>
CapPTCPw2 = 2,
/// <summary>
/// 压缩机PTC 目标水温
/// 像速度一样这个执行不需要写入到PLC发给仪表控制直接发送给压缩机PTC控制
/// </summary>
CapPTCWaterTemp = 3,
/// <summary>
/// 压缩机PTC 水流量
/// 像速度一样这个执行不需要写入到PLC发给仪表控制直接发送给压缩机PTC控制
/// </summary>
CapPTCWaterFlow = 4,
}
}