Re: LISA Simpson January 14, 2014 07:42AM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 14, 2014 10:56AM |
Registered: 11 years ago Posts: 20 |
Re: LISA Simpson January 14, 2014 04:15PM |
Registered: 11 years ago Posts: 1,381 |
Re: LISA Simpson January 14, 2014 09:29PM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 15, 2014 12:49AM |
Registered: 11 years ago Posts: 1,381 |
Re: LISA Simpson January 15, 2014 07:48AM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 15, 2014 04:34PM |
Registered: 11 years ago Posts: 1,381 |
Re: LISA Simpson January 15, 2014 08:14PM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 15, 2014 09:09PM |
Registered: 11 years ago Posts: 1,381 |
Re: LISA Simpson January 16, 2014 07:38AM |
Registered: 13 years ago Posts: 85 |
Re: LISA Simpson January 16, 2014 07:45AM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 16, 2014 07:59PM |
Registered: 11 years ago Posts: 1,381 |
Re: LISA Simpson January 16, 2014 09:10PM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 17, 2014 10:52PM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 18, 2014 12:05AM |
Registered: 11 years ago Posts: 1,381 |
Re: LISA Simpson January 18, 2014 12:33AM |
Registered: 11 years ago Posts: 979 |
Re: LISA Simpson January 18, 2014 01:55AM |
Registered: 11 years ago Posts: 1,381 |
Re: LISA Simpson January 18, 2014 09:44AM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 19, 2014 09:40AM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 19, 2014 11:17PM |
Registered: 11 years ago Posts: 1,381 |
Re: LISA Simpson January 19, 2014 11:35PM |
Registered: 11 years ago Posts: 979 |
Re: LISA Simpson January 20, 2014 12:06PM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 20, 2014 05:22PM |
Registered: 10 years ago Posts: 67 |
Re: LISA Simpson January 20, 2014 05:49PM |
Registered: 11 years ago Posts: 979 |
Re: LISA Simpson January 20, 2014 06:06PM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 20, 2014 06:26PM |
Registered: 11 years ago Posts: 1,433 |
Quote
nicholas.seward
@Hazer: Real quick. The prepocessor I have made breaks movement in 1mm or smaller chunks. (Actually whatever size you want but 1mm doesn't show any artifacts.) At that scale a straight line in one coordinate system is approximately straight in the other.
All the math is the same between the Rostock and LISA (LISA enjoys the same simplifications that the Rostock does.) except for the arccos you need to do for each arm. It seems like there are libraries that use lookup tables that can get that done in pretty short order. 17 cycles for tan. I am not sure how many for arccos/arcsin. [forums.reprap.org] I have no experience myself but I feel confident that if I wanted to squeeze LISA into AVR firmware that I could. (Worse case scenario is that I have to make my own lookup table.) However, I am not going to worry about it because it seems that the next gen controllers won't even flinch with unoptimized inverse kinematics.
Re: LISA Simpson January 20, 2014 10:25PM |
Registered: 10 years ago Posts: 67 |
void calculate_delta(float cartesian[3]) { delta[X_AXIS] = sqrt(DELTA_DIAGONAL_ROD_2 - sq(DELTA_TOWER1_X-cartesian[X_AXIS]) - sq(DELTA_TOWER1_Y-cartesian[Y_AXIS]) ) + cartesian[Z_AXIS];
Re: LISA Simpson January 20, 2014 10:59PM |
Registered: 11 years ago Posts: 979 |
Re: LISA Simpson January 21, 2014 07:48AM |
Registered: 11 years ago Posts: 1,433 |
Re: LISA Simpson January 21, 2014 01:22PM |
Registered: 11 years ago Posts: 1,433 |