Go to Parker.com
  • Sign in
Technologies
  • Aerospace
  • Climate Control
  • Electromechanical Group
  • Filtration
  • Fluid and Gas Handling
  • Hydraulics
  • IoT
  • Pneumatics
  • Process Control
  • Sealing and Shielding
Other Groups
  • Parker Indego
Blogs Forums Knowledge Bases
Parker Community
Parker Community
  • Technologies
    • Aerospace
    • Climate Control
    • Electromechanical Group
    • Filtration
    • Fluid and Gas Handling
    • Hydraulics
    • IoT
    • Pneumatics
    • Process Control
    • Sealing and Shielding
    Other Groups
    • Parker Indego
    Blogs Forums Knowledge Bases
  • User
  • Site
  • Search
  • User
Home Technologies Electromechanical Group Electromechanical - Industrial Electromechanical Industrial Knowledge Base IPA Software - Example - Error Recovery Program
Electromechanical - Industrial
  • Technologies
  • Electromechanical Group
  • Electromechanical - Industrial
  • More
  • Cancel
Electromechanical - Industrial
Electromechanical Industrial Knowledge Base IPA Software - Example - Error Recovery Program
  • Electromechanical – Industrial Support Forum
  • Electromechanical Industrial Knowledge Base
  • Members
  • Sub Groups
  • More
  • Cancel
  • New
Electromechanical - Industrial requires membership for participation - click to join
  • Electromechanical Knowledge Base & Frequently Asked Questions
  • Motion and Machine Controllers+
  • General Technology Information+
  • Virtual Engineer+
  • Visualization and Human Machine Interface (HMI)+
  • Servo Drives and Servo Drive/Controllers-
    • Aries Drive (Discontinued)+
    • Compax3+
    • Dynaserv (Discontinued)+
    • Gemini (Legacy)+
    • IPA Drive/Controller-
      • IPA Accessories - IPA as Ethernet/IP Scanner for Ethernet/IP I/O Adapter Devices (Video)
      • IPA Cables - P Series Motors to IPA
      • IPA Hardware - Connector Part Numbers
      • IPA Hardware - DC Power
      • IPA Hardware - Does the IPA Have Battery Backed Memory or Flash?
      • IPA Hardware - MX80L Limit/Home Wiring
      • IPA Hardware - Short Circuit Current Rating (SCCR)
      • IPA Hardware - Torque Enable Inputs Circuit (Example Wiring)
      • IPA Hardware - What is the minimum regen (braking) resistor value allowed?
      • IPA Misc - Letter of Volatility
      • IPA Misc - Absolute Encoder Compatibility (BiSS-B and BiSS-C)
      • IPA Misc - Absolute Encoder Compatibility (EnDat)
      • IPA Misc - Aries Controller Replacement
      • IPA Misc - How to Calculate Regeneration
      • IPA Misc - How to Change the IP Address
      • IPA Misc - IPA with Allen-Bradley Ethernet/IP with ETH Actuator (Video)
      • IPA Software - Add On Instructions Tutorial for Allen-Bradley Logix PLCs (Training Video)
      • IPA Software - Add-On Instructions
      • IPA Software - Analog Input Parameters, Filtering, Example Joystick Program (Video)
      • IPA Software - Assigning Limit and Home Inputs (HLBIT)
      • IPA Software - Basic Tuning using ACR-View
      • IPA Software - Change Direction of Travel (What is Positive/Negative Motion)
      • IPA Software - Communicating via ASCII over Ethernet TCP/IP
      • IPA Software - Configuration Parameter for the Feedback Type
      • IPA Software - Ethernet/IP with Allen-Bradley or Omron PLCs
      • IPA Software - Example - Ballscrew Compensation / Slope Correction
      • IPA Software - Example - Cable Winding Application
      • IPA Software - Example - Error Recovery Program
      • IPA Software - Example - Excel Spreadsheet to Upload/Download Arrays
      • IPA Software - Example - How to Home to a Hardstop
      • IPA Software - Example - Interact Xpress HMI
      • IPA Software - Example - Torque Limited Move for Clamping (with Video)
      • IPA Software - How does motion work in the ACR products (ARC7xxx, ACR9xxx, IPA, Aries-CE)
      • IPA Software - How to Change the Home Start Direction and Other Home Settings
      • IPA Software - How to Save Servo Gains
      • IPA Software - INTCAP (Position Capture)
      • IPA Software - Resetting/Setting Absolute Encoder Position and Setting Multi-Turn Range
      • IPA Software - Torque Enable Inputs Functionality
      • IPA Software - User Variables and Bits (Which are retained?)
      • IPA Troubleshooting - Endat Absolute Encoders with IPA-Feedback Errors
      • IPA Troubleshooting - ETT Actuator Noise
      • IPA Troubleshooting - PC communications (Ethernet)
      • IPA Troubleshooting - Watchdog Timeout Event Triggered or Reconnect Event Triggered Error (ACR-View)
      • IPA Troubleshooting - Why Can't I Access Parameters P0 - P4095 From My HMI or GUI?
    • P Series+
    • PSD - High Performance Servo Drive+
    • ViX (Legacy)+
  • Stepper Drives and Stepper Drive/Controller+
  • Gearheads+
  • AC and DC Drives and Inverters+
  • Servo Motors+
  • Step Motors+
  • Linear and Rotary Positioners+
  • Electric Cylinders+
  • T-Slot Aluminum Framing+
  • C3 + Xpress + ETH+
  • How can I stay updated on Parker electromechanical and drives product news?
  • Legacy (Discontinued)+
  • Other+
  • Memorandum: Information on EPA ban of Persistent bioaccumulative toxin (PBT)
  • What replaces the Gemini GV6K servo drive controller?
