diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-06-13 16:53:25 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-06-20 09:26:10 -0400 |
commit | bbe53cf8e50965af5e172166021147704b2e36fe (patch) | |
tree | 8d738ff205244d6deba49128efb5f99753566b5e /klippy/chelper/kin_extruder.c | |
parent | 7148ebd565bfb123326b4bd8823bdc26f39a6cf2 (diff) | |
download | kutter-bbe53cf8e50965af5e172166021147704b2e36fe.tar.gz kutter-bbe53cf8e50965af5e172166021147704b2e36fe.tar.xz kutter-bbe53cf8e50965af5e172166021147704b2e36fe.zip |
extruder: Convert to using iterative solver
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper/kin_extruder.c')
-rw-r--r-- | klippy/chelper/kin_extruder.c | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/klippy/chelper/kin_extruder.c b/klippy/chelper/kin_extruder.c new file mode 100644 index 00000000..6b34980f --- /dev/null +++ b/klippy/chelper/kin_extruder.c @@ -0,0 +1,54 @@ +// Extruder stepper pulse time generation +// +// Copyright (C) 2018 Kevin O'Connor <kevin@koconnor.net> +// +// This file may be distributed under the terms of the GNU GPLv3 license. + +#include <stdlib.h> // malloc +#include <string.h> // memset +#include "compiler.h" // __visible +#include "itersolve.h" // struct stepper_kinematics +#include "pyhelper.h" // errorf + +static double +extruder_calc_position(struct stepper_kinematics *sk, struct move *m + , double move_time) +{ + return m->start_pos.x + move_get_distance(m, move_time); +} + +struct stepper_kinematics * __visible +extruder_stepper_alloc(void) +{ + struct stepper_kinematics *sk = malloc(sizeof(*sk)); + memset(sk, 0, sizeof(*sk)); + sk->calc_position = extruder_calc_position; + return sk; +} + +// Populate a 'struct move' with an extruder velocity trapezoid +void __visible +extruder_move_fill(struct move *m, double print_time + , double accel_t, double cruise_t, double decel_t + , double start_pos + , double start_v, double cruise_v, double accel + , double extra_accel_v, double extra_decel_v) +{ + // Setup velocity trapezoid + m->print_time = print_time; + m->move_t = accel_t + cruise_t + decel_t; + m->accel_t = accel_t; + m->cruise_t = cruise_t; + m->cruise_start_d = accel_t * (.5 * (cruise_v + start_v) + extra_accel_v); + m->decel_start_d = m->cruise_start_d + cruise_t * cruise_v; + + // Setup for accel/cruise/decel phases + m->cruise_v = cruise_v; + m->accel.c1 = start_v + extra_accel_v; + m->accel.c2 = .5 * accel; + m->decel.c1 = cruise_v + extra_decel_v; + m->decel.c2 = -m->accel.c2; + + // Setup start distance + m->start_pos.x = start_pos; +} |