Another "what do I need" thread. Vmc retrofit

More
28 Apr 2015 06:41 - 29 Apr 2015 05:33 #58177 by andypugh
Something else to play with.
This component just runs through a sequence of setting and re-setting HAL pins. You can have up to 31 steps setting/resetting up to 32 HAL pins.
Each step can wait for up to 32 more HAL pins to be set or reset (in any pattern).
comp --view-docs sequencer.comp
to read the manpage.
sudo comp --install sequencer.comp
to install it.
halrun
source seq_test.hal
to start a HAL session and see it in action in a standalone HAL session.

Testing and comments very welcome.
Attachments:
Last edit: 29 Apr 2015 05:33 by andypugh. Reason: Added an updated sequencer.comp

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

More
29 Apr 2015 00:19 #58199 by thewho
Went by really quick after work today to see if it helped to speed up the servo loop. I didn't see any amazing results but I didn't have time to really go through it all.
Do you mean motor-pos-fb and motor-pos-cmd? I had plotted them too but I removed them to make the graph easier to read.

Had a go at the spindle too, but that wasn't as easy as I was hoping.. As soon as I enable the drive it starts spinning counter clockwise very slowly. I think that can be adjusted on the drive but is there something obvious I'm missing here?
Also If I try a "M3 S10" it goes up to full speed (measured 10V at the output) But If I just press the spindle clockwise button it rotates slowly.
That makes me think that the encoder is wired correctly and that there is some setting in Linuxcnc I'm missing? Tried the spindle encoder on X axis encoder input and it counts up and down as as it should.
The encoder line in the .ini is "counts/rev" right? 1024 line = 4096 in the .ini? I also tried to invert the encoder in the .ini but it behaves the same.

I'm going to try your component this weekend Andy, or sooner if I'm working nearby.

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

More
30 Apr 2015 05:10 #58247 by andypugh
Here is the new, improved, simplified carousel component.

Again, a comp and then a demo hal file and halshow setup:
Attachments:

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

More
01 May 2015 01:03 #58277 by thewho
Gonna try it tomorrow Andy :)

It's so annoying when I have a lot of fun ideas but lack the knowledge to program them. :( I've been working on a slant bed lathe design with driven tools in the turrent but I have no idea on how to set that up.
I have also locked through your component Andy and it's all a mystery to me. I feel like Arduino made programming a little too easy and then you think that programming something else can't be that hard :whistle:

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

More
01 May 2015 01:58 - 01 May 2015 02:06 #58280 by andypugh

I have also locked through your component Andy and it's all a mystery to me.


The carousel component is moderately simple, though even I don't quite understand the Gray-code conversion bit. The sequencer is a bit less simple.

You don't have to use the sequencer, the carousel component can be run from a G-code subroutine as shown earlier. Or from Classic Ladder.

At it's simplest you can connect iocontrol.0.tool-prep-pocket to carousel.0.pocket-number, iocontrol.0.tool-change to carousel.0.enable and carousel.0.ready to iocontrol.0.tool-changed and you will get something like a tool change sequence.
(With no arm movement or Z axis movement).
That is basically putting the carousel component in the same "gap" in HAL where hal_manualtoolchange normally lives.

What I _don't_ know how to do is put the empty pocket where it needs to be if it isn't already there.

The problem is that what _looks_ like the thing that you want, the #<_current_pocket> G-code parameter doesn't give you the P-number of the tool-in-spindle from the tool-table. It gives you the line it appears on in the tool.tbl file.
There is a workaround to this, but it's slightly painful: The tools must appear in pocket-order in the _text_ version of the tool table. (not necessarily as it appears in the tool-editor). As long as the pocket column of the tool editor is always 1,2,3 etc in the tool editor this should stay consistent (I think).

Given that (significant) "gotcha" you can use a G-code subroutine like this:

