Brennersteuerung HF-Zündung

More
14 Feb 2020 15:14 #157360 by kupfi
Hallo zusammen,

ich bin neu hier, Softwareentwickler, jedoch Anfänger in der CNC Welt.

Nun zu meinem Problem:
Mein Metallbauer hat einen CNC Plasmatisch gebaut, welcher über LinuxCNC (Parallelport) und Sheetcam betrieben werden soll.
Aktuell haben wir das Teil soweit im Griff, dass der Brenner sich schon einmal im Koordinatensystem bewegt.

Hinsicht der Brennersteuerung gibt es jedoch noch das Problem, das wir nicht wissen, wie die HF-Zündung ausgelöst werden soll.
An unserer Z-Achse haben wir einen Schwimmerschalter, welcher auslöst, wenn der Brenner das Werkstück berührt. Anschließend
soll der Brenner x-mm zurückfahren und dann zünden (sonst gibt es einen Kurzschluss)

Die Frage ist, wie der entsprechende G-Code letztendlich generiert wird ? Muss dafür die HAL in LinuxCNC angepasst werden oder kann man das in Sheetcam generieren lassen ? Wäre schön, wenn uns da jemand auf die richtige Spur führen könnte.

Vielen Dank schon mal

VG
Jens

Please Log in or Create an account to join the conversation.

More
14 Feb 2020 15:32 #157361 by Clive S
First welcome to the forum.

Linuxcnc now has a plasma control built in. Thanks to Phill and others.

Have a read through this. forum.linuxcnc.org/plasmac/37234-plasmac-documentation

Please Log in or Create an account to join the conversation.

More
14 Feb 2020 16:17 #157363 by kupfi
Replied by kupfi on topic Brennersteuerung HF-Zündung
thanks for the feedback
Is there a way to control the HF ignition without plasmac and without THC?

Please Log in or Create an account to join the conversation.

More
14 Feb 2020 16:50 - 14 Feb 2020 17:38 #157366 by spicer
Replied by spicer on topic Brennersteuerung HF-Zündung
Was für ein "Schwimmerschalter" ?
Brauchst Du den zum Antasten, oder wie muss ich mir das vorstellen?
Last edit: 14 Feb 2020 17:38 by spicer.

Please Log in or Create an account to join the conversation.

More
15 Feb 2020 09:46 #157402 by kupfi
Replied by kupfi on topic Brennersteuerung HF-Zündung
>>>Was für ein "Schwimmerschalter" ?
>>>Brauchst Du den zum Antasten, oder wie muss ich mir das vorstelle,

Ja, der befindet sich auf der Z-Achse und wird zum Antasten benötigt. Sobald der Brenner das Material beim herunterfahren berührt, wird der Schalter ausgelöst und über das Parallelport an die Steuerung gemeldet. Der Brenner muss dann x-mm zurückfahren und dann zünden. Wie das programmtechnisch gelöst wird ist unser Problem.

Please Log in or Create an account to join the conversation.

More
15 Feb 2020 10:03 #157406 by tommylight
PlasmaC has a button for that already.
In Axis gui you can add the button to a pyvcp panel on the right side of the GUI, just check pyvcp examples, should be easy enough.

Please Log in or Create an account to join the conversation.

More
15 Feb 2020 10:17 #157408 by rodw
Replied by rodw on topic Brennersteuerung HF-Zündung
There is a sheetcam post processor for Plasmac here forum.linuxcnc.org/plasma-laser/36568-po...-and-plasmac?start=0

The simple way to turn the torch on is to connect it so it comes on with a M3 and off with a M5 using the spindle0.on pin

Plasmac starts its probing when spindle.0.on goes true and when its complete, the torch is on and its back to cut height, Plasmac turns on spindle.0.at-speed true.

Once Linuxcnc sees this signal goe true, motion commences just in the same way it works on a milling machine
The following user(s) said Thank You: Clive S

Please Log in or Create an account to join the conversation.

More
15 Feb 2020 10:19 #157409 by spicer
Replied by spicer on topic Brennersteuerung HF-Zündung

>>>Was für ein "Schwimmerschalter" ?
>>>Brauchst Du den zum Antasten, oder wie muss ich mir das vorstelle,

Ja, der befindet sich auf der Z-Achse und wird zum Antasten benötigt. Sobald der Brenner das Material beim herunterfahren berührt, wird der Schalter ausgelöst und über das Parallelport an die Steuerung gemeldet. Der Brenner muss dann x-mm zurückfahren und dann zünden. Wie das programmtechnisch gelöst wird ist unser Problem.

Ich habe das mit einem Initiator gelöst. Der Code ist aber der selbe.
Kann den Dir gerne zuhaben.
Muss nur gerade suchen. Ist schon eine Weile her ^^

Please Log in or Create an account to join the conversation.

More
15 Feb 2020 10:36 - 15 Feb 2020 10:47 #157415 by spicer
Replied by spicer on topic Brennersteuerung HF-Zündung
www.xup.in/dl,66425436/antasten.mp4/

in der .ini

[HALUI]
# HalUI-MDI-Befehle hier einfügen (max. 64)
MDI_COMMAND = o<measuretool> call # << diese Zeile ist massgebend!!
MDI_COMMAND = G92 X0 Y0
MDI_COMMAND = M3 S1
MDI_COMMAND = M5
MDI_COMMAND = o<park> call
MDI_COMMAND = M8
MDI_COMMAND = M9

measuretool.ngc in Verzeichnis nc_files

o<measuretool> sub
; machine specific parameters
; #1000=-100 (max Z depth in absolute coordinates)

; setup
G49 (cancel tool lengths)
G91 (incremental mode)
G28.1 (copy absolute coordinates into #5161-#5169)
; #1001=#5163 (current depth)
; #1002=[#1000-#5163] (probe depth)
#1002=[-#5163] (probe depth)

; measure
G38.2 Z#1002 F20
G92 Z-2.05 (Schalter ein-Pos bis effektiv 0 Pos > Ausmessen)
G90
G0 Z1 (erst nach Einrichten aktivieren)

o<measuretool> endsub
M2


Das sind die reinen Notizen von mir. Viel ist mit ; kommentiert. Aber hab das drin gelassen um später die Infos noch zu haben
Last edit: 15 Feb 2020 10:47 by spicer.

Please Log in or Create an account to join the conversation.

More
15 Feb 2020 11:07 #157422 by Clive S

There is a sheetcam post processor for Plasmac here forum.linuxcnc.org/plasma-laser/36568-po...-and-plasmac?start=0

Rod. Just in time as I have just downloaded sheetcam and was looking for a PP. Is this the one you are referring to SpaceShipPlasma-rev3 - plasmac.scpost dated 13/5/2019 ?

Please Log in or Create an account to join the conversation.

Time to create page: 0.117 seconds
Powered by Kunena Forum