@dlang are you envisioning any hardware changes needed for this? My understanding is that there are two things being discussed in this thread:
a software fix to reduce error around the corners due to the extra belt length from the plastic belt end.
@Dano and @iliaden discussing using spacers to make each anchor parallel with its arm.
I see how #2 makes #1 largely unnecessary, but my understanding is that #1 as a software fix would be helpful for those of us who can’t easily have variable anchor height (e.g. glued to floor we can’t drill into).
If I’m correct in understanding that this could be partially solved through software, I’m very excited to test as dimensional accuracy in the corners of the worksurface has been one of my largest sources of frustration.
@dlang are you envisioning any hardware changes needed for this? My understanding is that there are two things being discussed in this thread:
a software fix to reduce error around the corners due to the extra belt length from the plastic belt end.
@Dano and @iliaden discussing using spacers to make each anchor parallel with its arm.
I see how #2 makes #1 largely unnecessary, but my understanding is that #1 as a software fix would be helpful for those of us who can’t easily have variable anchor height (e.g. glued to floor we can’t drill into).
If I’m correct in understanding that this could be partially solved through software, I’m very excited to test as dimensional accuracy in the corners of the worksurface has been one of my largest sources of frustration.
The flatter the belts, the less important the software fix is, but it can’t 100%
eliminate the error without the software fix
On the other hand, the software fix is also limited, it assumes that the arm has
zero flex in the Z direction, which is also not a perfect match for reality.
With a large enough frame compared to the workpiece, either fix is probably
‘good enough’ but the software fix should be straightforward.
@bar@md8n I created a pull request to correctly calculate the belt length needed
I don’t currently have the ability to test it (not even compile test it), but the chage seems pretty straightforward
As I note in the comment, with the bit all the way down, when 600mm (25 in) from an anchor this is an error of just under 6mm for the belt that has a Z offset of 144mm.
if you are at max height, this becomes almost 11mm of error.
I can’t help but believe that errors like this will throw off the calibration, and then cause problems later as the Z is higher and therefor the errors larger.
This doesn’t account for the Z distance at all. And I don’t see any point where it uses calibration_data and accounts for Z either.
hmm if getPosition is c, then we should be able to change this to
float c;
c = axisTL.getPosition();
b = z + tlZ;
a=sqrt( ( c * c ) - ( b * b ) );
calibration_data[0][waypoint] = a + _beltEndExtension + _armLength;
This also makes it so that it compensates for the Z axis not being all the way down (as long as z stop has been set) eliminating one common calibration mistake.
This is actually correct, the data points don’t take into account the z-axis height, but it is accounted for when the calculations are done. This is just a raw measurement of how long the belt was at each point.
where is the Z distance taken into account? If nothing else, it should be
adjusted to take into account the Z position rather than requiring that the
machine be all the way down.
I looked through all the places where the calibration data was referenced and
didn’t see anything that included Z in it’s calculations that I saw.
I agree that it could be handled in a more intuitive way, but I don’t think it’s a source of error. The z is handled on the browser side
/**
* Projects the measurements to the plane of the machine. This is needed
* because the belts are not parallel to the surface of the machine.
* @param {Object} measurement - An object containing the measurements
* @returns {Object} - An object containing the projected measurements
*/
function projectMeasurement(measurement) {
const tl = Math.sqrt(Math.pow(measurement.tl, 2) - Math.pow(tlZ, 2))
const tr = Math.sqrt(Math.pow(measurement.tr, 2) - Math.pow(trZ, 2))
const bl = Math.sqrt(Math.pow(measurement.bl, 2) - Math.pow(blZ, 2))
const br = Math.sqrt(Math.pow(measurement.br, 2) - Math.pow(brZ, 2))
return { tl: tl, tr: tr, bl: bl, br: br }
}
Running calibration with the z-axis all the way down has the added benefits of making the machine as rigid as possible and also homing the z-axis
I think it would be good to move the calculation into the firmware. We are seeing people experiment with new solvers to compute the anchor point, and sending incorrect data to the requester and having them fix it (and the browser calculation is incorrect because it assumes the arm and anchor can pivot in the Z axis)
so I was right that this problem is in the calibration, it’s just done (incorrectly) in a different part of the code
I didn’t want to hijack that thread with a theoretical question that may have no real value.
Knowing we cannot accurately travel the white and red zones due to arm angle limitations. Is it possible we could add extension (cables / chain / threaded rod) between anchors and belt end to take up the non cutting area and shorten belt requirements?
I suspect there would have to be 4 new parameters for each belt length offset that would have to be manually defined by user and then variable added into all the distance calculations and calibration measurements.
Not sure if there is enough value added to effort.
The current code does not support it, I created a PR to enable it, but it was rejected as not being needed. Perhaps we can talk about it again after this change is made.
The same change could be useful by allowing us to put a clamp on the belt so that we don’t have to actually detach every belt when doing the rehang dance. Even just being able to leave one attached would be a significant win, and I think we could do better than that.
Initially I did the calculations on the ESP32, but because of how slow the processor is it would take 20min - 1 hour to find the solution…running it on the computer is orders of magnitude faster
I have a few more cuts to make this weekend. Happy to test if it gets merged/compiled! Curious to see if calibration scores will increase (I’m around 0.6 now horizontally glued to concrete)
Initially I did the calculations on the ESP32, but because of how slow the
processor is it would take 20min - 1 hour to find the solution…running it on
the computer is orders of magnitude faster
I’m not suggesting the the calibration routine be done on the ESP, just that the
projection calculations be done there. Give the calibration routine (whichever
one) the corrected projection numbers rather than the raw belt amounts.
Keep any corrections (this fix, added belt length, etc) in one place.
Ah yeah I agree with that. That is a cleaner way to organize the code. That bit of code is ripe for a clean up.
Also this is re: a different thread, but I remember you wanted to add more things to the .yaml file and I vetoed it because I didn’t want to confuse users…that was back when we were asking folks to edit the .yaml file directly. Now that we’ve fixed that issue I’m good with exposing more parameters if it seems useful even to a small percentage of users
Ah yeah I agree with that. That is a cleaner way to organize the code. That bit of code is ripe for a clean up.
Also this is re: a different thread, but I remember you wanted to add more things to the .yaml file and I vetoed it because I didn’t want to confuse users…that was back when we were asking folks to edit the .yaml file directly. Now that we’ve fixed that issue I’m good with exposing more parameters if it seems useful even to a small percentage of users
do you want me to wait until you merge this and then do a separate PR? or merge
this (and the index.html changes), get them tested, and then do the other work
to support additional functionality?