1. Home
    1. Dashboard
    2. Search
  2. Forum
    1. Unresolved Threads
    2. Members
      1. Recent Activities
      2. Users Online
      3. Team Members
      4. Search Members
      5. Trophys
  3. Articles
  4. Blog
  5. Videos
  6. Jobs
  7. Shop
    1. Orders
  • Login or register
  • Search
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Forum
  • Blog Articles
  • Products
  • More Options
  1. Robotforum - Support and discussion community for industrial robots and cobots
  2. Forum
  3. Industrial Robot Support and Discussion Center
  4. KUKA Robot Forum
Your browser does not support videos RoboDK Software for simulation and programming
Visit our Mainsponsor
IRBCAM
Robotics Channel
Robotics Training
Advertise in robotics
Sponsored Ads

Constant speed in aut mode

  • hossein fallah
  • May 21, 2023 at 3:43 PM
  • Thread is Resolved
  • hossein fallah
    Reactions Received
    1
    Trophies
    1
    Posts
    29
    • May 21, 2023 at 3:43 PM
    • #1

    Hi everybody

    I'm new to this programing so I apologize if my question is a bit simple

    Deceleration distance change in various aut mode speed is my problem

    I need to move from point A to point B

    I have an interrupt and a brake between these points triggered by a OP sensor

    When I increase speed in aut mode

    Deceleration distance increases

    So my question:

    Is it possible to give a motion a constant speed that don't change if you change aut mode speed?

    Thanks

  • Go to Best Answer
  • Fubini May 21, 2023 at 3:52 PM

    Approved the thread.
  • Online
    SkyeFire
    Reactions Received
    1,061
    Trophies
    12
    Posts
    9,463
    • May 21, 2023 at 8:26 PM
    • #2

    It would help to see the code you are executing.

    You want a single PTP or LIN motion command to execute at the same speed in T1 and AUT modes?

    Assuming $OV_PRO and $OV_APPL are not altered, the simplest approach is probably to program the motion with a velocity of 250mm/s or less. T1 motions are "capped" at 250mm/s, even if the motion is programmed for 2000mm/s.

  • Zin1701
    Trophies
    2
    Posts
    50
    • May 23, 2023 at 3:51 AM
    • #3
    Quote from hossein fallah

    Hi everybody

    I'm new to this programing so I apologize if my question is a bit simple

    Deceleration distance change in various aut mode speed is my problem

    I need to move from point A to point B

    I have an interrupt and a brake between these points triggered by a OP sensor

    When I increase speed in aut mode

    Deceleration distance increases

    So my question:

    Is it possible to give a motion a constant speed that don't change if you change aut mode speed?

    Thanks

    Display More

    there are many ideas to deal with ur problem

    firstly, what u want is that after u change the aut speed , the motion speed is not change right ?

    example, your programed speed motion is 800 mm/s and when u change the aut speed. your speed motion is still 800 mm/s right???

    just answer my question and i will continue telling you what u need to do

  • hossein fallah
    Reactions Received
    1
    Trophies
    1
    Posts
    29
    • May 23, 2023 at 10:44 AM
    • #4
    Quote from Zin1701

    there are many ideas to deal with ur problem

    firstly, what u want is that after u change the aut speed , the motion speed is not change right ?

    example, your programed speed motion is 800 mm/s and when u change the aut speed. your speed motion is still 800 mm/s right???

    just answer my question and i will continue telling you what u need to do

    Yes for example programed speed is 800 and I don't want that to change by changing aut speed

  • Zin1701
    Trophies
    2
    Posts
    50
    • May 23, 2023 at 11:25 AM
    • #5
    Quote from hossein fallah

    Yes for example programed speed is 800 and I don't want that to change by changing aut speed

    The only thing u can do for ur purpose is to set the aut speed constantly. and none can change the aut speed.

  • hossein fallah
    Reactions Received
    1
    Trophies
    1
    Posts
    29
    • May 23, 2023 at 11:59 AM
    • #6
    Quote from Zin1701

    The only thing u can do for ur purpose is to set the aut speed constantly. and none can change the aut speed.

    I did that but I need to be able to change entire aut speed in order to set with production line speed changes

    I guess I have to define a relative speed any time production speed is changing and change distance parameters for every speed

    Anyway thank you for your time

  • hossein fallah
    Reactions Received
    1
    Trophies
    1
    Posts
    29
    • May 23, 2023 at 12:13 PM
    • #7

    This is the program

    Images

    • 2.jpg
      • 19.74 kB
      • 360 × 770
      • 4
  • hossein fallah
    Reactions Received
    1
    Trophies
    1
    Posts
    29
    • May 23, 2023 at 12:14 PM
    • #8

    .

  • hermann
    Reactions Received
    412
    Trophies
    9
    Posts
    2,628
    • May 23, 2023 at 1:18 PM
    • Best Answer
    • #9
    Quote from hossein fallah

    ... if you change aut mode speed?

    What do you mean by that?

    Changing override, or what?

    In your program you use 2m/s as search speed, this is way too fast. You should use a speed just as fast that there is no change in detected position when lowering the override.

    You should use $pos_int in the interrupt routine to store the detected position.

    There are many threads about interrupts and storing detected position here in the forum, just give a try to search them. :winking_face:

    Please don't use screenshots for showing your program, you should paste the code here into code tags. :winking_face:

  • hossein fallah
    Reactions Received
    1
    Trophies
    1
    Posts
    29
    • May 23, 2023 at 2:15 PM
    • #10
    Quote from hermann

    What do you mean by that?

    Changing override, or what?

    In your program you use 2m/s as search speed, this is way too fast. You should use a speed just as fast that there is no change in detected position when lowering the override.

    You should use $pos_int in the interrupt routine to store the detected position.

    There are many threads about interrupts and storing detected position here in the forum, just give a try to search them. :winking_face:

    Please don't use screenshots for showing your program, you should paste the code here into code tags. :winking_face:

    Display More

    Thank you so much

    I lowered the search speed and it got better also I moved interrupt off after the brake command

    About screen shots, sorry I have read read first but I forgot there is code tags😅

    Thanks again

  • Online
    SkyeFire
    Reactions Received
    1,061
    Trophies
    12
    Posts
    9,463
    • May 23, 2023 at 3:26 PM
    • #11
    Quote from hossein fallah

    aut speed

    What do you mean by "aut speed"?

  • hossein fallah
    Reactions Received
    1
    Trophies
    1
    Posts
    29
    • May 24, 2023 at 7:32 AM
    • #12
    Quote from SkyeFire

    What do you mean by "aut speed"?

    AUT mode

    Images

    • Screenshot_20230524_090105.jpg
      • 674.54 kB
      • 1,755 × 1,080
      • 8
  • hossein fallah
    Reactions Received
    1
    Trophies
    1
    Posts
    29
    • May 24, 2023 at 7:45 AM
    • #13

    Hey guys thanks for your help

    Do I need to do something with this thread?

    My problem is solved

    I didn't get constant speed in aut mode but I managed to get fairly constant Deceleration distance between 30% and 70% of aut mode speeds

  • Online
    SkyeFire
    Reactions Received
    1,061
    Trophies
    12
    Posts
    9,463
    • May 25, 2023 at 1:30 AM
    • #14
    Quote from hossein fallah

    AUT mode

    For future reference, that's the "override" speed, and in KRCs is the system variable $OV_PRO.

    There's not really any way to keep a motion the same speed when $OV_PRO is changed, as the entire purpose of $OV_PRO is to allow proportional control of all motions being executed.

