|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- module CCloseKellyCockLedNotification
- use OperationScenariosModule
- implicit none
- contains
-
- subroutine Evaluate_CloseKellyCockLed()
- implicit none
-
-
- ! if (DriveType == TopDrive_DriveType) then
- !#ifdef OST
- ! if(print_log) print*, 'Evaluate_CloseKellyCockLed=TopDrive'
- !#endif
- ! endif
- !
- !
- !
- !
- !
- !
- !
- !
- !
- !
- ! if (DriveType == Kelly_DriveType) then
- !#ifdef OST
- ! if(print_log) print*, 'Evaluate_CloseKellyCockLed=Kelly'
- !#endif
- ! endif
-
-
- end subroutine
-
- ! subroutine Subscribe_CloseKellyCockLed()
- ! use CDrillingConsoleVariables
- ! use ConfigurationVariables
- ! use ConfigurationVariables
- ! implicit none
- ! call OnCloseKellyCockPress%Add(ButtonPress_CloseKellyCock)
- ! end subroutine
-
- subroutine ButtonPress_CloseKellyCock()
- implicit none
-
-
- if (data%Configuration%Hoisting%DriveType == TopDrive_DriveType) then
- #ifdef OST
- if(print_log) print*, 'Evaluate_CloseKellyCockLed=TopDrive'
- #endif
- endif
-
- if (data%Configuration%Hoisting%DriveType == Kelly_DriveType) then
- #ifdef OST
- if(print_log) print*, 'Evaluate_CloseKellyCockLed=Kelly'
- #endif
-
- !OPERATION-CODE=66
- if (Get_OperationCondition() == OPERATION_DRILL .and.&
- Get_CloseKellyCockLed() == .false. .and.&
- Get_OpenKellyCockLed()) then
- call Set_OpenKellyCockLed(.false.)
- call Set_CloseKellyCockLed(.true.)
- return
- end if
-
-
- endif
-
-
-
-
-
-
- end subroutine
-
- end module CCloseKellyCockLedNotification
|