KeplerData.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection.Metadata.Ecma335;
  5. using System.Security.Principal;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Test;
  9. internal class PM
  10. {
  11. public Guid UID { get; set; }
  12. public DateTime Time { get; set; }
  13. public DataCollection<float> OnTime { get; set; }
  14. public DataCollection<float> Pressure { get; set; }
  15. public DataCollection<float> Mfcs { get; set; }
  16. public DataCollection<bool> IoSensor { get; set; }
  17. public DataCollection<PairValue<bool>> IoValve { get; set; }
  18. public DataCollection<Heater> IoHeater { get; set; }
  19. public HighTemperatureHeater HighTemperatureHeater { get; set; }
  20. public Lid Lid { get; set; }
  21. public MainPump MainPump { get; set; }
  22. public Match Match { get; set; }
  23. public PendulumValve pendulumValve { get; set; }
  24. public PV PV { get; set; }
  25. public RF RF { get; set; }
  26. public RFBox RFBox { get; set; }
  27. public SlitDoor SlitDoor { get; set; }
  28. public TurboPump TurboPump { get; set; }
  29. }
  30. internal class HighTemperatureHeater
  31. {
  32. public bool IsOn { get; set; }
  33. public bool HeaterDriverAlarm { get; set; }
  34. public float InnerCurrent { get; set; }
  35. public float InnerPower { get; set; }
  36. public float InnerResistance { get; set; }
  37. public float InnerVoltage { get; set; }
  38. public float MaxPower { get; set; }
  39. public float MinPower { get; set; }
  40. public float OuterCurrent { get; set; }
  41. public float OuterPower { get; set; }
  42. public float OuterResistance { get; set; }
  43. public float OuterVoltage { get; set; }
  44. public float Posi_Mm { get; set; }
  45. public float Position { get; set; }
  46. public float Power_Output { get; set; }
  47. public float PurgeN2Flow { get; set; }
  48. public float Ratio { get; set; }
  49. public float ShaftTCTemp { get; set; }
  50. public float SourceTCTemp { get; set; }
  51. public float Speed { get; set; }
  52. public float Temperature { get; set; }
  53. public float TemperatureSetPoint { get; set; }
  54. public float TM_Temp { get; set; }
  55. }
  56. internal class Heater
  57. {
  58. public PairValue<float> ControlTc { get; set; }
  59. public PairValue<bool> IsPowerOn { get; set; }
  60. }
  61. internal class Lid
  62. {
  63. public bool IsClosed { get; set; }
  64. }
  65. internal class MainPump
  66. {
  67. public bool IsError { get; set; }
  68. public bool IsRunning { get; set; }
  69. }
  70. internal class Match
  71. {
  72. public float C1 { get; set; }
  73. public float C2 { get; set; }
  74. public float DCBias { get; set; }
  75. public float Vpp { get; set; }
  76. }
  77. internal class PendulumValve
  78. {
  79. public bool IsOpen { get; set; }
  80. public PairValue<float> Position { get; set; }
  81. public PairValue<float> Pressure { get; set; }
  82. }
  83. internal class PV
  84. {
  85. public float ForwardPower { get; set; }
  86. public float GetPVPosition { get; set; }
  87. public Dictionary<string, float> Pressure { get; set; }
  88. public Dictionary<string, float> Flow { get; set; }
  89. }
  90. internal class RF
  91. {
  92. public float ForwardPower { get; set; }
  93. public float Frequency { get; set; }
  94. public bool IsPowerOn { get; set; }
  95. public float PowerSetPoint { get; set; }
  96. public float PulsingDutyCycle { get; set; }
  97. public float PulsingFrequency { get; set; }
  98. public float ReflectPower { get; set; }
  99. }
  100. internal class RFBox
  101. {
  102. public float C1 { get; set; }
  103. public float C2 { get; set; }
  104. public float DCBias { get; set; }
  105. public float Vpp { get; set; }
  106. }
  107. internal class SlitDoor
  108. {
  109. public bool IsClosed { get; set; }
  110. }
  111. internal class TurboPump
  112. {
  113. public float Temperature { get; set; }
  114. public bool IsTurboPumpAtSpeed { get; set; }
  115. }