module COpenSafetyValveLedNotification use COperationScenariosVariables implicit none contains subroutine Evaluate_OpenSafetyValveLed() implicit none ! if (DriveType == TopDrive_DriveType) then !#ifdef OST ! print*, 'Evaluate_OpenSafetyValveLed=TopDrive' !#endif ! endif ! ! ! ! ! ! ! ! ! if (DriveType == Kelly_DriveType) then !#ifdef OST ! print*, 'Evaluate_OpenSafetyValveLed=Kelly' !#endif ! endif end subroutine ! subroutine Subscribe_OpenSafetyValveLed() ! use CDrillingConsoleVariables ! implicit none ! call OnOpenSafetyValvePress%Add(ButtonPress_OpenSafetyValve) ! call OnOperationConditionChangeInt%Add(Set_Operation_OpenSafetyValveLed) ! end subroutine subroutine Set_Operation_OpenSafetyValveLed(v) implicit none integer , intent(in) :: v #ifdef ExcludeExtraChanges if(operation_OpenSafetyValveLed == v) return #endif operation_OpenSafetyValveLed = v #ifdef deb print*, 'operation_OpenSafetyValveLed=', operation_OpenSafetyValveLed #endif end subroutine subroutine ButtonPress_OpenSafetyValve() implicit none if (DriveType == TopDrive_DriveType) then #ifdef OST print*, 'ButtonPress_OpenSafetyValve=TopDrive' #endif !TOPDRIVE-CODE=56 if (Get_SafetyValveHeight() >= 3.0 .and. Get_SafetyValveHeight() <= 12.0 .and.& Get_OpenSafetyValveLed() == .false. .and.& Get_CloseSafetyValveLed()) then call Set_CloseSafetyValveLed(.false.) call Set_OpenSafetyValveLed(.true.) return end if endif if (DriveType == Kelly_DriveType) then #ifdef OST print*, 'ButtonPress_OpenSafetyValve=Kelly' #endif !OPERATION-CODE=58 if (Get_SafetyValveHeight() >= 3.0 .and. Get_SafetyValveHeight() <= 12.0 .and.& Get_OpenSafetyValveLed() == .false. .and.& Get_CloseSafetyValveLed()) then call Set_OpenSafetyValveLed(.true.) call Set_CloseSafetyValveLed(.false.) return end if endif end subroutine end module COpenSafetyValveLedNotification