ProximaSystem.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. namespace DB_Proxima;
  2. public class ProximaSystem
  3. {
  4. public Boat? Boat { get; set; }
  5. public System? System { get; set; }
  6. public Schedule? Schedule { get; set; }
  7. public CarrierRobot? CarrierRobot { get; set; }
  8. public WaferRobot? WaferRobot { get; set; }
  9. public DataCollection<FIMS>? FIMS { get; set; }
  10. public DataCollection<LoadPort>? LPs { get; set; }
  11. public DataCollection<Stocker>? Stockers { get; set; }
  12. public DataCollection<Heater>? Heaters { get; set; }
  13. }
  14. public class Boat : GeneralDB
  15. {
  16. public float BoatTestCycledCount { get; set; }
  17. public bool IsError { get; set; }
  18. public bool IsOnline { get; set; }
  19. public float ShutterCycledCount { get; set; }
  20. }
  21. public class CarrierRobot : GeneralDB
  22. {
  23. public float CurrentExtensionPosition { get; set; }
  24. public float CurrentThetaPosition { get; set; }
  25. public float CycleSwapCycledCount { get; set; }
  26. public bool IsCommandExecutionReady { get; set; }
  27. public bool IsControllerBatteryLow { get; set; }
  28. public bool IsError { get; set; }
  29. public bool IsErrorOccurred { get; set; }
  30. public bool IsManipulatorBatteryLow { get; set; }
  31. public bool IsOnline { get; set; }
  32. public bool IsPause { get; set; }
  33. public bool IsServoON { get; set; }
  34. public bool IsWaferPresenceOnBlade1 { get; set; }
  35. public float SwapCycledCount { get; set; }
  36. public bool TPStatus { get; set; }
  37. }
  38. public class WaferRobot : GeneralDB
  39. {
  40. public bool CurrentArm1Position { get; set; }
  41. public bool CurrentArm2Position { get; set; }
  42. public bool CurrentExtensionPosition { get; set; }
  43. public bool CurrentThetaPosition { get; set; }
  44. public bool CurrentZPosition { get; set; }
  45. public bool IsCommandExecutionReady { get; set; }
  46. public bool IsControllerBatteryLow { get; set; }
  47. public bool IsErrorOccurred { get; set; }
  48. public bool IsManipulatorBatteryLow { get; set; }
  49. public bool IsOnline { get; set; }
  50. public bool IsPause { get; set; }
  51. public bool IsServoON { get; set; }
  52. public bool IsWaferPresenceOnBlade1 { get; set; }
  53. public bool IsWaferPresenceOnBlade2 { get; set; }
  54. public bool IsWaferPresenceOnBlade3 { get; set; }
  55. public bool IsWaferPresenceOnBlade4 { get; set; }
  56. public bool IsWaferPresenceOnBlade5 { get; set; }
  57. public bool SwapCycledCount { get; set; }
  58. public bool TPStatus { get; set; }
  59. }
  60. public class FIMS : IBasicInfo
  61. {
  62. public Guid UID { get; set; }
  63. public DateTime Time { get; set; }
  64. public string? Name { get; set; }
  65. public float FIMSCycledCount { get; set; }
  66. public bool IsError { get; set; }
  67. public bool IsOnline { get; set; }
  68. }
  69. public class LoadPort : IBasicInfo
  70. {
  71. public Guid UID { get; set; }
  72. public DateTime Time { get; set; }
  73. public string? Name { get; set; }
  74. public float CasstleType { get; set; }
  75. public float InfoPadCarrierIndex { get; set; }
  76. public float IntAccessMode { get; set; }
  77. public float IntAccessStatus { get; set; }
  78. public float IntAssociationState { get; set; }
  79. public float IntCarrierIDStatus { get; set; }
  80. public float IntReserveState { get; set; }
  81. public float IntSlotMapStatus { get; set; }
  82. public float IntTransferState { get; set; }
  83. public bool IsAccessSwPressed { get; set; }
  84. public bool IsAutoDetectCarrierType { get; set; }
  85. public bool IsClamped { get; set; }
  86. public bool IsDocked { get; set; }
  87. public bool IsDoorOpen { get; set; }
  88. public bool IsError { get; set; }
  89. public bool IsFoupPresent { get; set; }
  90. public bool IsMapped { get; set; }
  91. public bool IsOnline { get; set; }
  92. public bool IsPlaced { get; set; }
  93. public bool IsPresent { get; set; }
  94. public bool IsVerifyPreDefineWaferCount { get; set; }
  95. public float PreDefineWaferCount { get; set; }
  96. }
  97. public class Schedule : GeneralDB
  98. {
  99. public bool CoolingRemainTime { get; set; }
  100. public bool CoolingTime { get; set; }
  101. public bool CycledCount { get; set; }
  102. public bool CycledTotalWafer { get; set; }
  103. public bool CycledWafer { get; set; }
  104. public bool CycleSetPoint { get; set; }
  105. }
  106. public class Stocker : IBasicInfo
  107. {
  108. public Guid UID { get; set; }
  109. public DateTime Time { get; set; }
  110. public string? Name { get; set; }
  111. public bool CassetteHasWafer { get; set; }
  112. public bool FoupPresent { get; set; }
  113. public bool IsError { get; set; }
  114. public bool IsOnline { get; set; }
  115. public bool StatusAbnormal { get; set; }
  116. }
  117. public class Heater : IBasicInfo
  118. {
  119. public Guid UID { get; set; }
  120. public DateTime Time { get; set; }
  121. public string? Name { get; set; }
  122. public float CascadeControlModeSV { get; set; }
  123. public float CascadePID_D { get; set; }
  124. public float CascadePID_I { get; set; }
  125. public float CascadePID_P { get; set; }
  126. public float CascadePV { get; set; }
  127. public float ControlMode { get; set; }
  128. public float DownRate { get; set; }
  129. public float HeaterControlModeSV { get; set; }
  130. public float HeaterPID_D { get; set; }
  131. public float HeaterPID_I { get; set; }
  132. public float HeaterPID_P { get; set; }
  133. public float HeaterPV { get; set; }
  134. public bool IsAutoManual { get; set; }
  135. public bool IsCascadeMode { get; set; }
  136. public bool IsCascadePVBreak { get; set; }
  137. public bool IsEnableIn { get; set; }
  138. public bool IsEnableOutput { get; set; }
  139. public bool IsHeaterPVBreak { get; set; }
  140. public bool IsSelect { get; set; }
  141. public float OverTemp { get; set; }
  142. public float TCOpenOffsetOffset { get; set; }
  143. public float TempFeedback { get; set; }
  144. public float TempOffset { get; set; }
  145. public float TempSetPoint { get; set; }
  146. public float UpRate { get; set; }
  147. public float WorkingOutput { get; set; }
  148. }
  149. public class System : IBasicInfo
  150. {
  151. public Guid UID { get; set; }
  152. public DateTime Time { get; set; }
  153. public string? Name { get; set; }
  154. public bool HasActiveAlarm { get; set; }
  155. public bool IsAlarm { get; set; }
  156. public bool IsAlarmConditionBuzzerOn { get; set; }
  157. public bool IsAutoRunning { get; set; }
  158. public bool IsBusy { get; set; }
  159. public bool IsIdle { get; set; }
  160. public bool IsInitialized { get; set; }
  161. public bool IsRecipeEditView { get; set; }
  162. public bool IsSpoolingEnable { get; set; }
  163. public float SpoolingState { get; set; }
  164. }
  165. public class AlarmSignalHeater : IBasicInfo
  166. {
  167. public Guid UID { get; set; }
  168. public DateTime Time { get; set; }
  169. public string? Name { get; set; }
  170. }