Simulation Core
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

49 righe
977 B

  1. # 1 "/mnt/c/Projects/VSIM/SimulationCore2/CSharp/OperationScenarios/Notifications/CTdsPowerLedNotification.f90"
  2. module CTdsPowerLedNotification
  3. use OperationScenariosModule
  4. use SimulationVariables
  5. implicit none
  6. contains
  7. subroutine Evaluate_PowerLed()
  8. use CCommon
  9. implicit none
  10. if (data%Configuration%Hoisting%DriveType == TopDrive_DriveType) then
  11. # 15
  12. !TOPDRIVE-CODE=63
  13. if (data%Equipments%TopDrivePanel%TopDriveTdsPowerState == TdsPower_OFF) then
  14. call Set_PowerLed(.true.)
  15. return
  16. end if
  17. endif
  18. if (data%Configuration%Hoisting%DriveType == Kelly_DriveType) then
  19. # 35
  20. endif
  21. end subroutine
  22. ! subroutine Subscribe_PowerLed()
  23. ! implicit none
  24. ! end subroutine
  25. end module CTdsPowerLedNotification