nuttx-apps/examples/foc
2022-02-17 10:30:41 +01:00
..
foc_adc.h include: fix double include pre-processor guards 2022-01-16 17:36:21 +08:00
foc_cfg.h examples/foc: make the FOC current controller configurable 2022-02-16 23:49:46 +08:00
foc_debug.h include: fix double include pre-processor guards 2022-01-16 17:36:21 +08:00
foc_device.c examples/foc: move the common FOC dev logic from threads to one place 2021-10-31 12:13:45 -05:00
foc_device.h include: fix double include pre-processor guards 2022-01-16 17:36:21 +08:00
foc_fixed16_thr.c foc/examples: initial logic to support torque, velocity and position controller modes 2021-11-04 13:50:57 -05:00
foc_float_thr.c foc/examples: initial logic to support torque, velocity and position controller modes 2021-11-04 13:50:57 -05:00
foc_intf.c examples/foc: add a simple character based interface to interact with the app 2021-12-08 12:20:42 -06:00
foc_intf.h include: fix double include pre-processor guards 2022-01-16 17:36:21 +08:00
foc_main.c examples/foc: make the FOC current controller configurable 2022-02-16 23:49:46 +08:00
foc_motor_b16.c examples/foc/foc_motor: store the configured FOC run mode in a separate variable 2022-02-17 10:30:41 +01:00
foc_motor_b16.h examples/foc/foc_motor: store the configured FOC run mode in a separate variable 2022-02-17 10:30:41 +01:00
foc_motor_f32.c examples/foc/foc_motor: store the configured FOC run mode in a separate variable 2022-02-17 10:30:41 +01:00
foc_motor_f32.h examples/foc/foc_motor: store the configured FOC run mode in a separate variable 2022-02-17 10:30:41 +01:00
foc_mq.c examples/foc: replace the requested velocity input with a more general setpoint input. 2021-10-30 13:50:56 -05:00
foc_mq.h include: fix double include pre-processor guards 2022-01-16 17:36:21 +08:00
foc_parseargs.c examples/foc/foc_parseargs.c: fix help message 2022-02-17 10:30:41 +01:00
foc_parseargs.h examples/foc: make the FOC current controller configurable 2022-02-16 23:49:46 +08:00
foc_thr.c examples/foc: move threads related logic to a separate file 2021-12-07 07:51:12 -06:00
foc_thr.h examples/foc: add an option to disable motor controller logic 2022-02-16 23:57:27 +08:00
Kconfig examples/foc: add an option to disable motor controller logic 2022-02-16 23:57:27 +08:00
Make.defs Makefiles: Gregory Nutt: update licenses to Apache 2021-06-07 21:35:33 -05:00
Makefile examples/foc: move adc and button interfaces logic to a separate file 2021-12-07 07:51:12 -06:00
README.md Add FOC motor controller example 2021-04-10 00:40:43 -05:00

FOC example

The main purpose of this example is to provide a universal template to implement the motor controller based on the kernel-side FOC device and the application-side FOC library.

At the moment, this example implements a simple open-loop velocity controller.

Hardware setup

This example has not yet implemented any mechanism to protect the powered device. This means that there is no overtemeprature protection, no overcurrent protection and no overvoltage protection.

Make sure that you power the device properly and provide current limits on your own so as not to break your hardware.

Configuration

The FOC PI current controller parameters can be obtained from the given equations:

Kp = ccb * Ls;
pp = Rs / Ls;
Ki = pp * Kp * T;

where: Kp - PI proportional coefficient Ki - PI integral coefficient Rs - average phase serial resistance Ls - average phase serial inductance pp - pole plant ccb - current control bandwidth T - sampling period

Sample parameters for some commercially available motors

  • Odrive D6374 150KV p = 7 Rs = 0.0254 Ohm Ls = 8.73 uH i_max = ? v_max = ?

    Example configuration for f_PWM = 20kHz, f_notifier = 10kHz, ccb=1000: Kp = 0.0087 Ki = 0.0025

  • Linix 45ZWN24-40 (PMSM motor dedicated for NXP FRDM-MC-LVMTR kit) p = 2 Rs = 0.5 Ohm Ls = 0.400 mH i_max = 2.34 A v_max = 24 V

    Example configuration for f_PWM = 10kHz, f_notifier = 5kHz, ccb=1000: Kp = 0.4 Ki = 0.1

  • Bull-Running BR2804-1700 kV (motor provided with the ST P-NUCLEO-IHM07 kit) p = 7 Rs = 0.11 Ohm Ls = 0.018 mH i_max = 1.2A v_max = 12V

    Example configuration for f_PWM = 20kHz, f_notifier = 10kHz, ccb=200: Kp = 0.036 Ki = 0.022

  • iPower GBM2804H-100T (gimbal motor provided with the ST P-NUCLEO-IHM03 kit) p = 7 Rs = 5.29 Ohm Ls = 1.05 mH i_max = 0.15A v_max = 12V

    Example configuration for f_PWM = 10kHz, f_notifier = 5kHz, ccb=TODO: Kp = TODO Ki = TODO