How accurate is your delta? December 16, 2014 09:00PM |
Registered: 10 years ago Posts: 33 |
Re: How accurate is your delta? December 17, 2014 03:41AM |
Registered: 10 years ago Posts: 14,684 |
Re: How accurate is your delta? December 17, 2014 04:36AM |
Registered: 11 years ago Posts: 732 |
Re: How accurate is your delta? December 17, 2014 11:15AM |
Registered: 9 years ago Posts: 44 |
Re: How accurate is your delta? December 17, 2014 01:35PM |
Registered: 10 years ago Posts: 469 |
Re: How accurate is your delta? December 17, 2014 03:00PM |
Registered: 10 years ago Posts: 14,684 |
Re: How accurate is your delta? December 17, 2014 03:34PM |
Registered: 11 years ago Posts: 732 |
Just to give you an idea for Marlin: [forums.reprap.org]Quote
dc42
Has anyone calculated the positioning error that this [delta segmentation] introduces?
Re: How accurate is your delta? December 17, 2014 03:40PM |
Registered: 9 years ago Posts: 44 |
Re: How accurate is your delta? December 17, 2014 04:02PM |
Registered: 10 years ago Posts: 33 |
Quote
hercek
If you are good at math you can use this to calibrate your printer precisely [github.com]
The document also explains the conditions under which it is applicable.
Re: How accurate is your delta? December 17, 2014 04:25PM |
Registered: 10 years ago Posts: 33 |
Re: How accurate is your delta? December 17, 2014 04:29PM |
Registered: 11 years ago Posts: 732 |
If that is the only major error you have then it indicates that the rear tower position is wrong. Try to move it a bit (lets say about 0.5 mm) more far away from the centre or more nearer to the centre. Direction is unknown since I do not know whether your thickness is in the direction of X axe or in the direction of Z axe.Quote
iira
... and I definitely have an issue where the rear tower produces a line that is 0.5mm longer than the rest, is thinner towards the tower and thicker further away from the tower (a total shift of 0.3mm). At a guess I would say my rear tower has something funny going on with it - any suggestions on where to start?
Re: How accurate is your delta? December 17, 2014 04:47PM |
Registered: 10 years ago Posts: 33 |
Quote
hercek
If that is the only major error you have then it indicates that the rear tower position is wrong. Try to move it a bit (lets say about 0.5 mm) more far away from the centre or more nearer to the centre. Direction is unknown since I do not know whether your thickness is in the direction of X axe or in the direction of Z axe.
Re: How accurate is your delta? December 17, 2014 06:35PM |
Registered: 10 years ago Posts: 14,684 |
Quote
dclarkm
That's a very interesting point. I'm guessing a non-delta would not have the same possible issues?Quote
dc42
For Marlin firmware, it will depend on the print speed, because the number of segments to use is specified "per second" in the M665 command.
Quote
hercek
Just to give you an idea for Marlin: [forums.reprap.org]
Re: How accurate is your delta? December 17, 2014 08:16PM |
Registered: 11 years ago Posts: 732 |
Maybe you already know, but if not then this may be useful: [www.finesse.demon.co.uk]Quote
dc42
The limiting factor is the time needed to calculate the square root of a 64-bit integer. I have it down to less than 16us, and I am hopeful of reducing it further.
Re: How accurate is your delta? December 18, 2014 03:12AM |
Registered: 10 years ago Posts: 14,684 |
Re: How accurate is your delta? December 18, 2014 07:01AM |
Registered: 11 years ago Posts: 732 |
Re: How accurate is your delta? December 18, 2014 07:43PM |
Registered: 10 years ago Posts: 14,684 |
Re: How accurate is your delta? December 19, 2014 07:59AM |
Registered: 10 years ago Posts: 1,603 |
Re: How accurate is your delta? December 19, 2014 08:30AM |
Registered: 10 years ago Posts: 1,603 |
Re: How accurate is your delta? December 19, 2014 12:24PM |
Registered: 11 years ago Posts: 732 |
Re: How accurate is your delta? December 19, 2014 01:57PM |
Registered: 10 years ago Posts: 14,684 |
Re: How accurate is your delta? December 19, 2014 05:42PM |
Registered: 11 years ago Posts: 732 |
Re: How accurate is your delta? December 19, 2014 07:05PM |
Registered: 12 years ago Posts: 58 |
Re: How accurate is your delta? January 10, 2015 06:04PM |
Registered: 9 years ago Posts: 42 |
Quote
Protoprinter
Hi,
since I built a Delta the last 6 Weeks, I can tell you something about my calibration procedure.So, for calibration you have to do the following steps:
Make your printer printing flat by modifing Delta Endstop Offsets for A/B/C and Delta_Radius. You can do it with a piece of paper, modify the Offsets/Radius until the nozzle scratches over the paper with the same feeling at all 4 positions.
After that print a 10x10cm cube for calibrating X/Y dimension. Increase the Delta_radius if you want to Decrease the dimension...
At last, calibrate you extruder Steps/mm. I usualli print a cube with 3x0,5mm perimeter and change the E-Steps until I got 1,48-1,50mm thick walls. Some Pictures of my printed Parts:
The better part was printed with PID Heated Bed. The worst one is Bang Bang Mode HB...
Sometimes I have problems to measure accuratly with a gauge, the result depends on the force and position, angle etc. But I think I have an accuracy of +- 0,05mm
Manu
Re: How accurate is your delta? January 10, 2015 06:08PM |
Registered: 10 years ago Posts: 1,603 |
Re: How accurate is your delta? January 10, 2015 09:37PM |
Registered: 11 years ago Posts: 732 |
Re: How accurate is your delta? January 11, 2015 08:08PM |
Registered: 9 years ago Posts: 42 |
Re: How accurate is your delta? January 12, 2015 09:14PM |
Registered: 10 years ago Posts: 33 |
// Tower position correction #define DELTA_TOWER1_CORRECTION 0.5 // front left tower #define DELTA_TOWER2_CORRECTION 0.0 // front right tower #define DELTA_TOWER3_CORRECTION 0.0 // back middle tower // Effective X/Y positions of the three vertical towers. #define SIN_60 0.8660254037844386 #define COS_60 0.5 #define DELTA_TOWER1_X -SIN_60*(DELTA_RADIUS + DELTA_TOWER1_CORRECTION) // front left tower #define DELTA_TOWER1_Y -COS_60*(DELTA_RADIUS + DELTA_TOWER1_CORRECTION) #define DELTA_TOWER2_X SIN_60*(DELTA_RADIUS + DELTA_TOWER2_CORRECTION) // front right tower #define DELTA_TOWER2_Y -COS_60*(DELTA_RADIUS + DELTA_TOWER2_CORRECTION) #define DELTA_TOWER3_X 0.0 // back middle tower #define DELTA_TOWER3_Y DELTA_RADIUS + DELTA_TOWER3_CORRECTION