|
|
Line 1: |
Line 1: |
− | '''Introduction:'''
| |
− |
| |
− |
| |
| In several MANZ's applications, gantry systems (pair of parallel axes) are implemented as master slave pairs. Where master is a part of a bigger (XYZ) group and each of the group's axis can be a master to a different slave axis. The whole issue can be exteneded to any group of geared axes that are moving together one physical object. | | In several MANZ's applications, gantry systems (pair of parallel axes) are implemented as master slave pairs. Where master is a part of a bigger (XYZ) group and each of the group's axis can be a master to a different slave axis. The whole issue can be exteneded to any group of geared axes that are moving together one physical object. |
| | | |
| | | |
− | '''Problems:'''
| + | =Problems:= |
| | | |
| | | |
Line 18: |
Line 15: |
| | | |
| | | |
− | '''Prevention features:'''
| + | =Prevention features:= |
| | | |
| | | |
Line 103: |
Line 100: |
| | | |
| |} | | |} |
− | = Implementation =
| |
− | Each Master axis must be “aware” of the slave axes connected to it. This means we need to add an pointer array to the MOT_ELEMENT object:
| |
− |
| |
− |
| |
− | MOT_ELEMENT *'''slaves'''<nowiki>[MOT_ELEMENT_NUMBER/2];</nowiki>
| |
− |
| |
− |
| |
− | it should be initialized to NULL pointer at the beginning and each time an slave axis is added/removed to this master a re-organization of the array will be executed:
| |
− |
| |
− |
| |
− | * Adding new slaves, i.e. “slave_axis.MasterSource = master_axis”:
| |
− |
| |
− | Append master_axis pointer to the end of the list.
| |
− |
| |
− |
| |
− | * Removing old slaves, i.e. “slave_axis.MasterSource = none”
| |
− |
| |
− | The old master axis has to be found and if such exist, it's slaves array should be searched for the pointer of the given slave, if it does not exist an error should be returned. The array should be re-arrange so there are no gaps:
| |
− |
| |
− |
| |
− | before
| |
− |
| |
− |
| |
− | {| style="border-spacing:0;"
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>1'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>2'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>3'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>4'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>5'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>6'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>7'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>8'''</sub></center>
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border:0.0007in solid #000000;padding:0.0382in;"|
| |
− |
| |
− | |}
| |
− | after:
| |
− |
| |
− |
| |
− |
| |
− | {| style="border-spacing:0;"
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>1'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>2'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>3'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>5'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>6'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>7'''</sub></center>
| |
− | | style="background-color:#cccccc;border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"| <center>'''sl<sub>8'''</sub></center>
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border-top:0.0007in solid #000000;border-bottom:0.0007in solid #000000;border-left:0.0007in solid #000000;border-right:none;padding:0.0382in;"|
| |
− | | style="border:0.0007in solid #000000;padding:0.0382in;"|
| |
− |
| |
− | |}
| |
− | The whole action should be guarded using the global mutex semaphore: '''''mot_Manager_Data.mtx_get_value'''''.
| |
| | | |
| | | |
In several MANZ's applications, gantry systems (pair of parallel axes) are implemented as master slave pairs. Where master is a part of a bigger (XYZ) group and each of the group's axis can be a master to a different slave axis. The whole issue can be exteneded to any group of geared axes that are moving together one physical object.
Problems:
Problems occur when due to asymmetrical engagement of the system either by different stopping starting or mechanical non-symmetries.
1.) Motors are directly working against mechanic and possible mechanical breakage/damage can occur.
2.) The systems forms a mechanical feedback loop and instability in form of axis runway can occur.
3.) Load is distributed not equally, therefore dynamic behavior of one axis differs from the other.
Prevention features:
- Slave deviation: difference in position between master's and slave's feedback is monitored if it exceeds certain threshold an error is generated and the system stopped. MC-BASIC: <axis>.SlaveDeviation (on slave axis).
- Slave disconnect: when slave is disabled either due to explicit user command or as a result of an error it's master is automatically disabled. MC-BASIC: <axis>.SlaveDisconnect (on slave axis).
- The master is "aware" of its slaves. Keeping slave in enabled state when master is disabled can introduce a feedback loop (mechanical linkage between slave and master) resulting in a system that is not always stable i.e. we have a runaway. This can be prevented using SlaveDisable flag, each time a master is disabled due to whatever reason all its slaves will be disabled too. MC-BASIC: <axis>.SlaveDisable (on master axis)
- In order to keep the delay between master and slave minimal it is imporrtant to take care about the order of calling of axis RTK. Connecting slave to a master automaticaly re-orders their RTK by changing their priorities.
General Axis Deviation (GAD) is defined as one of the follwing:
- position follwing error (Pe > PeMax)
- velocity overspeed (Vfb > Vospd)
- slave deviation (SlaveDeviation > SlaveMaxDeviation)
Action:
|
<slave>.SlaveDisconnect 1 (default)
(or master is PEXT)
|
<slave>.SlaveDisconnect 0
|
<master>.SlaveDisable0 (default)
|
<master>.SlaveDisable1
|
Slave GAD
|
Disconnecting: sax.slave=0
Stopping master axis
Stopping slave axis
|
Stopping the first master if it is moving,
else disabling the master
|
Nothing affected
|
Slave GAD
(when slave is stopped)
|
can not occur as slaved axis is considered always in a moving state (ismoving ≠ 0)
|
Slave GAD
(when master is stopped)
|
Disabling masterIt looks like only slave is disabled! If true it is a bug.
Disabling slave
|
Master GAD
|
Stopping master axis
|
Master GAD(wnen master is stopped)
|
Dislabling master axis
|
Dislabling slave axis
|
Error on slave axis
|
Disconnecting: sax.slave=0Stopping slave axis
|
Stopping slave axis
|
Nothing affected
|
Error on master axis
|
Stopping master axis
|
Disabling master: (max.en: 1→0)
|
Nothing affected
|
Disablining all slave axes that are directly or indirectly connected.
|
Disabling slave: (sax.en: 1→0)
|
Msync is reset
No disconnection.
|
Msync is resetDisable all master axes connected directly or inderctly.
|
Nothing affected
|
Re-ordering the master-slave sequence.
In AMCS the sequence of calling different RTK's is assured by giving them different priorities (starting from 20), by default the first axis (the one with lowest ID) has the starting priority (20) , the next has 21 and so on. IF the group's RTK is activated, it gets the priority number of it's first axis. In this way we assure that no RTK interrupts execution of the other one.
Once the new master slave pair is given, the system should check the priorities of their RTK tasks, if prio(RTK_Slave) > prio(RTK_Master) then everything is OK, if not they should be exchanged but before that we must check if the specified master is a slave to another axis, if yes then this pair should be checked also.
Slave-Disable.
Name: <axis>.SlaveDisable
Type: long
Values: 0 or 1
Default: 0
Limitations: Modal-Only, Read/Write
Context: Task or Terminal
Once the <axis>.SlaveDisable is on, each time the axis is disabled (due to an error, or by direct assignment i.e., ”en=0”) all of it's slave axes will be disabled:
If the user directly enters:
- If the default error handler disables the axis
- It the axis is disabled by an automatic disable due to a position error on a stopped axis
- If the torque threshold is exceeded on a stopped axis.
- If the VOSPD is exceeded on a stopped axis
- If the master is disabled because it is a part of the group that is being disabled (or some axes of it are).
- If the master is disabled because being master of another axis having <axis>.SlaveDisconnect flag set to 0(This is when this feature is on).
If <axis>.SlaveDisable is off, the system behaves as it did previously.
Special care must be taken to avoid loops i.e. if the master disables the slave and the slave disables the master there must be a way that explicit enabling of master-slave pair succeeds.
Manz's Bugs related to this issue:
Issue 0997 B/F: Runaway with ActiveDisable switched off in gantry / missing synchronization
Issue 1681 F:Runaway with axis enable of gantry slave axis
Issue 0917 B: Slave jumps with following mode transitions on master
Issue 1003 B/F: Master-Slave order affects PCMD synchronization