O<toolchenge> SUB
M68 E0 Q#<_current_pocket>
M64 P0 ; trigger carousel movement
M66 P0 L1 Q10 ; wait for carousel to stop
M65 P0
O100 IF[ #5399 LT 0] ;timeout
O<toolchange> RETURN
O100 ENDIF

G53 Z -100 ; position spindle to drop tool.
M64 P1 ; move arm
M66 P1 L1 Q 2; wait for arm-out switch
O101 IF[ #5399 LT 0] ;timeout
O<toolchange> RETURN
O101 ENDIF
M64 P2 ; release drawbar
G4 P1 ; wait

G53 Z 0 ; Z to top
M65 P1 ; retract arm
M66 P2 L1 Q2; wait for arm retract switch
O102 IF[ #5399 LT 0] ;timeout
O<toolchange> RETURN
O102 ENDIF

T [#1]
G53 Z 0
M68 E0 Q#<_selected_pocket>
M62 P0 ; trigger carousel movement
M66 P0 L1 Q10 ; wait for carousel to stop
O103 IF[ #5399 LT 0] ;timeout
O<toolchange> RETURN
O103 ENDIF
M65 P0
M64 P1 ; move arm
M66 P1 L1 Q2; wait for arm-out switch
O104 IF[ #5399 LT 0] ;timeout
O<toolchange> RETURN
O104 ENDIF

G53 Z -100 ; pick up tool
M65 P0
M65 P1 ; retract arm
...
O<toolchange> ENDSUB

I actually suspect that in this case it might make more sense to control the changer from G-code than using my new sequencer component. Though if you wanted to you could trigger that with the first M62 P0 (which sets the HAL pin motion.digital-out-00 to 1 ) could start a sequence / timeout that replaces the blue code. (You would then need to read the value of the sequence.0.error pin to be sure it was safe to proceed at various points)
Last edit: 01 May 2015 02:06 by andypugh.

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

More
01 May 2015 02:32 #58281 by andypugh
Actually, you could connect sequencer.0.error to halui.program.stop and then any problems in the tool-change sequence ought to stop the program dead.

So using "sequencer' the toolchange sub looks more like:

O<toolchenge> SUB
M68 E0 Q#<_current_pocket>
M64 P0 ; trigger tool sequence
M66 P0 L1 ; wait to be told to move the Z axis
G53 Z-100
M66 P0 L1 ; wait to be told to move the Z axis
G53 Z0
M66 P0 L1 ; wait to be told to move the Z axis
G53 Z-100
M66 P0 L1 ; wait to be told to move the Z axis
G53 Z-100
M6 T[#1] G43
O<toolchange> ENDSUB

This is a simpler G-code sub, but then the complexity largely moves to sequencer.

I haven't mentioned the HAL pin connections for either option yet, which is probably outputs for arm and drawbar and inputs for (at least) both extents of arm travel and drawbar being released.
loadrt sequencer sequence="r1s0t0w10:s1s2t1w2:s3d200m:t2w5:r2s3s4w2:s2....." which means something like:
r1s0t0w10 : reset out-1 (locking pin), set out-0 (carousel enable) wait 10 seconds for in-0 == true (carousel finished)
s1s2t1w2: set out-1 (locking pin), set out-2 (arm extend) wait 2 seconds for arm-extended switch
s2d200m: tell g-code to move to position 1 then wait 200mS
r2t2w5: un-set the motion request pin, wait 5 seconds for in-2 (netted to motion.in-posiiton)

(and so on for the actual sequence)

I forgot to say that (doing it this way) a tool-change is caused by O<toolchange> CALL toolnumber rather than M6 Ttoolnumber.
It is relatively easy to re-map M6 to call the G-code sub, but one step at a time.

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

More
01 May 2015 04:35 - 01 May 2015 04:37 #58285 by thewho
Is spindle positioning included in your hal component? Or is there another way to do that?
Last edit: 01 May 2015 04:37 by thewho.

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

More
01 May 2015 05:59 #58286 by andypugh

Is spindle positioning included in your hal component? Or is there another way to do that?


Spindle positioning is separate. Have a look here:

wiki.linuxcnc.org/cgi-bin/wiki.pl?SpindleOrient

(it could be triggered by another pin from the sequencer)

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

More
02 May 2015 02:55 #58306 by thewho
Tried your component Andy and as far as I know it seems to work :)

Got all axis tuned as good as I can get them now. :laugh:
You guys will probably laugh at me now but I was investigating the "M3 S10 = 10V output" and found out that S1 =1V, s2 =2V etc. And it seems like I need to scale the output.
As shown here: linuxcnc.org/docs/html/examples/spindle.html
Is that correct? And if yes, how do I do that? I attached my .hal and .ini files.

Is there no spindle speed "readout" in Axis? I can't find one and that seems odd to me.

I don't like Mach3, but Linuxcnc is so hard to learn :S
Attachments:

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

More
02 May 2015 03:59 #58307 by andypugh

You guys will probably laugh at me now but I was investigating the "M3 S10 = 10V output" and found out that S1 =1V, s2 =2V etc. And it seems like I need to scale the output.


it's here in your INI file:

#********************
# Spindle
#********************
[SPINDLE_9]
ENCODER_SCALE = 4096.0
OUTPUT_SCALE = 10.0
OUTPUT_MIN_LIMIT = -10.0
OUTPUT_MAX_LIMIT = 10.0


Set OUTPUT_SCALE to the spindle speed you get for 10V output.
At the moment you are saying that 10rpm is the max speed. (ie, 10rpm = 10V, which is exactly what is happening)

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

Moderators: PCWjmelson
Time to create page: 1.108 seconds
Powered by Kunena Forum