UVW 3 phases Brushless DC motor control

Dependencies:   QEI mbed-rtos mbed

Fork of BLDCmotor by manabu kosaka

Committer:
kosaka
Date:
Thu Nov 29 09:25:56 2012 +0000
Revision:
11:9747752435d1
Parent:
10:0984c90b820b
Child:
12:a4b17bb682eb
debug

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kosaka 1:b91aeb5673f3 1 // DC motor control program using H-bridge driver (ex. TA7291P) and 360 resolution rotary encoder with A, B phase.
kosaka 11:9747752435d1 2 // ver. 121129a by Kosaka lab.
kosaka 0:fe068497f773 3 #include "mbed.h"
kosaka 0:fe068497f773 4 #include "rtos.h"
kosaka 0:fe068497f773 5 #include "QEI.h"
kosaka 0:fe068497f773 6 #define PI 3.14159265358979 // def. of PI
kosaka 0:fe068497f773 7 /*********** User setting for control parameters (begin) ***************/
kosaka 4:6ccbf4d3cb6d 8 //#define SIMULATION // Comment this line if not simulation
kosaka 3:b6b9b8c7dce6 9 #define USE_PWM // H bridge PWM mode: Vref=Vcc, FIN,2 = PWM or 0. Comment if use Vref=analog mode
kosaka 8:b8b31e9b60c2 10 #define PWM_FREQ 10000.0 //[Hz], pwm freq. available if USE_PWM is defined.
kosaka 8:b8b31e9b60c2 11 #define USE_CURRENT_CONTROL // Current control on. Comment if current control off.
kosaka 8:b8b31e9b60c2 12 #define CONTROL_MODE 0 // 0:PID control, 1:Frequency response, 2:Step response, 3. u=Rand to identify G(s), 4) FFT identification
kosaka 10:0984c90b820b 13 #define DEADZONE_PLUS 1. // deadzone of plus side
kosaka 10:0984c90b820b 14 #define DEADZONE_MINUS -1.5 // deadzone of minus side
kosaka 0:fe068497f773 15 #define GOOD_DATA // Comment this line if the length of data TMAX/TS2 > 1000
kosaka 6:16bee943a9fa 16 //#define R_SIN // Comment this line if r=step, not r = sin
kosaka 0:fe068497f773 17 float _freq_u = 0.3; // [Hz], freq. of Frequency response, or Step response
kosaka 1:b91aeb5673f3 18 float _rmax=100./180.*PI; // [rad], max. of reference signal
kosaka 8:b8b31e9b60c2 19 float _Kp4th=20; // P gain for PID from motor volt. to angle.
kosaka 8:b8b31e9b60c2 20 float _Ki4th=20; // I gain for PID from motor volt. to angle.
kosaka 8:b8b31e9b60c2 21 float _Kd4th=5; // D gain for PID from motor volt. to angle.
kosaka 8:b8b31e9b60c2 22 float _Kp4i=10.0; // P gain for PID from motor volt. to motor current.
kosaka 8:b8b31e9b60c2 23 float _Ki4i=10.0; // I gain for PID from motor volt. to motor current.
kosaka 8:b8b31e9b60c2 24 float _Kd4i=0.0; // D gain for PID from motor volt. to motor current.
kosaka 10:0984c90b820b 25 #define iTS 0.0001 // [s], iTS, sampling time[s] of motor current i control PID using timer interrupt
kosaka 10:0984c90b820b 26 #define thTS 0.001 // [s], thTS>=0.001[s], sampling time[s] of motor angle th PID using rtos-timer
kosaka 8:b8b31e9b60c2 27 #define TS2 0.01 // [s], TS2>=0.001[s], sampling time[s] to save data to PC using thread. But, max data length is 1000.
kosaka 0:fe068497f773 28 #define TMAX 10 // [s], experiment starts from 0[s] to TMAX[s]
kosaka 0:fe068497f773 29 #define UMAX 3.3 // [V], max of control input u
kosaka 0:fe068497f773 30 #define UMIN -3.3 // [V], max of control input u
kosaka 8:b8b31e9b60c2 31 #define IMAX 0.5 // [A], max of motor current i
kosaka 8:b8b31e9b60c2 32 #define IMIN -0.5 // [A], max of motor current i
kosaka 3:b6b9b8c7dce6 33 #define DEADTIME 0.0001 // [s], deadtime to be set between plus volt. to/from minus
kosaka 3:b6b9b8c7dce6 34 // H bridge port setting
kosaka 3:b6b9b8c7dce6 35 #define FIN_PORT p21 // FIN (IN1) port of mbed
kosaka 3:b6b9b8c7dce6 36 #define RIN_PORT p22 // RIN (IN2) port of mbed
kosaka 3:b6b9b8c7dce6 37 #define VREF_PORT p18 // Vref port of mbed (available if USE_PWM is not defined)
kosaka 0:fe068497f773 38 DigitalOut debug_p17(p17); // p17 for debug
kosaka 8:b8b31e9b60c2 39 AnalogIn v_shunt_r(p19); // *3.3 [V], Volt of shunt R_SHUNT[Ohm]. The motor current i = v_shunt_r/R_SHUNT [A]
kosaka 8:b8b31e9b60c2 40 #define R_SHUNT 1.25 // [Ohm], shunt resistanse
kosaka 8:b8b31e9b60c2 41 //AnalogIn VCC(p19); // *3.3 [V], Volt of VCC for motor
kosaka 8:b8b31e9b60c2 42 //AnalogIn VCC2(p20); // *3.3 [V], Volt of (VCC-R i), R=2.5[Ohm]. R is for preventing too much i when deadtime is failed.
kosaka 0:fe068497f773 43
kosaka 5:2e53814aae4c 44 #define N_ENC (24*4) // "*4": QEI::X4_ENCODING. Number of pulses in one revolution(=360 deg) of rotary encoder.
kosaka 0:fe068497f773 45 QEI encoder (p29, p30, NC, N_ENC, QEI::X4_ENCODING);
kosaka 0:fe068497f773 46 // QEI(PinName channelA, mbed pin for channel A input.
kosaka 0:fe068497f773 47 // PinName channelB, mbed pin for channel B input.
kosaka 0:fe068497f773 48 // PinName index, mbed pin for channel Z input. (index channel input Z phase th=0), (pass NC if not needed).
kosaka 0:fe068497f773 49 // int pulsesPerRev, Number of pulses in one revolution(=360 deg).
kosaka 0:fe068497f773 50 // Encoding encoding = X2_ENCODING, X2 is default. X2 uses interrupts on the rising and falling edges of only channel A where as
kosaka 0:fe068497f773 51 // X4 uses them on both channels.
kosaka 0:fe068497f773 52 // )
kosaka 0:fe068497f773 53 // void reset (void)
kosaka 0:fe068497f773 54 // Reset the encoder.
kosaka 0:fe068497f773 55 // int getCurrentState (void)
kosaka 0:fe068497f773 56 // Read the state of the encoder.
kosaka 0:fe068497f773 57 // int getPulses (void)
kosaka 0:fe068497f773 58 // Read the number of pulses recorded by the encoder.
kosaka 0:fe068497f773 59 // int getRevolutions (void)
kosaka 0:fe068497f773 60 // Read the number of revolutions recorded by the encoder on the index channel.
kosaka 0:fe068497f773 61 /*********** User setting for control parameters (end) ***************/
kosaka 0:fe068497f773 62
kosaka 0:fe068497f773 63
kosaka 0:fe068497f773 64 Serial pc(USBTX, USBRX); // Display on tera term in PC
kosaka 0:fe068497f773 65 LocalFileSystem local("local"); // save data to mbed USB disk drive in PC
kosaka 0:fe068497f773 66 //Semaphore semaphore1(1); // wait and release to protect memories and so on
kosaka 0:fe068497f773 67 //Mutex stdio_mutex; // wait and release to protect memories and so on
kosaka 8:b8b31e9b60c2 68 Ticker controller_ticker; // Timer interrupt using TIMER3, TS<0.001 is OK. Priority is higher than rtosTimer.
kosaka 0:fe068497f773 69
kosaka 3:b6b9b8c7dce6 70 #ifdef USE_PWM // H bridge PWM mode: Vref=Vcc, FIN,2 = PWM or 0.
kosaka 3:b6b9b8c7dce6 71 PwmOut FIN(FIN_PORT); // PWM for FIN, RIN=0 when forward rotation. H bridge driver PWM mode
kosaka 3:b6b9b8c7dce6 72 PwmOut RIN(RIN_PORT); // PWM for RIN, FIN=0 when reverse rotation. H bridge driver PWM mode
kosaka 3:b6b9b8c7dce6 73 #else // H bridge Vref=analog mode
kosaka 3:b6b9b8c7dce6 74 DigitalOut FIN(FIN_PORT);// FIN for DC motor H bridge driver. FIN=1, RIN=0 then forward rotation
kosaka 3:b6b9b8c7dce6 75 DigitalOut RIN(RIN_PORT);// RIN for DC motor H bridge driver. FIN=0, RIN=1 then reverse rotation
kosaka 3:b6b9b8c7dce6 76 #endif
kosaka 4:6ccbf4d3cb6d 77 AnalogOut analog_out(VREF_PORT);// Vref for DC motor H bridge driver. DA converter for control input [0.0-1.0]% in the output range of 0.0 to 3.3[V]
kosaka 4:6ccbf4d3cb6d 78
kosaka 0:fe068497f773 79 unsigned long _count; // sampling number
kosaka 0:fe068497f773 80 float _time; // time[s]
kosaka 1:b91aeb5673f3 81 float _r; // reference signal
kosaka 8:b8b31e9b60c2 82 float _th=0; // [rad], motor angle, control output of angle controller
kosaka 8:b8b31e9b60c2 83 float _i=0; // [A], motor current, control output of current controller
kosaka 0:fe068497f773 84 float _e=0; // e=r-y for PID controller
kosaka 0:fe068497f773 85 float _eI=0; // integral of e for PID controller
kosaka 8:b8b31e9b60c2 86 float _iref; // reference current iref [A], output of angle th_contorller
kosaka 8:b8b31e9b60c2 87 float _u; // control input[V], motor input volt.
kosaka 8:b8b31e9b60c2 88 float _ei=0; // e=r-y for current PID controller
kosaka 8:b8b31e9b60c2 89 float _eiI=0; // integral of e for current PID controller
kosaka 0:fe068497f773 90 unsigned char _f_u_plus=1;// sign(u)
kosaka 0:fe068497f773 91 unsigned char _f_umax=0;// flag showing u is max or not
kosaka 8:b8b31e9b60c2 92 unsigned char _f_imax=0;// flag showing i is max or not
kosaka 0:fe068497f773 93 float debug[10]; // for debug
kosaka 0:fe068497f773 94 float disp[10]; // for printf to avoid interrupted by quicker process
kosaka 0:fe068497f773 95 #ifdef GOOD_DATA
kosaka 0:fe068497f773 96 float data[1000][5]; // memory to save data offline instead of "online fprintf".
kosaka 0:fe068497f773 97 unsigned int count3; //
kosaka 8:b8b31e9b60c2 98 unsigned int count2=(int)(TS2/iTS); //
kosaka 0:fe068497f773 99 #endif
kosaka 0:fe068497f773 100
kosaka 7:613febb8f028 101 extern "C" void mbed_reset();
kosaka 3:b6b9b8c7dce6 102
kosaka 3:b6b9b8c7dce6 103 void u2Hbridge(float u){// input u to H bridge driver
kosaka 3:b6b9b8c7dce6 104 float duty;
kosaka 3:b6b9b8c7dce6 105 unsigned int f_deadtime, f_in, r_in;
kosaka 0:fe068497f773 106
kosaka 0:fe068497f773 107 if( u > 0 ){ // forward: rotate to plus
kosaka 10:0984c90b820b 108 u += DEADZONE_PLUS; // deadzone compensation
kosaka 3:b6b9b8c7dce6 109 duty = u/3.3; // Vref
kosaka 8:b8b31e9b60c2 110 if(_f_u_plus==0){ // if plus to/from minus, set FIN=RIN=0/1 for deadtime 100[us].
kosaka 3:b6b9b8c7dce6 111 f_deadtime = 1; // deadtime is required
kosaka 3:b6b9b8c7dce6 112 _f_u_plus=1;
kosaka 3:b6b9b8c7dce6 113 }else{
kosaka 3:b6b9b8c7dce6 114 f_deadtime = 0; // deadtime is required
kosaka 3:b6b9b8c7dce6 115 }
kosaka 3:b6b9b8c7dce6 116 f_in=1; r_in=0; // set forward direction
kosaka 0:fe068497f773 117 }else if( u < 0 ){ // reverse: rotate to minus
kosaka 10:0984c90b820b 118 u += DEADZONE_MINUS;// deadzone compensation
kosaka 3:b6b9b8c7dce6 119 duty = -u/3.3;
kosaka 8:b8b31e9b60c2 120 if(_f_u_plus==1){ // if plus to/from minus, set FIN=RIN=0/1 for deadtime 100[us].
kosaka 3:b6b9b8c7dce6 121 f_deadtime = 1; // deadtime is required
kosaka 3:b6b9b8c7dce6 122 _f_u_plus=0;
kosaka 3:b6b9b8c7dce6 123 }else{
kosaka 3:b6b9b8c7dce6 124 f_deadtime = 0; // deadtime is required
kosaka 3:b6b9b8c7dce6 125 }
kosaka 3:b6b9b8c7dce6 126 f_in=0; r_in=1; // set reverse direction
kosaka 0:fe068497f773 127 }else{// if( u == 0 ){ // stop mode
kosaka 3:b6b9b8c7dce6 128 duty = 0;
kosaka 3:b6b9b8c7dce6 129 f_deadtime = 0; // deadtime is required
kosaka 3:b6b9b8c7dce6 130 f_in=0; r_in=0; // set FIN & RIN
kosaka 0:fe068497f773 131 }
kosaka 3:b6b9b8c7dce6 132
kosaka 3:b6b9b8c7dce6 133 if( f_deadtime==1 ){// making deadtime
kosaka 3:b6b9b8c7dce6 134 FIN=0; RIN=0; // set upper&lower arm zero
kosaka 3:b6b9b8c7dce6 135 wait(DEADTIME);
kosaka 3:b6b9b8c7dce6 136 }
kosaka 3:b6b9b8c7dce6 137 #ifdef USE_PWM // H bridge PWM mode: Vref=Vcc, FIN,2 = PWM or 0
kosaka 3:b6b9b8c7dce6 138 FIN = duty*(float)f_in; RIN = duty*(float)r_in; // setting pwm FIN & RIN
kosaka 4:6ccbf4d3cb6d 139 analog_out = 1; // setting Vref=UMAX, but Vref=Vcc is better.
kosaka 3:b6b9b8c7dce6 140 #else // Analog mode: Vref=analog, FIN, RIN = 1 or 0)
kosaka 3:b6b9b8c7dce6 141 FIN = f_in; RIN = r_in; // setting FIN & RIN
kosaka 3:b6b9b8c7dce6 142 analog_out = duty; // setting Vref : PID write DA, range is 0-1. Output voltage 0-3.3v
kosaka 3:b6b9b8c7dce6 143 #endif
kosaka 0:fe068497f773 144 }
kosaka 0:fe068497f773 145
kosaka 8:b8b31e9b60c2 146 void th_controller(void const *argument) { // if rtos. current controller & velocity controller
kosaka 0:fe068497f773 147 float e_old, wt;
kosaka 8:b8b31e9b60c2 148 float y, u;
kosaka 0:fe068497f773 149
kosaka 10:0984c90b820b 150 // y_old = _th; // y_old=y(t-TS) is older than y by 1 sampling time TS[s]. update data
kosaka 0:fe068497f773 151 #ifdef SIMULATION
kosaka 10:0984c90b820b 152 y = _th + thTS/0.1*(0.2*_iref*100-_th); //=(1-TS/0.1)*_y + 0.2*TS/0.1*_iref; // G = 0.2/(0.1s+1)
kosaka 0:fe068497f773 153 #else
kosaka 0:fe068497f773 154 // semaphore1.wait(); //
kosaka 0:fe068497f773 155 y = (float)encoder.getPulses()/(float)N_ENC*2.0*PI; // get angle [rad] from encoder
kosaka 0:fe068497f773 156 // semaphore1.release(); //
kosaka 0:fe068497f773 157 #endif
kosaka 8:b8b31e9b60c2 158 #define RMIN 0
kosaka 0:fe068497f773 159 wt = _freq_u *2.0*PI*_time;
kosaka 10:0984c90b820b 160 if(wt>2.0*PI){ wt -= 2.0*PI*(float)((int)(wt/(2.0*PI)));}
kosaka 1:b91aeb5673f3 161 _r = sin(wt ) * (_rmax-RMIN)/2.0 + (_rmax+RMIN)/2.0;
kosaka 10:0984c90b820b 162 //debug[0] =1;
kosaka 1:b91aeb5673f3 163 #ifndef R_SIN
kosaka 1:b91aeb5673f3 164 if( _r>=(_rmax+RMIN)/2.0 ) _r = _rmax;
kosaka 1:b91aeb5673f3 165 else _r = 0;
kosaka 0:fe068497f773 166 #endif
kosaka 10:0984c90b820b 167 e_old = _e; // e_old=e(t-TS) is older than e by 1 sampling time TS[s]. update data
kosaka 0:fe068497f773 168 _e = _r - y; // error e(t)
kosaka 10:0984c90b820b 169 if( _e<((360.0/N_ENC)/180*PI) && _e>-((360.0/N_ENC)/180*PI) ){ // e is inside minimum precision?
kosaka 10:0984c90b820b 170 _e = 0;
kosaka 10:0984c90b820b 171 }
kosaka 8:b8b31e9b60c2 172 if( _f_imax==0 ){ // u is saturated?
kosaka 10:0984c90b820b 173 // if( _e>((360.0/N_ENC)/180*PI) || _e<-((360.0/N_ENC)/180*PI) ){ // e is inside minimum precision?
kosaka 8:b8b31e9b60c2 174 _eI = _eI + thTS*_e; // integral of e(t)
kosaka 10:0984c90b820b 175 // }
kosaka 0:fe068497f773 176 }
kosaka 10:0984c90b820b 177 u = _Kp4th*_e + _Kd4th*(_e-e_old)/thTS + _Ki4th*_eI; // PID output u(t)
kosaka 0:fe068497f773 178
kosaka 6:16bee943a9fa 179 #if CONTROL_MODE==1||CONTROL_MODE==2 // frequency response, or Step response
kosaka 0:fe068497f773 180 wt = _freq_u *2.0*PI*_time;
kosaka 0:fe068497f773 181 if(wt>2*PI) wt -= 2*PI*(float)((int)(wt/2.0*PI));
kosaka 0:fe068497f773 182 u = sin(wt ) * (UMAX-UMIN)/2.0 + (UMAX+UMIN)/2.0;
kosaka 0:fe068497f773 183 #endif
kosaka 0:fe068497f773 184 #if CONTROL_MODE==2 // Step response
kosaka 0:fe068497f773 185 if( u>=0 ) u = UMAX;
kosaka 0:fe068497f773 186 else u = UMIN;
kosaka 0:fe068497f773 187 #endif
kosaka 6:16bee943a9fa 188 #if CONTROL_MODE==3 // u=rand() to identify motor transfer function G(s) from V to angle
kosaka 8:b8b31e9b60c2 189 if(count2==(int)(TS2/iTS)){
kosaka 6:16bee943a9fa 190 u = ((float)rand()/RAND_MAX*2.0-1.0) * (UMAX-1.5)/2.0 + (UMAX+1.5)/2.0;
kosaka 6:16bee943a9fa 191 }else{
kosaka 8:b8b31e9b60c2 192 u = _iref;
kosaka 6:16bee943a9fa 193 }
kosaka 6:16bee943a9fa 194 #endif
kosaka 7:613febb8f028 195 #if CONTROL_MODE==4 // FFT identification, u=repetive signal
kosaka 10:0984c90b820b 196 if(count2==(int)(TS2/thTS)){
kosaka 7:613febb8f028 197 u = data[count3][4];
kosaka 7:613febb8f028 198 }else{
kosaka 8:b8b31e9b60c2 199 u = _iref;
kosaka 7:613febb8f028 200 }
kosaka 7:613febb8f028 201 #endif
kosaka 8:b8b31e9b60c2 202 // u is saturated? for anti-windup
kosaka 8:b8b31e9b60c2 203 if( u>IMAX ){
kosaka 8:b8b31e9b60c2 204 _eI -= (u-IMAX)/_Ki4th; if(_eI<0){ _eI=0;}
kosaka 8:b8b31e9b60c2 205 u = IMAX;
kosaka 8:b8b31e9b60c2 206 // _f_imax = 1;
kosaka 8:b8b31e9b60c2 207 } else if( u<IMIN ){
kosaka 8:b8b31e9b60c2 208 _eI -= (u-IMIN)/_Ki4th; if(_eI>0){ _eI=0;}
kosaka 8:b8b31e9b60c2 209 u = IMIN;
kosaka 8:b8b31e9b60c2 210 // _f_imax = 1;
kosaka 8:b8b31e9b60c2 211 }else{
kosaka 8:b8b31e9b60c2 212 _f_imax = 0;
kosaka 8:b8b31e9b60c2 213 }
kosaka 8:b8b31e9b60c2 214 //-------- update data
kosaka 8:b8b31e9b60c2 215 _th = y;
kosaka 8:b8b31e9b60c2 216 _iref = u;
kosaka 8:b8b31e9b60c2 217 }
kosaka 8:b8b31e9b60c2 218 void i_controller() { // if ticker. current controller & velocity controller
kosaka 8:b8b31e9b60c2 219 void u2Hbridge(float); // input u to H bridge (full bridge) driver
kosaka 8:b8b31e9b60c2 220 #ifdef USE_CURRENT_CONTROL
kosaka 8:b8b31e9b60c2 221 float e_old;
kosaka 8:b8b31e9b60c2 222 float y, u;
kosaka 8:b8b31e9b60c2 223
kosaka 8:b8b31e9b60c2 224 // _iref=_r*180/PI; // step response from v to i, useful to tune PID gains.
kosaka 8:b8b31e9b60c2 225 debug_p17 = 1; // for debug: processing time check
kosaka 8:b8b31e9b60c2 226 // if(debug_p17 == 1) debug_p17=0;else debug_p17=1; // for debug: sampling time check
kosaka 8:b8b31e9b60c2 227
kosaka 8:b8b31e9b60c2 228 _count+=1;
kosaka 8:b8b31e9b60c2 229 // current PID controller
kosaka 8:b8b31e9b60c2 230 y = v_shunt_r/R_SHUNT; // get i [A] from shunt resistance
kosaka 8:b8b31e9b60c2 231 if(_f_u_plus==0){ y=-y;}
kosaka 8:b8b31e9b60c2 232
kosaka 10:0984c90b820b 233 e_old = _ei; // e_old=e(t-TS) is older than e by 1 sampling time TS[s]. update data
kosaka 8:b8b31e9b60c2 234 _ei = _iref - y; // error e(t)
kosaka 8:b8b31e9b60c2 235 if( _f_umax==0 ){
kosaka 8:b8b31e9b60c2 236 _eiI = _eiI + iTS*_ei; // integral of e(t)
kosaka 8:b8b31e9b60c2 237 }
kosaka 8:b8b31e9b60c2 238 u = _Kp4i*_e + _Kd4i*(_ei-e_old)/iTS + _Ki4i*_eiI; // PID output u(t)
kosaka 8:b8b31e9b60c2 239
kosaka 8:b8b31e9b60c2 240 // u is saturated? for anti-windup
kosaka 8:b8b31e9b60c2 241 if( u>UMAX ){
kosaka 8:b8b31e9b60c2 242 _eiI -= (u-UMAX)/_Ki4i; if(_eiI<0){ _eiI=0;}
kosaka 8:b8b31e9b60c2 243 u = UMAX;
kosaka 8:b8b31e9b60c2 244 // _f_umax = 1;
kosaka 8:b8b31e9b60c2 245 } else if( u<UMIN ){
kosaka 8:b8b31e9b60c2 246 _eiI -= (u-UMIN)/_Ki4i; if(_eiI>0){ _eiI=0;}
kosaka 8:b8b31e9b60c2 247 u = UMIN;
kosaka 8:b8b31e9b60c2 248 // _f_umax = 1;
kosaka 8:b8b31e9b60c2 249 }else{
kosaka 8:b8b31e9b60c2 250 _f_umax = 0;
kosaka 8:b8b31e9b60c2 251 }
kosaka 8:b8b31e9b60c2 252 //-------- update data
kosaka 8:b8b31e9b60c2 253 _i = y;
kosaka 8:b8b31e9b60c2 254 _u = u;
kosaka 8:b8b31e9b60c2 255 #else
kosaka 11:9747752435d1 256 _u = _iref/IMAX*VMAX; // without current control.
kosaka 8:b8b31e9b60c2 257 #endif
kosaka 8:b8b31e9b60c2 258
kosaka 8:b8b31e9b60c2 259 u2Hbridge(_u); // input u to TA7291 driver
kosaka 0:fe068497f773 260
kosaka 0:fe068497f773 261 //-------- update data
kosaka 8:b8b31e9b60c2 262 _time += iTS; // time
kosaka 8:b8b31e9b60c2 263 debug[0]=v_shunt_r; if(_f_u_plus==0){ debug[0]=-debug[0];}
kosaka 0:fe068497f773 264 #ifdef GOOD_DATA
kosaka 8:b8b31e9b60c2 265 if(count2==(int)(TS2/iTS)){
kosaka 8:b8b31e9b60c2 266 // j=0; if(_count>=j&&_count<j+1000){i=_count-j; data[i][0]=_r; data[i][1]=debug[0]; data[i][2]=_th; data[i][3]=_time; data[i][4]=_u;}
kosaka 2:e056793d6fc5 267 if( count3<1000 ){
kosaka 8:b8b31e9b60c2 268 data[count3][0]=_r; data[count3][1]=debug[0]; data[count3][2]=_th; data[count3][3]=_time; data[count3][4]=_u;
kosaka 8:b8b31e9b60c2 269 // data[count3][0]=_iref; data[count3][1]=debug[0]; data[count3][2]=_i; data[count3][3]=_time; data[count3][4]=_u;
kosaka 2:e056793d6fc5 270 count3++;
kosaka 2:e056793d6fc5 271 }
kosaka 0:fe068497f773 272 count2 = 0;
kosaka 0:fe068497f773 273 }
kosaka 0:fe068497f773 274 count2++;
kosaka 0:fe068497f773 275 #endif
kosaka 0:fe068497f773 276 //-------- update data
kosaka 0:fe068497f773 277
kosaka 0:fe068497f773 278 debug_p17 = 0; // for debug: processing time check
kosaka 0:fe068497f773 279 }
kosaka 0:fe068497f773 280
kosaka 0:fe068497f773 281 void main1() {
kosaka 8:b8b31e9b60c2 282 RtosTimer timer_controller(th_controller);
kosaka 0:fe068497f773 283 FILE *fp; // save data to PC
kosaka 0:fe068497f773 284 #ifdef GOOD_DATA
kosaka 0:fe068497f773 285 int i;
kosaka 0:fe068497f773 286
kosaka 0:fe068497f773 287 count3=0;
kosaka 0:fe068497f773 288 #endif
kosaka 3:b6b9b8c7dce6 289 u2Hbridge(0); // initialize H bridge to stop mode
kosaka 0:fe068497f773 290 _count=0;
kosaka 0:fe068497f773 291 _time = 0; // time
kosaka 8:b8b31e9b60c2 292 _eI = _eiI = 0; // reset integrater
kosaka 1:b91aeb5673f3 293 encoder.reset(); // set encoder counter zero
kosaka 8:b8b31e9b60c2 294 _th = (float)encoder.getPulses()/(float)N_ENC*2.0*PI; // get angle [rad] from encoder
kosaka 8:b8b31e9b60c2 295 _r = _r + _th;
kosaka 1:b91aeb5673f3 296 // if( _r>2*PI ) _r -= _r-2*PI;
kosaka 0:fe068497f773 297
kosaka 0:fe068497f773 298 pc.printf("Control start!!\r\n");
kosaka 0:fe068497f773 299 if ( NULL == (fp = fopen( "/local/data.csv", "w" )) ){ error( "" );} // save data to PC
kosaka 3:b6b9b8c7dce6 300 #ifdef USE_PWM
kosaka 3:b6b9b8c7dce6 301 FIN.period( 1.0 / PWM_FREQ ); // PWM period [s]. Common to all PWM
kosaka 3:b6b9b8c7dce6 302 #endif
kosaka 8:b8b31e9b60c2 303 controller_ticker.attach(&i_controller, iTS ); // Sampling period[s] of i_controller
kosaka 10:0984c90b820b 304 timer_controller.start((unsigned int)(thTS*1000.)); // Sampling period[ms] of th controller
kosaka 0:fe068497f773 305
kosaka 8:b8b31e9b60c2 306 // for ( i = 0; i < (unsigned int)(TMAX/iTS2); i++ ) {
kosaka 0:fe068497f773 307 while ( _time <= TMAX ) {
kosaka 0:fe068497f773 308 // BUG!! Dangerous if TS2<0.1 because multi interrupt by fprintf is not prohibited! 1st aug of fprintf will be destroyed.
kosaka 0:fe068497f773 309 // fprintf returns before process completed.
kosaka 0:fe068497f773 310 //BUG fprintf( fp, "%8.2f, %8.4f,\t%8.1f,\t%8.2f\r\n", disp[3], disp[1], disp[0], tmp); // save data to PC (para, y, time, u)
kosaka 0:fe068497f773 311 //OK? fprintf( fp, "%f, %f, %f, %f, %f\r\n", _time, debug[0], debug[3], (_y/(2*PI)*360.0),_u); // save data to PC (para, y, time, u)
kosaka 0:fe068497f773 312 #ifndef GOOD_DATA
kosaka 10:0984c90b820b 313 fprintf( fp, "%f, %f, %f, %f, %f\r\n", _r, debug[0], _th, _time, _u); // save data to PC (para, y, time, u)
kosaka 0:fe068497f773 314 #endif
kosaka 0:fe068497f773 315 Thread::wait((unsigned int)(TS2*1000.)); //[ms]
kosaka 0:fe068497f773 316 }
kosaka 8:b8b31e9b60c2 317 controller_ticker.detach(); // timer interrupt stop
kosaka 0:fe068497f773 318 timer_controller.stop(); // rtos timer stop
kosaka 3:b6b9b8c7dce6 319 u2Hbridge(0); // initialize H bridge to stop mode
kosaka 8:b8b31e9b60c2 320 _eI = _eiI = 0; // reset integrater
kosaka 0:fe068497f773 321 #ifdef GOOD_DATA
kosaka 0:fe068497f773 322 for(i=0;i<1000;i++){ fprintf( fp, "%f, %f, %f, %f, %f\r\n", data[i][0],data[i][1],data[i][2],data[i][3],data[i][4]);} // save data to PC (para, y, time, u)
kosaka 0:fe068497f773 323 #endif
kosaka 0:fe068497f773 324 fclose( fp ); // release mbed USB drive
kosaka 0:fe068497f773 325 pc.printf("Control completed!!\r\n\r\n");
kosaka 0:fe068497f773 326 }
kosaka 0:fe068497f773 327
kosaka 0:fe068497f773 328 void thread_print2PC(void const *argument) {
kosaka 0:fe068497f773 329 while (true) {
kosaka 10:0984c90b820b 330 pc.printf("%8.1f[s]\t%8.5f[V]\t%4d [deg]\t%8.2f\r\n", _time, _u, (int)(_th/(2*PI)*360.0), _r);//debug[0]*3.3/R_SHUNT); // print to tera term
kosaka 0:fe068497f773 331 Thread::wait(200);
kosaka 0:fe068497f773 332 }
kosaka 0:fe068497f773 333 }
kosaka 0:fe068497f773 334
kosaka 0:fe068497f773 335 void main2(void const *argument) {
kosaka 0:fe068497f773 336 #if CONTROL_MODE==0 // PID control
kosaka 0:fe068497f773 337 char f;
kosaka 0:fe068497f773 338 float val;
kosaka 0:fe068497f773 339 #endif
kosaka 7:613febb8f028 340 #if CONTROL_MODE==4 // FFT identification, u=repetive signal
kosaka 7:613febb8f028 341 int i, j;
kosaka 7:613febb8f028 342 float max_u;
kosaka 7:613febb8f028 343 #endif
kosaka 7:613febb8f028 344
kosaka 0:fe068497f773 345 while(true){
kosaka 7:613febb8f028 346 #if CONTROL_MODE==4 // FFT identification, u=repetive signal
kosaka 7:613febb8f028 347 max_u = 0;
kosaka 7:613febb8f028 348 for( i=0;i<1000;i++ ){ // u=data[i][4]: memory for FFT identification input signal.
kosaka 7:613febb8f028 349 data[i][4] = sin(_freq_u*2*PI * i*TS2); // _u_freq = 10/2 * i [Hz]
kosaka 7:613febb8f028 350 if( data[i][4]>max_u ){ max_u=data[i][4];}
kosaka 7:613febb8f028 351 }
kosaka 7:613febb8f028 352 for( j=1;j<50;j++ ){
kosaka 7:613febb8f028 353 for( i=0;i<1000;i++ ){
kosaka 7:613febb8f028 354 data[i][4] += sin((float)(j+1)*_freq_u*2*PI * i*TS2);
kosaka 7:613febb8f028 355 if( data[i][4]>max_u ){ max_u=data[i][4];}
kosaka 7:613febb8f028 356 }
kosaka 7:613febb8f028 357 }
kosaka 7:613febb8f028 358 for( i=0;i<1000;i++ ){
kosaka 7:613febb8f028 359 // data[i][4] *= UMAX/max_u;
kosaka 7:613febb8f028 360 data[i][4] = (data[i][4]/max_u+3)/4*UMAX;
kosaka 7:613febb8f028 361 }
kosaka 7:613febb8f028 362 #endif
kosaka 0:fe068497f773 363 main1();
kosaka 0:fe068497f773 364
kosaka 0:fe068497f773 365 #if CONTROL_MODE>=1 // frequency response, or Step response
kosaka 7:613febb8f028 366 pc.printf("Input u(t) Frequency[Hz]? (if 9, reset mbed)...");
kosaka 0:fe068497f773 367 pc.scanf("%f",&_freq_u);
kosaka 0:fe068497f773 368 pc.printf("%8.3f[Hz]\r\n", _freq_u); // print to tera term
kosaka 7:613febb8f028 369 if(_freq_u==9){ mbed_reset();}
kosaka 0:fe068497f773 370 #else // PID control
kosaka 1:b91aeb5673f3 371 // #ifdef R_SIN
kosaka 1:b91aeb5673f3 372 // pc.printf("Reference signal r(t) Frequency[Hz]?...");
kosaka 1:b91aeb5673f3 373 // pc.scanf("%f",&_freq_u);
kosaka 1:b91aeb5673f3 374 // pc.printf("%8.3f[Hz]\r\n", _freq_u); // print to tera term
kosaka 1:b91aeb5673f3 375 // #endif
kosaka 8:b8b31e9b60c2 376 pc.printf("th-loop: Kp=%f, Ki=%f, Kd=%f, r=%f[deg], %f Hz\r\n",_Kp4th, _Ki4th, _Kd4th, _rmax*180./PI, _freq_u);
kosaka 8:b8b31e9b60c2 377 pc.printf(" i-loop: Kp=%f, Ki=%f, Kd=%f\r\n",_Kp4i, _Ki4i, _Kd4i);
kosaka 8:b8b31e9b60c2 378 pc.printf("Which number do you like to change?\r\n ... 0)no change, 1)Kp, 2)Ki, 3)Kd, 4)r(t) freq.[Hz], 5)r(t) amp.[deg].\r\n 6)iKp, 7)iKi, 8)iKd, 9)reset mbed ?");
kosaka 0:fe068497f773 379 f=pc.getc()-48; //int = char-48
kosaka 0:fe068497f773 380 pc.printf("\r\n Value?... ");
kosaka 10:0984c90b820b 381 if(f>=1&&f<=8){ pc.scanf("%f",&val);}
kosaka 0:fe068497f773 382 pc.printf("%8.3f\r\n", val); // print to tera term
kosaka 8:b8b31e9b60c2 383 if(f==1){ _Kp4th = val;}
kosaka 8:b8b31e9b60c2 384 if(f==2){ _Ki4th = val;}
kosaka 8:b8b31e9b60c2 385 if(f==3){ _Kd4th = val;}
kosaka 1:b91aeb5673f3 386 if(f==4){ _freq_u = val;}
kosaka 1:b91aeb5673f3 387 if(f==5){ _rmax = val/180.*PI;}
kosaka 8:b8b31e9b60c2 388 if(f==6){ _Kp4i = val;}
kosaka 8:b8b31e9b60c2 389 if(f==7){ _Ki4i = val;}
kosaka 8:b8b31e9b60c2 390 if(f==8){ _Kd4i = val;}
kosaka 7:613febb8f028 391 if(f==9){ mbed_reset();}
kosaka 8:b8b31e9b60c2 392 pc.printf("th-loop: Kp=%f, Ki=%f, Kd=%f, r=%f[deg], %f Hz\r\n",_Kp4th, _Ki4th, _Kd4th, _rmax*180./PI, _freq_u);
kosaka 8:b8b31e9b60c2 393 pc.printf(" i-loop: Kp=%f, Ki=%f, Kd=%f\r\n",_Kp4i, _Ki4i, _Kd4i);
kosaka 0:fe068497f773 394 #endif
kosaka 0:fe068497f773 395 }
kosaka 0:fe068497f773 396 }
kosaka 0:fe068497f773 397 int main() {
kosaka 0:fe068497f773 398 // void main1();
kosaka 0:fe068497f773 399 Thread save2PC(main2,NULL,osPriorityBelowNormal);
kosaka 0:fe068497f773 400 Thread print2PC(thread_print2PC,NULL,osPriorityLow);
kosaka 0:fe068497f773 401
kosaka 0:fe068497f773 402 // osStatus set_priority(osPriority osPriorityBelowNormal );
kosaka 0:fe068497f773 403 // Priority of Thread (RtosTimer has no priority?)
kosaka 0:fe068497f773 404 // osPriorityIdle = -3, ///< priority: idle (lowest)--> then, mbed ERROR!!
kosaka 0:fe068497f773 405 // osPriorityLow = -2, ///< priority: low
kosaka 0:fe068497f773 406 // osPriorityBelowNormal = -1, ///< priority: below normal
kosaka 0:fe068497f773 407 // osPriorityNormal = 0, ///< priority: normal (default)
kosaka 0:fe068497f773 408 // osPriorityAboveNormal = +1, ///< priority: above normal
kosaka 0:fe068497f773 409 // osPriorityHigh = +2, ///< priority: high
kosaka 0:fe068497f773 410 // osPriorityRealtime = +3, ///< priority: realtime (highest)
kosaka 0:fe068497f773 411 // osPriorityError = 0x84 ///< system cannot determine priority or thread has illegal priority
kosaka 0:fe068497f773 412 }