nuttx/libs/libdsp/lib_motor.c

423 lines
12 KiB
C

/****************************************************************************
* libs/libdsp/lib_motor.c
*
* 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.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <dsp.h>
#include <string.h>
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
#define POLE_CNTR_THR (0.0f)
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: motor_openloop_init
*
* Description:
* Initialize open-loop data
*
* Input Parameters:
* op - (in/out) pointer to the openloop data structure
* per - (in) period of the open-loop control
*
* Returned Value:
* None
*
****************************************************************************/
void motor_openloop_init(FAR struct openloop_data_f32_s *op, float per)
{
LIBDSP_DEBUGASSERT(op != NULL);
LIBDSP_DEBUGASSERT(per > 0.0f);
/* Reset openloop structure */
memset(op, 0, sizeof(struct openloop_data_f32_s));
/* Initialize data */
op->per = per;
}
/****************************************************************************
* Name: motor_openloop
*
* Description:
* One step of the open-loop control
*
* Input Parameters:
* op - (in/out) pointer to the open-loop data structure
* speed - (in) open-loop speed
* dir - (in) rotation direction
*
* Returned Value:
* None
*
****************************************************************************/
void motor_openloop(FAR struct openloop_data_f32_s *op, float speed,
float dir)
{
LIBDSP_DEBUGASSERT(op != NULL);
LIBDSP_DEBUGASSERT(speed >= 0.0f);
LIBDSP_DEBUGASSERT(dir == DIR_CW || dir == DIR_CCW);
float phase_step = 0.0f;
/* Get phase step */
phase_step = dir * speed * op->per;
/* Update open-loop angle */
op->angle += phase_step;
/* Normalize the open-loop angle to 0.0 - 2PI range */
angle_norm_2pi(&op->angle, MOTOR_ANGLE_E_MIN, MOTOR_ANGLE_E_MAX);
}
/****************************************************************************
* Name: motor_openloop_angle_get
*
* Description:
* Get angle from open-loop controller
*
* Input Parameters:
* op - (in/out) pointer to the open-loop data structure
*
* Returned Value:
* Return angle from open-loop controller
*
****************************************************************************/
float motor_openloop_angle_get(FAR struct openloop_data_f32_s *op)
{
LIBDSP_DEBUGASSERT(op != NULL);
return op->angle;
}
/* In a multipolar electrical machines, mechanical angle is not equal
* to mechanical angle which can be described as:
*
* electrical angle = (p) * mechanical angle
* where p - number of poles pair
*
*
* electrical
* angle:
*
* poles = 4
* i = 0 1 2 3 0 1 2 3 0
* 2PI ______________________________________________
* /| /| /| /| /| /| /| /| /|
* / | / | / | / | / | / | / | / | / |
* / | / | / | / | / | / | / | / | / |
* 0 /___|/___|/___|/___|/___|/___|/___|/___|/___|/
* . . .
* mechanical . . .
* angle: . . .
* . . .
* 2PI .__________________.___________________.______
* . o o
* . o o o o
* . o o o o
* . o o o o o
* 0 o__________________o___________________o______
*
*/
/****************************************************************************
* Name: motor_angle_init
*
* Description:
* Initialize motor angle structure
*
* Input Parameters:
* angle - (in/out) pointer to the motor angle structure
* p - (in) number of the motor pole pairs
*
* Returned Value:
* None
*
****************************************************************************/
void motor_angle_init(FAR struct motor_angle_f32_s *angle, uint8_t p)
{
LIBDSP_DEBUGASSERT(angle != NULL);
LIBDSP_DEBUGASSERT(p > 0);
/* Reset structure */
memset(angle, 0, sizeof(struct motor_angle_f32_s));
/* Store pole pairs */
angle->p = p;
angle->one_by_p = (float)1.0f / p;
/* Initialize angle with 0.0 */
phase_angle_update(&angle->angle_el, 0.0f);
}
/****************************************************************************
* Name: motor_angle_e_update
*
* Description:
* Update motor angle structure using electrical motor angle.
*
* Input Parameters:
* angle - (in/out) pointer to the motor angle structure
* angle_new - (in) new motor electrical angle in range <0.0, 2PI>
*
* Returned Value:
* None
*
****************************************************************************/
void motor_angle_e_update(FAR struct motor_angle_f32_s *angle,
float angle_new, float dir)
{
LIBDSP_DEBUGASSERT(angle != NULL);
LIBDSP_DEBUGASSERT(angle_new >= 0.0f && angle_new <= MOTOR_ANGLE_E_MAX);
LIBDSP_DEBUGASSERT(dir == DIR_CW || dir == DIR_CCW);
/* Check if we crossed electrical angle boundaries */
if (dir == DIR_CW)
{
/* For CW direction - previous angle is greater than current angle */
if (angle_new - angle->angle_el.angle < -POLE_CNTR_THR)
{
angle->i += 1;
}
}
else if (dir == DIR_CCW)
{
/* For CCW direction - previous angle is lower than current angle */
if (angle_new - angle->angle_el.angle > POLE_CNTR_THR)
{
angle->i -= 1;
}
}
/* Reset pole counter if needed */
if (angle->i >= angle->p)
{
angle->i = 0;
}
else if (angle->i < 0)
{
angle->i = angle->p - 1;
}
/* Update electrical angle structure */
phase_angle_update(&angle->angle_el, angle_new);
/* Calculate mechanical angle.
* One electrical angle rotation is equal to one mechanical rotation
* divided by number of motor pole pairs.
*/
angle->anglem = (MOTOR_ANGLE_E_RANGE * angle->i +
angle->angle_el.angle) * angle->one_by_p;
/* Normalize mechanical angle to <0, 2PI> and store */
angle_norm_2pi(&angle->anglem, MOTOR_ANGLE_M_MIN, MOTOR_ANGLE_M_MAX);
}
/****************************************************************************
* Name: motor_angle_m_update
*
* Description:
* Update motor angle structure using mechanical motor angle
*
* Input Parameters:
* angle - (in/out) pointer to the motor angle structure
* angle_new - (in) new motor mechanical angle in range <0.0, 2PI>
*
* Returned Value:
* None
*
****************************************************************************/
void motor_angle_m_update(FAR struct motor_angle_f32_s *angle,
float angle_new, float dir)
{
LIBDSP_DEBUGASSERT(angle != NULL);
LIBDSP_DEBUGASSERT(angle_new >= 0.0f && angle_new <= MOTOR_ANGLE_E_MAX);
LIBDSP_DEBUGASSERT(dir == DIR_CW || dir == DIR_CCW);
float angle_el = 0.0f;
/* Store new mechanical angle */
angle->anglem = angle_new;
/* Update pole counter */
angle->i = (uint8_t)(angle->anglem * angle->p / MOTOR_ANGLE_M_MAX);
/* Get electrical angle */
angle_el = angle->anglem * angle->p - MOTOR_ANGLE_E_MAX * angle->i;
/* Update electrical angle structure */
phase_angle_update(&angle->angle_el, angle_el);
}
/****************************************************************************
* Name: motor_angle_m_get
*
* Description:
* Get motor mechanical angle
*
* Input Parameters:
* angle - (in/out) pointer to the motor angle structure
*
* Returned Value:
* Return motor mechanical angle
*
****************************************************************************/
float motor_angle_m_get(FAR struct motor_angle_f32_s *angle)
{
LIBDSP_DEBUGASSERT(angle != NULL);
return angle->anglem;
}
/****************************************************************************
* Name: motor_angle_e_get
*
* Description:
* Get motor electrical angle
*
* Input Parameters:
* angle - (in/out) pointer to the motor angle structure
*
* Returned Value:
* Return motor electrical angle
*
****************************************************************************/
float motor_angle_e_get(FAR struct motor_angle_f32_s *angle)
{
LIBDSP_DEBUGASSERT(angle != NULL);
return angle->angle_el.angle;
}
/****************************************************************************
* Name: motor_phy_params_init
*
* Description:
* Initialize motor physical parameters
*
* Input Parameters:
* phy - (in/out) pointer to the motor physical parameters
* poles - (in) number of the motor pole pairs
* res - (in) average phase-to-neutral base motor resistance
* (without temperature compensation)
* ind - (in) average phase-to-neutral motor inductance
* flux - (in) flux linkage
*
* Returned Value:
* None
*
****************************************************************************/
void motor_phy_params_init(FAR struct motor_phy_params_f32_s *phy,
uint8_t poles, float res, float ind,
float flux_link)
{
LIBDSP_DEBUGASSERT(phy != NULL);
memset(phy, 0, sizeof(struct motor_phy_params_f32_s));
phy->p = poles;
phy->flux_link = flux_link;
phy->res = res;
phy->ind = ind;
phy->one_by_ind = (1.0f / ind);
phy->one_by_p = (1.0f / poles);
}
/****************************************************************************
* Name: pmsm_phy_params_init
*
* Description:
* Initialize PMSM physical parameters
*
* Input Parameters:
* phy - (in/out) pointer to the PMSM physical parameters
* poles - (in) number of the motor pole pairs
* res - (in) average phase-to-neutral base motor resistance
* (without temperature compensation)
* ind - (in) average phase-to-neutral motor inductance
* iner - (in) rotor inertia (J)
* flux - (in) flux linkage
* ind_d - (in) d-inductance
* ind_q - (in) q-inductance
*
* Returned Value:
* None
*
****************************************************************************/
void pmsm_phy_params_init(FAR struct pmsm_phy_params_f32_s *phy,
uint8_t poles, float res, float ind,
float iner, float flux,
float ind_d, float ind_q)
{
LIBDSP_DEBUGASSERT(phy != NULL);
/* Initialize motor phy */
motor_phy_params_init(&phy->motor, poles, res, ind, flux);
/* Iniitalize PMSM specific data */
phy->iner = iner;
phy->ind_d = ind_d;
phy->ind_q = ind_q;
phy->one_by_iner = (1.0f / iner);
phy->one_by_indd = (1.0f / ind_d);
phy->one_by_indq = (1.0f / ind_q);
}