Self Leveling (3 motor leadscrew) printer = Non-planar printer?
-
Which place would you set as origin?
I added coordinates of each line end points (these are just given example value solutions) to the drawing above (D4 as middle point as origin). -
This post is deleted! -
This post is deleted! -
@Visionary
ok, this calculation was also wrong. I'll try again... Unfortunately I used a wrong formula.If you could add the vector coordinates, this would be good. Maybe vector calculation is easiest.
-
@joergs5
Ok, I updated the drawing again. I don't know why but I do also get wrong solutions for example if I try to solve system of three equations: -
@visionary said in Self Leveling (3 motor leadscrew) printer = Non-planar printer?:
wrong solutions for example if I t
the formula is correct, maybe you calculated cos wrong, most calculation programs expect rad instead of degrees.
I verified the third formula, it's ok at me. arm13 being 135 degree and in calc I use the formula ...* COS(PI() / 180 * E6), E6 being degrees. -
@visionary my current approach is:
combine the first solution proposal of:
https://math.stackexchange.com/questions/3342547/curve-for-constant-angle-for-two-fixed-points
which calculated the curve which M1 M3 takes with the angle 135 degreewith the crossing the halfe curve around the midpoint. Both have two variables xy, so it should be solvable. Unfortunately the first formula uses specific coordinates, and it's difficult to understand how to generalize for arbitrary coordinates.
-
@roiki11
As it seems, there are several ways to build a non-planar printer, but would they all be happy with one slicer solution?
E.g.: rotating head vs. tilting bed.
The slicer would dictate how extra printer axes have to be named (eg. A/B), which wouldn't work for all.
IMHO, there has to be a new printer class first and it's requirements dictate the slicer-code.If Prusa decided to develop a non-planar printer, they would also come up with a dedicated slicer. But the benefits of this new type are marginal vs. the effort to make it happen.
-
@visionary I've rotated your triangle now, so D5 is horizontal on top (so I can calculate by the restricted formula of the link I provided), then calculated the midpoint and have xy with two equations. As mathematicians like to say, the rest is trivial. , not really.
The first formula has an interesting symmetry:
x² + y² = (x + y) dsymmetry doesn't help, as it is the mirroring at the diagonal x=y, and the crossing with the other formula is the low red segment:
(created with online Desmos)
The midpoint is (85,85) and radius is sqrt of 85²+85²= about 120.208
-
Not true. In CNC world the 5 axis programs are supplied as tool vector coordinates (X, Y, Z for the tip, I, J, K for the vectot point) and it's the machine itself that applies the appropriate transformations to run the machine. The CAM software doesn't need any machine specific information to create the code, though specific limitations of individual machines are not taken into account(there's Sim software for that).
The same approach would have to be done on th slicer in order to not lock it for a specific machine configuration that it's designed for. You're right about that.
-
Have you though about looking at Stewart platform kinematics? It's a pretty similar in concept, it just has more movable axes.
-
Sorry but I have hard time trying understand your handwriting. Which of the angles is theta?
-
@visionary said in Self Leveling (3 motor leadscrew) printer = Non-planar printer?:
Which of the angles is theta?
theta is the 135 degree angle and is the angle being used in the article https://math.stackexchange.com/questions/3342547/curve-for-constant-angle-for-two-fixed-points at the B point, in the first answer angle ABC.
I know I have an awful handwriting, sorry for that!
-
@roiki11 said in Self Leveling (3 motor leadscrew) printer = Non-planar printer?:
Have you though about looking at Stewart platform kinematics?
I am not the creator of this thread, so it's better to ask @Visionary . I personally know the stewart/hexapod platform and it's interesting. There has been other users trying to implement in RRF already, like in https://forum.duet3d.com/topic/7635/custom-kinematics-on-duet/14 but I think it was not finished, as so many projects.
-
The main reason why kinematics that is explained in this threads might be better than Stewart platform or any traditional way do +5 axes I've seen is that is easy to do mechanically with off the self parts. Machines like it already exist (for example Arnold_R_Clark's machine in this thread), but they still lack kinematics in software for Duet. Stewart machine relies on actuators that are hard to built or are expensive. This thread's kinematics can be used with linear rails or linear rods (though they can be expensive too).
Other pros:
- This bed system that has rotational axes does not have X-and Y-axes. This means X-and Y-axes can have any setup there is (idex, toolchanger,...).
- The system can be used normally with 2,5D slicers and do high quality prints. I assume that some setups for +5 Axes are heavy X/Y-gantries plagued by rigidity and positional accuracy problems (if compared something like Prusa or Voron print quality).
- With Duet 3 6HC no extra boards are needed.
- I happen to have many of the parts for this build.
- Unlike most printer designs, the design I'm aiming for is something that does not have printed parts or machined special parts. Simple plate 5mm aluminum plate parts are super easy to manufacture
-
@visionary said in Self Leveling (3 motor leadscrew) printer = Non-planar printer?:
hard time trying understand your handwriting
I take criticism seriously here is to clearify, I've inserted the better explanation in the post above.
-
Thanks . The angle alpha_a12 is in the drawing that I posted is 90 degrees. All the example values (vectors and coordinates) are for that specific geometry. I'm not sure if you switched that angle to 135 in your calculations. tan(90) is undefined.
The best angles between arms would preferably be either:- 90+135+135
- 120+120+120
-
@visionary I took 90+135+135 like in your drawing. But my drawing is a bit wrong, the left side is steeper in reality (78° for beta5). Please take D4, D5, beta 5, those are the labels you used in your diagram. Rotation 135 degrees counterclockwise results in my drawing. (the 135 rotation is a guess, I only want to explain how I get from your triangle to mine. The important part is: D5 must be horizontal, so the left point is (0,0) and the right one has y=0, so the formula is applicable).
The calculation of D5 is the curve for the 135° angle which is calculated in formula 1, the midpoint circle of D4 is the 90° triangle which is calculated by r²=x+y². tan(135°) is -1, so the first formula gets simple and results in the circle which I calculated with Desmos. The two circels meet in two points, calculated by getIntersec(), using the correct point is the middle of the green M lines. The vectors from the edges to this midpoint can be used to calculate the lengths.
-
i didn’t mean actual stewart platform, just the kinematics of it since what you’re trying to do is mathematically very similar to it with the two platform rotation axes.
Anyway, a 3 dof parallel platform is a simpler stewart platform. In this diagram, You can count the x1 and y1 rotation axes and you get the height of the point B from the I actuators and trigonometry.
If you look at this Instructables link, i’d think you get what you want when the T vector is the height and is constrained to the base Z vector.
At least thats my understading of the math.
-
@roiki11 said in Self Leveling (3 motor leadscrew) printer = Non-planar printer?:
simpler stewart platform. In this diagram, You c
in the document "Kinematics Analysis and Mechatronics System Design
Of a 3-DOF In-Parallel Actuated Mechanism" of the same author Huynh (it is cited in the article of your drawing), you'll see, that the formulae are similar complex like those discussed here. Same the MICS_Journal_ForwardKinematics.pdf in the instructables page. I read there somewhere that the inverse kinematics is easier than the forward. I don't agree, if you look into https://www.xarg.org/paper/inverse-kinematics-of-a-stewart-platform the inverse kinematics is complex also.The Stewart platform is said to have limited stroke. This kinematic here has more stroke, but it remains to be seen whether it is stable enough.