Sinumerik 810T Post Processor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have an old Emcoturn 340 which uses the Seimens Sinumerik 810T control.
There is a generic 840 post that looks close (haven't tried it yet).
But the threading, drilling, and similar cycles do not work. It'll generate a post that APPEARS close for simple geometry turning.
The 810 uses the infamous R paramters for the background details needed to complete these cycles.
(I do have an old operating manual, and make a bob-cad post work fine {what a headache!}).
Doing some searching here seems futile for this dinosaur.
Is there anybody out there that could help a programming inept person getting the 840 generic post processor modified to support these R parameters??
Thanks in advance.
Here's an example for threading in Bobcad:
2001. Program Block 1. thread lines
PI = 3.141592653589793
R20=LATHE_GetThreadLead()
R21=LATHE_GetProfileStartX() * 2
R22=LATHE_GetProfileStartZ()
R23=LATHE_GetFinishNumberOfCuts()
ORIENT = LATHE_GetToolOrientation()
If ORIENT = 3 OR ORIENT = 4 Then
R24STR = "+"&Round(tan(LATHE_GetAngleIn() * PI / 180) * R20 / 2, 5)
Else
R24STR = "-"&Round(tan(LATHE_GetAngleIn() * PI / 180) * R20 / 2, 5)
End If
R25 = LATHE_GetThreadLastCut()
R29 = LATHE_GetAngleIn() / 2
R31 = LATHE_GetProfileStartX() * 2
R32 = LATHE_GetThreadZ2()
CALL LATHE_ProcessPostLine(" n,'R20="&Round(R20, 5)&"','R21="&Round(R21 , 5)&"','R22="&Round(R22, 5)&"','R23="&R23&"','R24="&R24STR&"'")
CALL LATHE_ProcessPostLine(" n,'R25="&Round(R25,5)&"','R26=0','R27=0','R28="&R23&"','R29="&R29&"','R31="&Round(R31 , 5)&"','R32="&Round(R32,5)&"'")
CALL LATHE_ProcessPostLine(" n,'L97','P1'")
Here's an example for L97 Threading;
L97 Thread Cutting Cycle Parameters
R20 – Thread pitch.
R21 – Start point of the thread in X-axis.
R22 – Start point of the thread in Z-axis.
R23 – Number of idle cuts (idle passes).
R24 – Thread depth (positive value = inside thread, negative value = outside thread).
R25 – Finishing allowance.
R26 – Run-in path.
R27 – Run-out path.
R28 – Number of roughing cuts.
R29 – Infeed angle (half flank angle).
R31 – End point of the thread in X-axis.
R32 – End point of the thread in Z-axis.