Hello Guest it is April 19, 2024, 12:12:58 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.


Messages - dck

Pages: 1
1
General Mach Discussion / Mach3 Plasma plate alignment problem.
« on: March 06, 2021, 08:52:02 AM »
Hello,

I am using the code below to align the sheet above on the plasma cutting machine.

If GetUserLED(1010)=1 Then
   SetUserLED(1010   ,0)      
End If

dx = GetOEMDRO( 800 )
dy = GetOEMDRO( 801 )
Pi = Atn( 1 ) * 4

If Abs( dx ) > Abs( dy ) Then ' horizontal, near X axis
   angle = Atn( dy / dx )
Else ' vertical, near Y axis
   angle = Atn( - dx / dy )
End If

angle = angle / Pi * 180
ret = MachMsg("A = " & roun(angle) & "° Confirmar Alinhamento", "Axis Rotation", 4)
If ret = 6 Then ' Yes
   SetOEMDRO(118, angle) 'Code("G68X0Y0R" & angle)
   Message("A = " & roun(angle) & "°")
   SetUserLED(1011,0)   
   DoButton(17)
   While IsMoving()
   Wend
   angleF = GetOEMDRO( 118 )
   Code("G69")
   Code("G0 X104.14Y10.15")
   While IsMoving()
   Sleep(10)
   Wend
   SetOEMDRO(118, angleF)
   While IsMoving()
   Sleep(10)
   Wend
   DoOEmButton(1007)
   While IsMoving()
   Sleep(10)
   Wend
   DoOEMButton(170)
   Sleep(100)
   DoOemButton(160)

End If   
 

The code works well but when I need to pause the cut and then cut again the machine loses the position of the axes and presents the error radius to end of arc differs from radius to start.

Has anyone experienced this problem, what may be happening, what configuration can I change to solve the problem?

2
General Mach Discussion / Reduce plasma machine speed at corners.
« on: August 30, 2017, 03:42:42 PM »
Hello,

I have a machine with Mach 3 with a plasma source from Hypertherm and the Sheet cam, I'm trying to implement speed reduction in corners and holes to improve cut quality.

It includes a cutting rules in the Sheet cam to reduce the speed in the corners and in the small holes, the machine does the reduction of the speeds however when it does that reduction of speed the machine of a stop, reason why I realized it it decelerates totally and soon it accelerates Again being stopped a bit in place leaving the piece a little marked by the machine getting a little stopped.

Is there any other way to slow down in Sheet Cam or Mach3, I tried to change the CV settings in Mach 3 but did not change anything.

3
General Mach Discussion / Hypertherm PHC Sensor with Mach3.
« on: April 24, 2015, 07:27:16 AM »
I have a client who has a thc of Hypertherm model PHC Sensor, and want to integrate it with a machine with mach3 this thc work only with the signals START and deactivation in the corner of the entrance and ARC output OK.

How do I configure mach3 to enable an exit when you're in the corner and disable this output when it is no longer in the corner?

Pages: 1