ProximaSystem.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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
  61. {
  62. public float FIMSCycledCount { get; set; }
  63. public bool IsError { get; set; }
  64. public bool IsOnline { get; set; }
  65. }
  66. public class LoadPort
  67. {
  68. public float CasstleType { get; set; }
  69. public float InfoPadCarrierIndex { get; set; }
  70. public float IntAccessMode { get; set; }
  71. public float IntAccessStatus { get; set; }
  72. public float IntAssociationState { get; set; }
  73. public float IntCarrierIDStatus { get; set; }
  74. public float IntReserveState { get; set; }
  75. public float IntSlotMapStatus { get; set; }
  76. public float IntTransferState { get; set; }
  77. public bool IsAccessSwPressed { get; set; }
  78. public bool IsAutoDetectCarrierType { get; set; }
  79. public bool IsClamped { get; set; }
  80. public bool IsDocked { get; set; }
  81. public bool IsDoorOpen { get; set; }
  82. public bool IsError { get; set; }
  83. public bool IsFoupPresent { get; set; }
  84. public bool IsMapped { get; set; }
  85. public bool IsOnline { get; set; }
  86. public bool IsPlaced { get; set; }
  87. public bool IsPresent { get; set; }
  88. public bool IsVerifyPreDefineWaferCount { get; set; }
  89. public float PreDefineWaferCount { get; set; }
  90. }
  91. public class Schedule : GeneralDB
  92. {
  93. public bool CoolingRemainTime { get; set; }
  94. public bool CoolingTime { get; set; }
  95. public bool CycledCount { get; set; }
  96. public bool CycledTotalWafer { get; set; }
  97. public bool CycledWafer { get; set; }
  98. public bool CycleSetPoint { get; set; }
  99. }
  100. public class Stocker
  101. {
  102. public bool CassetteHasWafer { get; set; }
  103. public bool FoupPresent { get; set; }
  104. public bool IsError { get; set; }
  105. public bool IsOnline { get; set; }
  106. public bool StatusAbnormal { get; set; }
  107. }
  108. public class Heater
  109. {
  110. public float CascadeControlModeSV { get; set; }
  111. public float CascadePID_D { get; set; }
  112. public float CascadePID_I { get; set; }
  113. public float CascadePID_P { get; set; }
  114. public float CascadePV { get; set; }
  115. public float ControlMode { get; set; }
  116. public float DownRate { get; set; }
  117. public float HeaterControlModeSV { get; set; }
  118. public float HeaterPID_D { get; set; }
  119. public float HeaterPID_I { get; set; }
  120. public float HeaterPID_P { get; set; }
  121. public float HeaterPV { get; set; }
  122. public bool IsAutoManual { get; set; }
  123. public bool IsCascadeMode { get; set; }
  124. public bool IsCascadePVBreak { get; set; }
  125. public bool IsEnableIn { get; set; }
  126. public bool IsEnableOutput { get; set; }
  127. public bool IsHeaterPVBreak { get; set; }
  128. public bool IsSelect { get; set; }
  129. public float OverTemp { get; set; }
  130. public float TCOpenOffsetOffset { get; set; }
  131. public float TempFeedback { get; set; }
  132. public float TempOffset { get; set; }
  133. public float TempSetPoint { get; set; }
  134. public float UpRate { get; set; }
  135. public float WorkingOutput { get; set; }
  136. }
  137. public class System : GeneralDB
  138. {
  139. public bool HasActiveAlarm { get; set; }
  140. public bool IsAlarm { get; set; }
  141. public bool IsAlarmConditionBuzzerOn { get; set; }
  142. public bool IsAutoRunning { get; set; }
  143. public bool IsBusy { get; set; }
  144. public bool IsIdle { get; set; }
  145. public bool IsInitialized { get; set; }
  146. public bool IsRecipeEditView { get; set; }
  147. public bool IsSpoolingEnable { get; set; }
  148. public bool SpoolingState { get; set; }
  149. }