Advertising from our partners

IRBCAM
Robotics Channel
Robotics Training
Advertise in robotics
Advertise in Robotics
Advertise in Robotics

Job Postings

  • Anyware Robotics is hiring!

    yzhou377 February 23, 2025 at 4:54 AM
  • How to see your Job Posting (search or recruit) here in Robot-Forum.com

    Werner Hampel November 18, 2021 at 3:44 PM
Your browser does not support videos RoboDK Software for simulation and programming

Tag Cloud

  • abb
  • Backup
  • calibration
  • Communication
  • CRX
  • DCS
  • dx100
  • dx200
  • error
  • Ethernet
  • Ethernet IP
  • external axis
  • Fanuc
  • help
  • hmi
  • I/O
  • irc5
  • IRVIsion
  • karel
  • kawasaki
  • KRC2
  • KRC4
  • KRC 4
  • krc5
  • KRL
  • KUKA
  • motoman
  • Offset
  • PLC
  • PROFINET
  • Program
  • Programming
  • RAPID
  • roboguide
  • robot
  • robotstudio
  • RSI
  • safety
  • Siemens
  • simulation
  • SPEED
  • staubli
  • tcp
  • TCP/IP
  • teach pendant
  • vision
  • Welding
  • workvisual
  • yaskawa
  • YRC1000

Thread Tag Cloud

  • abb
  • Backup
  • calibration
  • Communication
  • CRX
  • DCS
  • dx100
  • dx200
  • error
  • Ethernet
  • Ethernet IP
  • external axis
  • Fanuc
  • help
  • hmi
  • I/O
  • irc5
  • IRVIsion
  • karel
  • kawasaki
  • KRC2
  • KRC4
  • KRC 4
  • krc5
  • KRL
  • KUKA
  • motoman
  • Offset
  • PLC
  • PROFINET
  • Program
  • Programming
  • RAPID
  • roboguide
  • robot
  • robotstudio
  • RSI
  • safety
  • Siemens
  • simulation
  • SPEED
  • staubli
  • tcp
  • TCP/IP
  • teach pendant
  • vision
  • Welding
  • workvisual
  • yaskawa
  • YRC1000

Similar Threads

  • Monitoring Current Robot Speed

    • boriskostov
    • February 23, 2023 at 3:53 PM
    • Kawasaki Robot Forum
  • One question about calibrating a Kuka VK120 working with VRS-1B

    • gusvalgil
    • October 23, 2020 at 9:55 AM
    • SEF & VW Robot Forum
  • Fanuc_CycleTime/Reduction.

    • Srt_424
    • May 3, 2022 at 1:43 AM
    • Fanuc Robot Forum
  • SafeMove -- Speed violation in Teach mode

    • SkyeFire
    • January 30, 2022 at 10:53 PM
    • ABB Robot Forum
  1. Privacy Policy
  2. Legal Notice
Powered by WoltLab Suite™
As a registered Member:
* You will see no Google advertising
* You can translate posts into your local language
* You can ask questions or help the community with your knowledge
* You can thank the authors for their help
* You can receive notifications of replies or new topics on request
* We do not sell your data - we promise

JOIN OUR GREAT ROBOTICS COMMUNITY.
Don’t have an account yet? Register yourself now and be a part of our community!
Register Yourself Lost Password
Robotforum - Support and discussion community for industrial robots and cobots in the WSC-Connect App on Google Play
Robotforum - Support and discussion community for industrial robots and cobots in the WSC-Connect App on the App Store
Download