|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- module CTdsSpineEnum
- use OperationScenariosModule
- use UnityModule
- use UnitySignalsModule !for CTdsConnectionModesEnum, only:Get_TdsConnectionModes
- implicit none
- contains
-
- subroutine Evaluate_TdsSpine()
- implicit none
-
- if (data%Configuration%Hoisting%DriveType == TopDrive_DriveType) then
- #ifdef OST
- print*, 'Evaluate_TdsSpine=TopDrive'
- #endif
-
- !TOPDRIVE-CODE=83
- if (Get_TdsStemIn() .and.&
- Get_TdsConnectionModes() == TDS_CONNECTION_NOTHING .and.&
- !Get_TdsConnectionPossible() .and.&
- data%Equipments%TopDrivePanel%TopDriveTdsPowerState == TdsPower_FWD .and.&
- data%Equipments%TopDrivePanel%TopDriveDrillTorqueState == TdsMu_SPINE) then
-
- call Set_TdsSpine(TDS_SPINE_CONNECT_BEGIN)
- return
- end if
-
- !TOPDRIVE-CODE=84
- if (Get_TdsStemIn() .and.&
- Get_TdsTong() == TDS_TONG_BREAKOUT_END .and.&
- Get_TdsConnectionModes() == TDS_CONNECTION_SPINE .and.&
- data%Equipments%TopDrivePanel%TopDriveTdsPowerState == TdsPower_REV .and.&
- data%Equipments%TopDrivePanel%TopDriveDrillTorqueState == TdsMu_SPINE) then
-
- call Set_TdsSpine(TDS_SPINE_DISCONNECT_BEGIN)
- return
- end if
-
-
-
- endif
-
-
-
-
-
-
-
-
-
- if (data%Configuration%Hoisting%DriveType == Kelly_DriveType) then
- #ifdef OST
- print*, 'Evaluate_TdsSpine=Kelly'
- #endif
- endif
-
- end subroutine
-
- subroutine Subscribe_TdsSpine()
- use CDrillingConsoleVariables
- use SimulationVariables
- use SimulationVariables
- implicit none
- end subroutine
-
- end module CTdsSpineEnum
|