2020-09-23 18:59:59 +00:00
|
|
|
#include "dc_limits_comp.h"
|
2017-10-16 00:07:28 +00:00
|
|
|
#include "commands.h"
|
|
|
|
#include "hal.h"
|
|
|
|
#include "math.h"
|
|
|
|
#include "defines.h"
|
|
|
|
#include "angle.h"
|
|
|
|
|
|
|
|
HAL_COMP(dc_limits);
|
|
|
|
|
|
|
|
// motor values
|
|
|
|
HAL_PIN(psi);
|
|
|
|
HAL_PIN(r);
|
|
|
|
HAL_PIN(ld);
|
|
|
|
HAL_PIN(lq);
|
|
|
|
|
|
|
|
// sys limit
|
|
|
|
HAL_PIN(ac_volt);
|
|
|
|
|
|
|
|
// next min max out -> pid, curpid
|
|
|
|
HAL_PIN(next_max_cur);
|
|
|
|
HAL_PIN(next_max_torque);
|
|
|
|
HAL_PIN(next_min_cur);
|
|
|
|
HAL_PIN(next_min_torque);
|
|
|
|
|
|
|
|
// min max out @ current vel
|
|
|
|
HAL_PIN(max_cur);
|
|
|
|
HAL_PIN(max_torque);
|
|
|
|
HAL_PIN(min_cur);
|
|
|
|
HAL_PIN(min_torque);
|
|
|
|
|
|
|
|
// abs max out
|
|
|
|
HAL_PIN(abs_max_cur);
|
|
|
|
HAL_PIN(abs_max_torque);
|
|
|
|
HAL_PIN(abs_max_vel);
|
|
|
|
|
|
|
|
// dc feedback
|
|
|
|
HAL_PIN(iq);
|
|
|
|
HAL_PIN(vel);
|
|
|
|
|
2019-04-29 20:08:54 +00:00
|
|
|
static void nrt_init(void *ctx_ptr, hal_pin_inst_t *pin_ptr) {
|
2017-10-16 00:07:28 +00:00
|
|
|
// struct dc_limits_ctx_t * ctx = (struct dc_limits_ctx_t *)ctx_ptr;
|
|
|
|
struct dc_limits_pin_ctx_t *pins = (struct dc_limits_pin_ctx_t *)pin_ptr;
|
|
|
|
|
2017-10-29 21:42:31 +00:00
|
|
|
PIN(psi) = 0.01;
|
|
|
|
PIN(r) = 1.0;
|
|
|
|
PIN(ld) = 0.001;
|
|
|
|
PIN(lq) = 0.001;
|
2017-10-16 00:07:28 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 20:08:54 +00:00
|
|
|
static void rt_func(float period, void *ctx_ptr, hal_pin_inst_t *pin_ptr) {
|
2017-10-16 00:07:28 +00:00
|
|
|
// struct dc_limits_ctx_t * ctx = (struct dc_limits_ctx_t *)ctx_ptr;
|
|
|
|
struct dc_limits_pin_ctx_t *pins = (struct dc_limits_pin_ctx_t *)pin_ptr;
|
|
|
|
|
|
|
|
float lq = MAX(PIN(lq), 0.0001);
|
|
|
|
float psi = MAX(PIN(psi), 0.01);
|
|
|
|
float r = MAX(PIN(r), 0.001);
|
|
|
|
|
|
|
|
float iq = PIN(iq);
|
|
|
|
float vel = PIN(vel);
|
|
|
|
|
|
|
|
float indq = vel * psi;
|
2017-10-29 21:42:31 +00:00
|
|
|
|
2017-10-16 00:07:28 +00:00
|
|
|
float volt = PIN(ac_volt);
|
|
|
|
float abs_max_cur = volt / r;
|
|
|
|
float abs_max_vel = volt / psi;
|
|
|
|
float abs_max_torque = psi * abs_max_cur;
|
|
|
|
|
|
|
|
float next_max_cur = iq + (volt - r * iq - indq) / lq * period * 2.0 / 3.0;
|
|
|
|
float next_min_cur = iq + (-volt - r * iq - indq) / lq * period * 2.0 / 3.0;
|
|
|
|
float next_max_torque = psi * next_max_cur;
|
|
|
|
float next_min_torque = psi * next_min_cur;
|
|
|
|
|
|
|
|
float max_cur = (volt - vel * psi) / r;
|
|
|
|
float min_cur = (-volt - vel * psi) / r;
|
|
|
|
float max_torque = psi * max_cur;
|
|
|
|
float min_torque = psi * min_cur;
|
|
|
|
|
|
|
|
|
|
|
|
PIN(abs_max_cur) = abs_max_cur;
|
|
|
|
PIN(abs_max_vel) = abs_max_vel;
|
|
|
|
PIN(abs_max_torque) = abs_max_torque;
|
|
|
|
PIN(next_max_cur) = next_max_cur;
|
|
|
|
PIN(next_min_cur) = next_min_cur;
|
|
|
|
PIN(next_max_torque) = next_max_torque;
|
|
|
|
PIN(next_min_torque) = next_min_torque;
|
|
|
|
PIN(max_cur) = max_cur;
|
|
|
|
PIN(min_cur) = min_cur;
|
|
|
|
PIN(max_torque) = max_torque;
|
|
|
|
PIN(min_torque) = min_torque;
|
|
|
|
}
|
|
|
|
|
|
|
|
hal_comp_t dc_limits_comp_struct = {
|
|
|
|
.name = "dc_limits",
|
|
|
|
.nrt = 0,
|
|
|
|
.rt = rt_func,
|
|
|
|
.frt = 0,
|
|
|
|
.nrt_init = nrt_init,
|
|
|
|
.rt_start = 0,
|
|
|
|
.frt_start = 0,
|
|
|
|
.rt_stop = 0,
|
|
|
|
.frt_stop = 0,
|
|
|
|
.ctx_size = 0,
|
|
|
|
.pin_count = sizeof(struct dc_limits_pin_ctx_t) / sizeof(struct hal_pin_inst_t),
|
|
|
|
};
|