nuttx-apps/include/industry/foc/float/foc_handler.h
raiden00pl d75d6b7af0 Add FOC library
Supported features:
- float and fixed16 operations
- helper interface to interact with the kernel-side FOC device
- general interface for FOC controller
- PI current/voltage controller
- 3-phase space vector modulation
- general interface for FOC model
- PMSM model
- general interface for phase angle data
- open-loop handler
- general interface for phase velocity data
- general interface for ramp (eg. velocity ramp, torque ramp)
- (WIP) CORDIC interface for hardware acceleration
2021-04-10 00:39:09 -05:00

249 lines
7.6 KiB
C

/****************************************************************************
* apps/include/industry/foc/float/foc_handler.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
#ifndef __INDUSTRY_FOC_FLOAT_FOC_HANDLER_H
#define __INDUSTRY_FOC_FLOAT_FOC_HANDLER_H
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <dsp.h>
#ifdef CONFIG_INDUSTRY_FOC_CORDIC
# include "industry/foc/float/foc_cordic.h"
#endif
/****************************************************************************
* Public Type Definition
****************************************************************************/
/* Input to FOC controller */
struct foc_handler_input_f32_s
{
FAR float *current; /* Phase current samples */
FAR dq_frame_f32_t *dq_ref; /* DQ reference frame */
FAR dq_frame_f32_t *vdq_comp; /* DQ voltage compensation */
FAR float angle; /* Phase angle */
FAR float vbus; /* Bus voltage */
FAR int mode; /* Controller mode (enum foc_handler_mode_e) */
};
/* Output from FOC controller */
struct foc_handler_output_f32_s
{
float duty[CONFIG_MOTOR_FOC_PHASES]; /* New duty cycle for PWM */
};
/* Controller state */
struct foc_state_f32_s
{
float curr[CONFIG_MOTOR_FOC_PHASES];
float volt[CONFIG_MOTOR_FOC_PHASES];
ab_frame_f32_t iab;
ab_frame_f32_t vab;
dq_frame_f32_t vdq;
dq_frame_f32_t idq;
};
/* Forward declaration */
typedef struct foc_handler_f32_s foc_handler_f32_t;
/* Modulation operations */
struct foc_modulation_ops_f32_s
{
/* Initialize */
CODE int (*init)(FAR foc_handler_f32_t *h);
/* Deinitialzie */
CODE void (*deinit)(FAR foc_handler_f32_t *h);
/* Configure modulation */
CODE void (*cfg)(FAR foc_handler_f32_t *h, FAR void *cfg);
/* Modulation specific current correction */
CODE void (*current)(FAR foc_handler_f32_t *h, FAR float *curr);
/* Get the base voltage for a given modulation scheme */
CODE void (*vbase_get)(FAR foc_handler_f32_t *h,
float vbus,
FAR float *vbase);
/* Run modulation */
CODE void (*run)(FAR foc_handler_f32_t *h,
FAR ab_frame_f32_t *v_ab_mod,
FAR float *duty);
};
/* Current/voltage controller operations */
struct foc_control_ops_f32_s
{
/* Initialize */
CODE int (*init)(FAR foc_handler_f32_t *h);
/* Deinitialize */
CODE void (*deinit)(FAR foc_handler_f32_t *h);
/* Configure controller */
CODE void (*cfg)(FAR foc_handler_f32_t *h,
FAR void *cfg);
/* Feed controller with input data */
CODE void (*input_set)(FAR foc_handler_f32_t *h,
FAR float *current,
float vbase,
float angle);
/* Run voltage controller */
CODE void (*voltage_run)(FAR foc_handler_f32_t *h,
FAR dq_frame_f32_t *dq_ref,
FAR ab_frame_f32_t *v_ab_mod);
/* Run current controller */
CODE void (*current_run)(FAR foc_handler_f32_t *h,
FAR dq_frame_f32_t *dq_ref,
FAR dq_frame_f32_t *vdq_comp,
FAR ab_frame_f32_t *v_ab_mod);
/* Get controller state data */
CODE void (*state_get)(FAR foc_handler_f32_t *h,
FAR struct foc_state_f32_s *state);
};
/* FOC handler operations */
struct foc_handler_ops_f32_s
{
/* Current/voltage controller interface */
struct foc_control_ops_f32_s *ctrl;
/* Modulation interface */
struct foc_modulation_ops_f32_s *mod;
};
/* FOC handler data */
struct foc_handler_f32_s
{
#ifdef CONFIG_INDUSTRY_FOC_CORDIC
int fd; /* CORDIC device */
#endif
struct foc_handler_ops_f32_s ops; /* Handler operations */
FAR void *modulation; /* Modulation data */
FAR void *control; /* Controller data */
};
/* Modulation configuration */
struct foc_mod_cfg_f32_s
{
float pwm_duty_max; /* Maximum allowed PWM duty cycle */
};
/****************************************************************************
* Public Data
****************************************************************************/
#ifdef CONFIG_INDUSTRY_FOC_CONTROL_PI
/* FOC PI controller (float) */
extern struct foc_control_ops_f32_s g_foc_control_pi_f32;
#endif
#ifdef CONFIG_INDUSTRY_FOC_MODULATION_SVM3
/* 3-phase space vector modulation Modulation handler (float) */
extern struct foc_modulation_ops_f32_s g_foc_mod_svm3_f32;
#endif
/****************************************************************************
* Public Function Prototypes
****************************************************************************/
/****************************************************************************
* Name: foc_handler_init_f32
****************************************************************************/
int foc_handler_init_f32(FAR foc_handler_f32_t *h,
FAR struct foc_control_ops_f32_s *ctrl,
FAR struct foc_modulation_ops_f32_s *mod);
/****************************************************************************
* Name: foc_handler_deinit_f32
****************************************************************************/
int foc_handler_deinit_f32(FAR foc_handler_f32_t *h);
/****************************************************************************
* Name: foc_handler_run_f32
****************************************************************************/
int foc_handler_run_f32(FAR foc_handler_f32_t *h,
FAR struct foc_handler_input_f32_s *in,
FAR struct foc_handler_output_f32_s *out);
/****************************************************************************
* Name: foc_handler_cfg_f32
****************************************************************************/
void foc_handler_cfg_f32(FAR foc_handler_f32_t *h,
FAR void *ctrl_cfg,
FAR void *mod_cfg);
/****************************************************************************
* Name: foc_handler_state_f32
****************************************************************************/
void foc_handler_state_f32(FAR foc_handler_f32_t *h,
FAR struct foc_state_f32_s *state);
#ifdef CONFIG_INDUSTRY_FOC_HANDLER_PRINT
/****************************************************************************
* Name: foc_handler_state_print_f32
****************************************************************************/
void foc_handler_state_print_f32(FAR struct foc_state_f32_s *state);
#endif
#endif /* __INDUSTRY_FOC_FLOAT_FOC_HANDLER_H */