• Home
  • Investors
  • Contact Parker
  • Sign In / Register
Parker Community
  • Site
  • User
  • Site
  • Search
  • User
  • Products
  • Support
  • Divisions
  • Where to Buy
  • Careers
  • About Parker
Home Parker Community Technologies Electromechanical Group Electromechanical Knowledge Base IPA Software - Example - Error Recovery Program
Sign In / Register

Sign In

Register

  • 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 - 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?
      • z CIP Communications stop on all devices when one CIP device goes offline (copy)
    • 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+
  • OEM Products+
  • C3 + Xpress + ETH+
  • How can I stay updated on Parker electromechanical and drives product news?
  • Legacy (Discontinued)+
  • Other+
  • Other Groups
    • Parker Indego
      • Parker Indego Instructors
      • Parker Indego Therapists
      • Parker Indego Distributors
  • Technologies
    • Aerospace
    • Climate Control
    • Electromechanical Group
      • Parker IPS Design Center Community
    • Filtration
    • Fluid and Gas Handling
    • Hydraulics
    • IoT
      • Mobile IoT
    • Pneumatics
    • Process Control
    • Sealing and Shielding
  • Blogs
  • Forums
  • Knowledge Base
  • Home
  • All Blogs
  • Home
  • Electromechanical Blog
  • Electromechanical Group Forums
  • Electromechanical Knowledge Base
  • Electromechanical Group Members
  • Mentions
  • Electromechanical Group Sub-Groups
  • Tags
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
Related
  • Other Groups
    • Parker Indego
      • Parker Indego Instructors
      • Parker Indego Therapists
      • Parker Indego Distributors
  • Technologies
    • Aerospace
    • Climate Control
    • Electromechanical Group
      • Parker IPS Design Center Community
    • Filtration
    • Fluid and Gas Handling
    • Hydraulics
    • IoT
      • Mobile IoT
    • Pneumatics
    • Process Control
    • Sealing and Shielding
  • Home
  • All Blogs
  • Home
  • Electromechanical Blog
  • Electromechanical Group Forums
  • Electromechanical Knowledge Base
  • Electromechanical Group Members
  • Mentions
  • Electromechanical Group Sub-Groups
  • Tags
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 - Engineering Your Success
  • Site Map
  • Safety
  • Privacy Policies
  • Terms and Conditions
Ā© Parker Hannifin Corp 2021