Implementation of a Z axis with non linear characteristic
- KrisJ
- Offline
- New Member
-
Less
More
- Posts: 9
- Thank you received: 0
09 Feb 2025 12:30 #321060
by KrisJ
Implementation of a Z axis with non linear characteristic was created by KrisJ
Hi all!
I need a little help understanding the easiest way to implement an axis that is not moving in a linear fashion.
The Z-axis that is going to control the "bed height" of my machine has similar mechanics as a good old fashion car jack (that you keep in the car with your spare tire) and a stepper motor where you would hook in your crank.
This means that one turn on the crankshaft translate to a different "Z" movement depending on where on the lead screw you are.
I have done my best to study the KINS and trivkins man pages but it seems like they are generally describing much more complex behaviors than what is necessary for my use case.
Just to be clear, I'm not asking for the math that describes the movement, only how to implement it in LinuxCNC.
Can this be done with some lines of HAL or does it have to get more complicated? Can someone nudge me in the right direction?
I need a little help understanding the easiest way to implement an axis that is not moving in a linear fashion.
The Z-axis that is going to control the "bed height" of my machine has similar mechanics as a good old fashion car jack (that you keep in the car with your spare tire) and a stepper motor where you would hook in your crank.
This means that one turn on the crankshaft translate to a different "Z" movement depending on where on the lead screw you are.
I have done my best to study the KINS and trivkins man pages but it seems like they are generally describing much more complex behaviors than what is necessary for my use case.
Just to be clear, I'm not asking for the math that describes the movement, only how to implement it in LinuxCNC.
Can this be done with some lines of HAL or does it have to get more complicated? Can someone nudge me in the right direction?
Please Log in or Create an account to join the conversation.
- Aciera
-
- Offline
- Administrator
-
Less
More
- Posts: 4264
- Thank you received: 1881
09 Feb 2025 19:02 #321094
by Aciera
Replied by Aciera on topic Implementation of a Z axis with non linear characteristic
Custom kinematics is likely the best way to go about it. I would recommend to use the 'userkins.comp' template as it can be installed using the 'halcompile --install ...' tool:
linuxcnc.org/docs/stable/html/man/man9/userkins.9.html
linuxcnc.org/docs/stable/html/man/man9/userkins.9.html
Please Log in or Create an account to join the conversation.
- KrisJ
- Offline
- New Member
-
Less
More
- Posts: 9
- Thank you received: 0
11 Feb 2025 17:00 #321245
by KrisJ
Replied by KrisJ on topic Implementation of a Z axis with non linear characteristic
Thanks Aciera!
I went through the process described and tweaked around a little and I think I got it to work.
Now I'll admit that I'm having a bit of a hard time to wrap my head around exactly what the inverse transformation is used for. I think I got it right but even when I try to deliberately sabotage the inverse formula I can't see any errors or different behavior in AXIS.
I guess what I'm asking is if there are any simple way of testing that I got the inverse formula right?
I went through the process described and tweaked around a little and I think I got it to work.
Now I'll admit that I'm having a bit of a hard time to wrap my head around exactly what the inverse transformation is used for. I think I got it right but even when I try to deliberately sabotage the inverse formula I can't see any errors or different behavior in AXIS.
I guess what I'm asking is if there are any simple way of testing that I got the inverse formula right?
Please Log in or Create an account to join the conversation.
- Aciera
-
- Offline
- Administrator
-
Less
More
- Posts: 4264
- Thank you received: 1881
11 Feb 2025 17:08 #321247
by Aciera
Replied by Aciera on topic Implementation of a Z axis with non linear characteristic
When you home the machine Linuxcnc uses the Forward kinematics to calculate the Axis positions (ie the values you see in the DRO of the gui) and from there on it uses the Inverse kinematic to calculate the joint (ie motor) positions after homing.
If your machine is moving the correct distances when you issue say G0 or G1 commands then you should be fine.
Don't forget that you need to run 'halcompile --install ...' again after making changes.
If your machine is moving the correct distances when you issue say G0 or G1 commands then you should be fine.
Don't forget that you need to run 'halcompile --install ...' again after making changes.
Please Log in or Create an account to join the conversation.
Time to create page: 0.110 seconds