This repository has been archived on 2024-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
Sic06/FrameworkLocal/RTEquipmentLibrary/PmDevices/DicMode.cs

33 lines
521 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aitex.Core.RT.Device.PmDevices
{
public class DicMode
{
public enum FlowMode
{
Purge,
Vent,
Run,
Close,
}
public enum ArH2Switch
{
Ar,
H2,
}
public enum HeaterControlMode
{
Power,
Pyro,
Hold
}
}
}