Wiki Actions
  • Share
  • More
  • Cancel
Community Quick Links
  • Home
  • Technologies
    • Aerospace
      • Supplier Resource Center
    • Climate Control
    • Electromechanical Group
      • Electromechanical - Industrial
      • Electromechanical – Mobile
    • Filtration
    • Fluid and Gas Handling
    • Hydraulics
    • IoT
      • Mobile IoT
    • Pneumatics
      • Pneumatic Industrial
      • Pneumatics Mobile
    • Process Control
    • Sealing and Shielding
  • Other Groups
    • Parker Indego
      • Parker Indego Instructors
      • Parker Indego Therapists
      • Parker Indego Distributors
  • Community Blogs
  • Community Forums
  • Community Knowledge Bases
Follow Us
  • Follow Parker Hannifin on social media

Follow Parker Hannifin on social media:

IPA Software - Example - Error Recovery Program

Print Friendly and PDF

This can be set as any non-motion Program 1-15 and it will monitor the IPA status for faults and handle errors and recover. This is provided as a program sample:

IPA_error_recovery.txt

PROGRAM

PBOOT

REM error recovery program

_LOOP

IF (BIT8467)

REM Kill all motion was signaled, check causes

IF (BIT8465)

REM DRIVE IS STILL ENABLED

GOSUB CheckLimits

ELSE IF (BIT10009)

REM TORQUE ENABLE INPUT WAS OPENED

GOSUB CheckTorqueEnable

ELSE IF (BIT9498)

REM DRIVE FAULTED

AXIS0 DRIVE RES

INH -8475 : REM WAIT FOR RESET TO COMPLETE

IF (BIT9498)

GOTO FaultLatched

ENDIF

ELSE IF (BIT8479)

REM EXCESS POSTION ERROR WAS TRIPPED

CLR 8467 CLR 522

ENDIF

ENDIF

ENDIF

IF (NOT BIT8467)

rem kill has been cleared, restart prog0

RUN PROG0

ENDIF

GOTO LOOP

_CheckTorqueEnable

IF (BIT10011)

REM torque enable inputs mismatch

REM requires a HARD power cycle

? "TORQUE ENABLE HEALTH EVENT"
? " CYCLE POWER"

GOTO FaultLatched

ENDIF

WHILE (BIT10010)

REM WAIT HERE UNTIL THE INPUT IS CLOSED

WEND

CLR 8467

AXIS0 DRIVE ON

RUN PROG0

RETURN

_CheckLimits

IF (BIT16132 OR BIT16133)

REM HARD LIMIT WAS HIT

CLR 8467

CLR 522

ENDIF

IF (BIT16136 OR BIT16137)

REM SOFT LIMIT WAS HIT

CLR 8467

CLR 522

ENDIF

RETURN

_FaultLatched

?"DRIVE FAULT DID NOT CLEAR, CHECK HARDWARE"

?"requires a HARD power cycle"

END

ENDP

 

 

3/15jh

  • Share
  • History
  • More
  • Cancel
Anonymous
Related
Follow Us
  • Follow Parker Hannifin on social media

Follow Parker Hannifin on social media:

Parker Hannifin Parker Hannifin

  • Products
  • About Parker
  • Investors
  • Community
  • Careers

Global Operations Global Operations

  • Divisions
  • Sales Companies
  • Worldwide Locations
  • Distribution Network
  • ParkerStore™ Network

Company Information Company Information

  • Newsroom
  • Event Calendar
  • Working with Parker
  • Product Brands
  • History

Global Support Center Global Support Center

  • Support
  • CAD
  • Where to Buy
  • Contact Parker
  • Manage Online Orders
© Parker Hannifin Corp 2022
  • Site Map
  • Safety
  • Privacy Policies
  • Terms and Conditions
  • Community Terms of Use
ENGINEERING YOUR SUCCESS.