Hello Guest it is April 25, 2024, 06:55:11 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - MOTU

Pages: 1
1
General Mach Discussion / Tangential Problems
« on: May 21, 2013, 11:32:09 AM »
We've been using Mach for a number of years and a lot of our systems use the tangetial mode. One system is a high speed waterjet cutter that uses tangetial mode to cut rubber with a beveled edge.

There is a problem that has crept into the later versions that screws up tangential mode. When I cut a circle all is fine. The propblem is in parts with radiused corners. When the motion tansitions from a straight edge to the 1st radius Mach will take a nosedive in speed (about 90% drop) and the head is rotating a lot more than it should to follow the radius. Anyone else seeeing this? As mentioned, we've used tangetial for years without this problem. BTW, we do use the ESS SmoothSteper board.

2
General Mach Discussion / Help with button code
« on: June 04, 2012, 09:16:39 AM »
The task is to get either or a combination of the vertical axis servo motors (X,Z,B) to run, based on the condition of the LED associated with each axis.
If the X axis LED is on then the X axis runs; if both X axis and Z axis LED's are on then both will run, etc.
I would like all motors to run simultaneously - vs sequentially, if the LED status indicates more than one motor is to run.
BTW, the Y axis indexes a belt between the vertical axis cycles.
Right now, the current button has the motors running sequentially.

Thanks in advance for any help.

This is the code I currently have on the button.

MoveBelt = GetUserDRO (1060) 'Belt Index Increment
code "G91"
code "F5"
If GETUSERLED (1031) Then 'checks X axis LED
code "G1X-1"
code "G1X1"
End If
If GETUSERLED (1032) Then 'checks Z axis LED
code "G1Z-1"
code "G1Z1"
End If
If GETUSERLED (1033) Then 'checks B axis LED
code "G1B-1"
code "G1B1"
End If
code "F200"
code "G1A" & MoveBelt
While IsMoving
SETUSERLED (1036,1) 'turn on A axis LED
Wend
SETUSERLED (1036,0) 'turn off A axis LED
code "G90"

3
Galil / Gantry homing problem
« on: January 19, 2011, 02:24:53 PM »
Did an upgrade on a 4'x8' gantry style waterjet system using a Galil board (DMC 2143).
Using existing motors and analog servo drives (Advanced Motion Controls model 25A8).
Motion is spot on (jogs, runs parts, etc.) but with one problem ... when we try to home the machine, the right motor on the gantry moves faster (about 2X) than the left motor on the gantry.
Any ideas?

4
LazyCam (Beta) / Problem posting Lazycam to Mach
« on: January 25, 2010, 10:46:48 AM »
Due to hardware problems, a customer had to re-install all his software to a new computer.  Everything is up and running, but with one small problem.  When he posts a file out of Lazycam and returns to the Mach screen, the new Lazycam job is not on his Mach screen.  All the option settings in Lazycam seem to be set correctly.

Pages: 1