|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- module CSlipsEnum
- use COperationScenariosVariables
- implicit none
- contains
-
- subroutine Evaluate_Slips()
- implicit none
-
- ! if (DriveType == TopDrive_DriveType) then
- !#ifdef OST
- ! print*, 'Evaluate_Slips=TopDrive'
- !#endif
- ! endif
- !
- !
- !
- !
- !
- !
- !
- !
- ! if (DriveType == Kelly_DriveType) then
- !#ifdef OST
- ! print*, 'Evaluate_Slips=Kelly'
- !#endif
- ! endif
-
- end subroutine
-
- ! subroutine Subscribe_Slips()
- ! use CDrillingConsoleVariables
- ! implicit none
-
- ! !call Set_Slips(SLIPS_SET)
-
- ! call OnSlipsPress%Add(ButtonPress_Slips)
- ! end subroutine
-
- subroutine ButtonPress_Slips()
- implicit none
-
-
-
-
-
- if (DriveType == TopDrive_DriveType) then
- #ifdef OST
- print*, 'ButtonPress_Slips=TopDrive'
- #endif
-
-
- !TOPDRIVE-CODE=30
- if (Get_Slips() == SLIPS_UNSET_END .and.&
- Get_SlipsNotification()) then
-
- call Set_Slips(SLIPS_SET_BEGIN)
- return
- end if
-
-
-
-
-
-
- !TOPDRIVE-CODE=31
- if (Get_TdsConnectionModes() == TDS_CONNECTION_STRING .and.&
- Get_Slips() == SLIPS_SET_END .and.&
- Get_SlipsNotification()) then
-
- call Set_Slips(SLIPS_UNSET_BEGIN)
- return
- end if
-
-
-
-
-
-
- !TOPDRIVE-CODE=32
- if (Get_TdsElevatorModes() == TDS_ELEVATOR_CONNECTION_STRING .and.&
- Get_Slips() == SLIPS_SET_END .and.&
- Get_SlipsNotification()) then
-
- call Set_Slips(SLIPS_UNSET_BEGIN)
- return
- end if
-
-
-
- endif
-
-
-
-
-
-
-
-
- if (DriveType == Kelly_DriveType) then
- #ifdef OST
- print*, 'ButtonPress_Slips=Kelly'
- #endif
-
- !OPERATION-CODE=19
- if (Get_Slips() == SLIPS_UNSET_END .and.&
- Get_SlipsNotification()) then
-
- call Set_Slips(SLIPS_SET_BEGIN)
- return
- end if
-
- !OPERATION-CODE=20
- if (Get_OperationCondition() == OPERATION_DRILL .and.&
- Get_KellyConnection() == KELLY_CONNECTION_STRING .and.&
- GetRotaryRpm() == 0.0d0 .and.&
- Get_SlipsNotification() .and.&
- Get_Slips() == SLIPS_SET_END) then
-
- call Set_Slips(SLIPS_UNSET_BEGIN)
- return
- end if
-
-
- !OPERATION-CODE=21
- if (Get_OperationCondition() == OPERATION_TRIP .and.&
- Get_ElevatorConnection() == ELEVATOR_CONNECTION_STRING .and.&
- GetRotaryRpm() == 0.0d0 .and.&
- Get_SlipsNotification() .and.&
- Get_Slips() == SLIPS_SET_END) then
-
- call Set_Slips(SLIPS_UNSET_BEGIN)
- return
- end if
-
-
-
-
-
-
- endif
-
-
-
-
-
-
-
-
-
- end subroutine
-
- end module CSlipsEnum
|