Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
CurrentRegulator/CurrentRegulator.cpp
- Committer:
- benkatz
- Date:
- 2016-04-13
- Revision:
- 8:10ae7bc88d6e
- Parent:
- 7:dc5f27756e02
- Child:
- 9:d7eb815cb057
File content as of revision 8:10ae7bc88d6e:
#include "Transforms.h"
#include "CurrentRegulator.h"
#include "Inverter.h"
#include "SVM.h"
#include "Transforms.h"
#include "PositionSensor.h"
using namespace Transforms;
CurrentRegulator::CurrentRegulator(Inverter *inverter, PositionSensor *position_sensor, float Kp, float Ki){
_Inverter = inverter;
PWM = new SPWM(inverter, 2.0);
_PositionSensor = position_sensor;
IQ_Ref = 0;
ID_Ref = 0;
V_Q = 0;
V_D = 0;
V_Alpha = 0;
V_Beta = 0;
V_A = 0;
V_B = 0;
V_C = 0;
I_Q = 0;
I_D = 0;
I_A = 0;
I_B = 0;
I_C = 0;
I_Alpha = 0;
I_Beta = 0;
count = 0;
_Kp = Kp;
_Ki = Ki;
Q_Integral = 0;
D_Integral = 0;
Int_Max = .9;
DTC_Max = .97;
//theta_elec = _PositionSensor->GetElecPosition();
pc = new Serial(PA_2, PA_3);
pc->baud(115200);
}
void CurrentRegulator::SendSPI(){
}
void CurrentRegulator::UpdateRef(float D, float Q){
IQ_Ref = Q;
ID_Ref = D;
}
void CurrentRegulator::SampleCurrent(){
_Inverter->GetCurrent(&I_A, &I_B, &I_C);
Clarke(I_A, I_B, &I_Alpha, &I_Beta);
Park(I_Alpha, I_Beta, theta_elec, &I_D, &I_Q);
//count += 1;
//if(count > 10000) {
// count=0;
// printf("I_A: %f I_C: %f I_C: %f\n\r", I_A, I_B, I_C);
//IQ_Ref = -IQ_Ref;
// }
//DAC->DHR12R1 = (int) (I_Q*490.648f) + 2048;
//DAC->DHR12R1 = (int) (I_Alpha*4096.0f) + 2048;
}
void CurrentRegulator::Update(){
float Q_Error = IQ_Ref - I_Q;
float D_Error = ID_Ref - I_D;
Q_Integral += Q_Error*_Ki*_Kp;
D_Integral += D_Error*_Ki*_Kp;
if (Q_Integral > Int_Max) Q_Integral = Int_Max;
else if(Q_Integral < -Int_Max) Q_Integral = -Int_Max;
if (D_Integral > Int_Max) D_Integral = Int_Max;
else if(D_Integral < -Int_Max) D_Integral = -Int_Max;
V_Q = Q_Integral + _Kp*Q_Error;
V_D = D_Integral + _Kp*D_Error;
//V_D = 0;
}
void CurrentRegulator::SetVoltage(){
InvPark(V_D, V_Q, theta_elec, &V_Alpha, &V_Beta);
InvClarke(V_Alpha, V_Beta, &V_A, &V_B, &V_C);
PWM->Update_DTC(V_A, V_B, V_C);
//PWM->Update_DTC(V_Alpha, V_Beta);
}
void CurrentRegulator::Commutate(){
count += 1;
GPIOC->ODR = (1 << 4); //Toggle pin for debugging
theta_elec = _PositionSensor->GetElecPosition();
_PositionSensor->GetMechPosition();
SampleCurrent(); //Grab most recent current sample
Update(); //Run control loop
SetVoltage(); //Set inverter duty cycles
GPIOC->ODR = (0 << 4); //Toggle pin for debugging
/*
if (count==1000){
pc->printf("%f\n\r", _PositionSensor->GetMechPosition());
count = 0;
}
*/
}