|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- module CIrIbopPermission
- use COperationScenariosVariables
- implicit none
- contains
-
- subroutine Evaluate_IrIbopPermission()
- use TD_DrillStemComponents
- use CStudentStationVariables, only: FillupHeadInstallation
- implicit none
-
-
- if (DriveType == TopDrive_DriveType) then
- #ifdef OST
- print*, 'Evaluate_IrIbopPermission=TopDrive'
- #endif
-
-
- !TOPDRIVE-CODE=58
- if (GetRotaryRpm() == 0.0d0 .and.&
- Get_NearFloorConnection() >= 3 .and. Get_NearFloorConnection() <= 10 .and.&
- Get_JointConnectionPossible() == .false. .and.&
- Get_TdsConnectionModes() == TDS_CONNECTION_NOTHING .and.&
- FillupHeadInstallation == .false.) then
-
- call Set_IrIbopPermission(.true.)
- return
- end if
-
-
-
-
- call Set_IrIbopPermission(.false.)
-
-
-
- endif
-
-
-
-
-
- if (DriveType == Kelly_DriveType) then
- #ifdef OST
- print*, 'Evaluate_IrIbopPermission=Kelly'
- #endif
-
- !OPERATION-CODE=62
- if (GetRotaryRpm() == 0.0d0 .and.&
- Get_OperationCondition() == OPERATION_TRIP .and.&
- !(Get_ElevatorConnection() == ELEVATOR_CONNECTION_NOTHING .or. Get_ElevatorConnection() == ELEVATOR_LATCH_STRING) .and.&
- TD_TopJointHeight >= 3.0 .and. TD_TopJointHeight <= 10.0 .and.&
- !Get_IbopHeight() >= 22.0 .and. Get_IbopHeight() <= 35.0 .and.&
- Get_JointConnectionPossible() == .false. .and.&
- Get_Swing() == SWING_WELL_END .and.&
- Get_FillupHead() == FILLUP_HEAD_REMOVE) then
- call Set_IrIbopPermission(.true.)
- return
- end if
-
-
- !if (Get_OperationCondition() == OPERATION_DRILL .and.&
- ! Get_IbopHeight() >= 1 .and. Get_IbopHeight() <= 8 .and.&
- ! Get_NearFloorConnection() >= 1 .and. Get_NearFloorConnection() <= 8 .and.&
- ! Get_JointConnectionPossible() == .false. .and.&
- ! Get_KellyConnection() /= KELLY_CONNECTION_STRING .and.&
- ! Get_Swing() == SWING_WELL_END .and.&
- ! Get_Slips() == SLIPS_SET_END) then
- ! call Set_IrIbopPermission(.true.)
- ! return
- !end if
-
-
-
-
- call Set_IrIbopPermission(.false.)
-
-
-
- endif
-
-
-
-
-
-
- end subroutine
-
- subroutine Subscribe_IrIbopPermission()
- implicit none
- end subroutine
-
- end module CIrIbopPermission
|