MODSERIAL PID controller edit

Dependencies:   HIDScope MODSERIAL QEI biquadFilter mbed

Fork of PID_controller_Motor by BioBitches TN

Committer:
MBroek
Date:
Tue Oct 18 09:58:54 2016 +0000
Revision:
11:91613b22bc00
Parent:
10:755b9228cc42
Child:
12:8aba69d8d0d0
Beide motoren werken, met werkende switch tussen de motoren

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MBroek 0:9e053ed05c69 1
MBroek 0:9e053ed05c69 2
MBroek 0:9e053ed05c69 3 // HET DEFINIEREN VAN ALLES ==========================================================================================
MBroek 0:9e053ed05c69 4
MBroek 0:9e053ed05c69 5 // Includen van alle libraries ---------------------------------------
MBroek 0:9e053ed05c69 6 #include "mbed.h"
MBroek 0:9e053ed05c69 7 #include "MODSERIAL.h"
MBroek 0:9e053ed05c69 8 #include "QEI.h"
MBroek 0:9e053ed05c69 9 #include "math.h"
MBroek 3:581c5918b590 10 #include "HIDScope.h"
MBroek 3:581c5918b590 11
MBroek 3:581c5918b590 12 // Definieren van de HIDscope ----------------------------------------
MBroek 7:435f984781ab 13 HIDScope scope(3);
MBroek 0:9e053ed05c69 14
MBroek 0:9e053ed05c69 15
MBroek 0:9e053ed05c69 16 // Definieren van de Serial en Encoder -------------------------------
MBroek 0:9e053ed05c69 17 MODSERIAL pc(USBTX, USBRX);
MBroek 0:9e053ed05c69 18 #define SERIALBAUD 115200
MBroek 0:9e053ed05c69 19
MBroek 0:9e053ed05c69 20 QEI encoder_motor1(D10,D11,NC,64);
MBroek 0:9e053ed05c69 21 QEI encoder_motor2(D12,D13,NC,64);
MBroek 0:9e053ed05c69 22
MBroek 0:9e053ed05c69 23
MBroek 0:9e053ed05c69 24 // Definieren van de Motorpins ---------------------------------------
MBroek 0:9e053ed05c69 25 DigitalOut motor1_direction_pin(D7);
MBroek 0:9e053ed05c69 26 PwmOut motor1_speed_pin(D6);
MBroek 0:9e053ed05c69 27
MBroek 0:9e053ed05c69 28 DigitalOut motor2_direction_pin(D4);
MBroek 0:9e053ed05c69 29 PwmOut motor2_speed_pin(D5);
MBroek 0:9e053ed05c69 30
MBroek 0:9e053ed05c69 31
MBroek 0:9e053ed05c69 32 //Definieren van bord-elementen --------------------------------------
MBroek 3:581c5918b590 33 InterruptIn kill_switch(D8);
MBroek 3:581c5918b590 34 InterruptIn test_button(D9);
MBroek 1:5b3fa8e47e8b 35 AnalogIn pot1(A1); // Dit is de gesimuleerde emg1
MBroek 1:5b3fa8e47e8b 36 AnalogIn pot2(A2); // Dit is de gesimuleerde emg2
MBroek 0:9e053ed05c69 37
MBroek 0:9e053ed05c69 38
MBroek 4:6524b198721f 39 //Definieren van de tickers ------------------------------------------
MBroek 4:6524b198721f 40 Ticker test_ticker;
MBroek 4:6524b198721f 41 Ticker hidscope_ticker;
MBroek 4:6524b198721f 42
MBroek 4:6524b198721f 43
MBroek 0:9e053ed05c69 44
MBroek 0:9e053ed05c69 45 // HET VASTSTELLEN VAN ALLE TE GEBRUIKEN VARIABELEN EN CONSTANTEN ======================================================
MBroek 4:6524b198721f 46
MBroek 0:9e053ed05c69 47 volatile bool safe = true; // Conditie voor de while-loop in main
MBroek 0:9e053ed05c69 48
MBroek 4:6524b198721f 49 double position_motor1;
MBroek 4:6524b198721f 50
MBroek 4:6524b198721f 51 int counts1; // Pulses van motoren
MBroek 4:6524b198721f 52 int counts2;
MBroek 0:9e053ed05c69 53
MBroek 0:9e053ed05c69 54 const double pi = 3.14159265358979323846264338327950288419716939937510; // pi
MBroek 4:6524b198721f 55 const double rad_per_count = pi/8400.0; // Aantal rad per puls uit encoder
MBroek 0:9e053ed05c69 56
MBroek 11:91613b22bc00 57 const double radius_tandwiel = 1.0;
MBroek 9:f735baee0c2b 58 const double meter_per_count = rad_per_count * radius_tandwiel; // Het aantal meter dat het karretje aflegt per puls, DIT IS NOG ONBEKEND!!!
MBroek 1:5b3fa8e47e8b 59
MBroek 4:6524b198721f 60 double error1_int = 0.00000; // Initiele error integral waardes
MBroek 4:6524b198721f 61 double error2_int = 0.00000;
MBroek 0:9e053ed05c69 62
MBroek 0:9e053ed05c69 63 const double T_getpos = 0.01; // Periode van de frequentie van het aanroepen van de positiechecker (get_position)
MBroek 0:9e053ed05c69 64
MBroek 4:6524b198721f 65 volatile bool flag1 = false, flag2 = false; // De flags voor de functies aangeroepen door de tickers
MBroek 4:6524b198721f 66
MBroek 6:e0857842e8cd 67 const double Kp_1 = 1.0000000; // De PID variablen voor motor 1
MBroek 8:919ddba2875e 68 const double Kd_1 = 0.1;
MBroek 8:919ddba2875e 69 const double Ki_1 = 0.3;
MBroek 4:6524b198721f 70
MBroek 9:f735baee0c2b 71 const double Kp_2 = 1.0000000; // De PID variablen voor motor 2
MBroek 9:f735baee0c2b 72 const double Kd_2 = 0.1;
MBroek 9:f735baee0c2b 73 const double Ki_2 = 0.3;
MBroek 5:c510ab61af28 74
MBroek 9:f735baee0c2b 75 const double vrijheid_m1_rad = 0.5*pi; // Dit is de uiterste postitie vd arm in radialen
MBroek 9:f735baee0c2b 76 const double vrijheid_m2_meter = 0.25; // Dit is de helft vd arm, dit is wat het karretje heen en weer kan bewegen
MBroek 5:c510ab61af28 77
MBroek 11:91613b22bc00 78 double starting_pos_m1 = 0.5*pi; // Startin posities van de motoren
MBroek 11:91613b22bc00 79 double starting_pos_m1 = 0;
MBroek 11:91613b22bc00 80
MBroek 9:f735baee0c2b 81 double reference_position_motor1 = 0.5*pi; // Dit zijn de eerste posities waar de motoren heen willen, deze moeten dezelfde zijn als de startpositie!
MBroek 10:755b9228cc42 82 double reference_position_motor2 = 0;
MBroek 9:f735baee0c2b 83
MBroek 9:f735baee0c2b 84 double PID_output_1 = 0; // De eerste PID_output, deze is nul anders gaan de motoren draaien
MBroek 9:f735baee0c2b 85 double PID_output_2 = 0;
MBroek 5:c510ab61af28 86
MBroek 10:755b9228cc42 87 double error_prev_1 = 0; // De initiele previous error
MBroek 10:755b9228cc42 88 double error_int_1 = 0; // De initiele intergral error
MBroek 10:755b9228cc42 89
MBroek 10:755b9228cc42 90 double error_prev_2 = 0;
MBroek 10:755b9228cc42 91 double error_int_2 = 0;
MBroek 5:c510ab61af28 92
MBroek 9:f735baee0c2b 93 bool which_motor = 0;
MBroek 9:f735baee0c2b 94
MBroek 0:9e053ed05c69 95
MBroek 0:9e053ed05c69 96
MBroek 0:9e053ed05c69 97
MBroek 0:9e053ed05c69 98
MBroek 0:9e053ed05c69 99 // ALLE FUNCTIES BUITEN DE MAIN-LOOP ====================================================================================
MBroek 0:9e053ed05c69 100
MBroek 0:9e053ed05c69 101 // De emergency break ------------------------------------------------
MBroek 0:9e053ed05c69 102 void emergency_stop(){
MBroek 0:9e053ed05c69 103 safe = false;
MBroek 0:9e053ed05c69 104 pc.printf("Emergency stop!!! Please reset your K64F board\r\n");
MBroek 0:9e053ed05c69 105 }
MBroek 0:9e053ed05c69 106
MBroek 1:5b3fa8e47e8b 107
MBroek 9:f735baee0c2b 108 // Functie voor het switchen tussen de motors ------------------------------
MBroek 9:f735baee0c2b 109 void motor_switch(){
MBroek 9:f735baee0c2b 110 which_motor = !which_motor; // =0 activeert motor1 en =1 activeert motor2
MBroek 9:f735baee0c2b 111 }
MBroek 9:f735baee0c2b 112
MBroek 9:f735baee0c2b 113
MBroek 1:5b3fa8e47e8b 114 // Functie voor het vinden van de positie van motor 1 ---------------------
MBroek 1:5b3fa8e47e8b 115 double get_position_m1(const double radpercount){ //returned de positie van de motor in radialen (positie vd arm in radialen)
MBroek 0:9e053ed05c69 116 counts1 = encoder_motor1.getPulses(); // Leest aantal pulses uit encoder af
MBroek 11:91613b22bc00 117 return radpercount * counts1 + starting_pos_m1; // rekent positie motor1 uit en geeft deze als output vd functie
MBroek 1:5b3fa8e47e8b 118 }
MBroek 1:5b3fa8e47e8b 119
MBroek 1:5b3fa8e47e8b 120
MBroek 1:5b3fa8e47e8b 121 // Functie voor vinden van de positie van motor 2 -----------------------------
MBroek 1:5b3fa8e47e8b 122 double get_position_m2(const double meterpercount){ // returned de positie van het karretje in meter
MBroek 1:5b3fa8e47e8b 123 counts2 = encoder_motor2.getPulses(); // leest aantal pulses vd encoder af
MBroek 11:91613b22bc00 124 return meterpercount * counts2 + starting_pos_m2; // rekent de positie van het karretje uit en geeft dit als output vd functie
MBroek 1:5b3fa8e47e8b 125 }
MBroek 1:5b3fa8e47e8b 126
MBroek 1:5b3fa8e47e8b 127
MBroek 5:c510ab61af28 128 // Functie voor het vinden van de reference position van motor 1 --------------------
MBroek 5:c510ab61af28 129 double get_reference_position_m1(const double aantal_rad){
MBroek 4:6524b198721f 130 double ref_pos = pot1.read() - pot2.read(); // De reference position als output (zit tussen -1 en 1, -1 is maximaal links en 1 is maximaal rechts)
MBroek 5:c510ab61af28 131 return ref_pos * aantal_rad; // Aantal rad is de uiterste positie vd arm in radialen
MBroek 5:c510ab61af28 132 }
MBroek 5:c510ab61af28 133
MBroek 5:c510ab61af28 134
MBroek 5:c510ab61af28 135 // Functie voor het vinden van de reference position van motor 2 --------------------
MBroek 5:c510ab61af28 136 double get_reference_position_m2(const double aantal_meter){
MBroek 5:c510ab61af28 137 double ref_pos = pot1.read() - pot2.read(); // De reference position als output (zit tussen -1 en 1, -1 is maximaal links en 1 is maximaal rechts)
MBroek 5:c510ab61af28 138 return ref_pos * aantal_meter; // Aantal meter is hoeveelheid radialen van middelpunt tot minima.
MBroek 1:5b3fa8e47e8b 139 }
MBroek 0:9e053ed05c69 140
MBroek 3:581c5918b590 141
MBroek 3:581c5918b590 142 // HIDScope functie ----------------------------------------------------------------------
MBroek 7:435f984781ab 143 void set_scope(double input1, double input2, double input3){
MBroek 7:435f984781ab 144 scope.set(0, input1);
MBroek 7:435f984781ab 145 scope.set(1, input2);
MBroek 7:435f984781ab 146 scope.set(2, input3);
MBroek 3:581c5918b590 147 scope.send();
MBroek 3:581c5918b590 148 }
MBroek 3:581c5918b590 149
MBroek 0:9e053ed05c69 150
MBroek 1:5b3fa8e47e8b 151 // De PID-controller voor de motors -------------------------------------------------
MBroek 6:e0857842e8cd 152 double PID_controller(double ref_pos, double mot_pos, double &e_prev, double &e_int, const double Kp, const double Kd, const double Ki){
MBroek 0:9e053ed05c69 153 double error = ref_pos - mot_pos; // error uitrekenen
MBroek 6:e0857842e8cd 154 double error_dif = (error-e_prev)/T_getpos; // De error differentieren
MBroek 1:5b3fa8e47e8b 155 //error_dif = ..... // Filter biquad poep
MBroek 6:e0857842e8cd 156 e_prev = error; // Hier wordt de error opgeslagen voor de volgende keer
MBroek 6:e0857842e8cd 157 e_int = e_int + T_getpos*error; // De error integreren
MBroek 6:e0857842e8cd 158 return Kp*error + Ki*e_int + Kd*error_dif; // De uiteindelijke PID output
MBroek 0:9e053ed05c69 159 }
MBroek 0:9e053ed05c69 160
MBroek 0:9e053ed05c69 161
MBroek 2:6bef5397e8a9 162 // Motor 1 besturen ---------------------------------------------------------------------
MBroek 2:6bef5397e8a9 163 void set_motor1(double motor_input){ // functie die de motor aanstuurt mt als input de PID-output
MBroek 2:6bef5397e8a9 164 if (motor_input >= 0){ // Dit checkt welke kant de motor op moet draaien
MBroek 2:6bef5397e8a9 165 motor1_direction_pin = 1; // Clockwise
MBroek 2:6bef5397e8a9 166 }
MBroek 2:6bef5397e8a9 167 else {
MBroek 2:6bef5397e8a9 168 motor1_direction_pin = 0; // CounterClockwise
MBroek 2:6bef5397e8a9 169 }
MBroek 2:6bef5397e8a9 170 if (fabs(motor_input)>1){ // Dit fixed de PwmOutput op maximaal 1
MBroek 2:6bef5397e8a9 171 motor_input = 1;
MBroek 2:6bef5397e8a9 172 }
MBroek 2:6bef5397e8a9 173 motor1_speed_pin = fabs(motor_input); // Dit geeft de uiteindelijke input door aan de motor
MBroek 2:6bef5397e8a9 174 }
MBroek 2:6bef5397e8a9 175
MBroek 2:6bef5397e8a9 176
MBroek 2:6bef5397e8a9 177 // Motor 2 besturen ---------------------------------------------------------------------
MBroek 2:6bef5397e8a9 178 void set_motor2(double motor_input){ // functie die de motor aanstuurt mt als input de PID-output
MBroek 2:6bef5397e8a9 179 if (motor_input >= 0){ // Dit checkt welke kant de motor op moet draaien
MBroek 2:6bef5397e8a9 180 motor2_direction_pin = 1; // Clockwise
MBroek 2:6bef5397e8a9 181 }
MBroek 2:6bef5397e8a9 182 else {
MBroek 2:6bef5397e8a9 183 motor2_direction_pin = 0; // CounterClockwise
MBroek 2:6bef5397e8a9 184 }
MBroek 2:6bef5397e8a9 185 if (fabs(motor_input)>1){ // Dit fixed de PwmOutput op maximaal 1
MBroek 2:6bef5397e8a9 186 motor_input = 1;
MBroek 2:6bef5397e8a9 187 }
MBroek 2:6bef5397e8a9 188 motor2_speed_pin = fabs(motor_input); // Dit geeft de uiteindelijke input door aan de motor
MBroek 2:6bef5397e8a9 189 }
MBroek 2:6bef5397e8a9 190
MBroek 0:9e053ed05c69 191
MBroek 4:6524b198721f 192 // De go-flag functies -----------------------------------------------------------------
MBroek 4:6524b198721f 193 void flag1_activate(){flag1=true;} // Activeert de flag
MBroek 4:6524b198721f 194 void flag2_activate(){flag2=true;}
MBroek 4:6524b198721f 195
MBroek 4:6524b198721f 196
MBroek 0:9e053ed05c69 197
MBroek 0:9e053ed05c69 198 // DE MAIN =================================================================================================================
MBroek 0:9e053ed05c69 199 int main()
MBroek 0:9e053ed05c69 200 {
MBroek 0:9e053ed05c69 201 pc.baud(SERIALBAUD);
MBroek 0:9e053ed05c69 202 pc.printf("Starting");
MBroek 0:9e053ed05c69 203
MBroek 4:6524b198721f 204 //test_button.fall(&); // Activeert test button
MBroek 0:9e053ed05c69 205 kill_switch.fall(&emergency_stop); // Activeert kill switch
MBroek 9:f735baee0c2b 206 test_button.fall(&motor_switch); // Switcht motoren
MBroek 0:9e053ed05c69 207
MBroek 4:6524b198721f 208 test_ticker.attach(&flag1_activate,0.1); // Activeert de go-flag van motor positie
MBroek 4:6524b198721f 209 hidscope_ticker.attach(&flag2_activate,0.01);
MBroek 4:6524b198721f 210
MBroek 0:9e053ed05c69 211 while(safe){ // Draait loop zolang alles veilig is.
MBroek 4:6524b198721f 212 if (flag1){
MBroek 4:6524b198721f 213 flag1 = false;
MBroek 9:f735baee0c2b 214 if (!which_motor){ // als which_motor=0 gaat motor 1 lopen
MBroek 11:91613b22bc00 215 PID_output_1 = PID_controller(get_reference_position_m1(vrijheid_m1_rad), get_position_m1(rad_per_count), error_prev_1, error_int_1, Kp_1, Kd_1, Ki_1);
MBroek 9:f735baee0c2b 216 set_motor1(PID_output_1);
MBroek 9:f735baee0c2b 217 }
MBroek 9:f735baee0c2b 218 else{
MBroek 11:91613b22bc00 219 PID_output_2 = PID_controller(get_reference_position_m2(vrijheid_m2_meter), get_position_m2(meter_per_count), error_prev_2, error_int_2, Kp_2, Kd_2, Ki_2);
MBroek 9:f735baee0c2b 220 set_motor2(PID_output_2);
MBroek 9:f735baee0c2b 221 }
MBroek 4:6524b198721f 222 }
MBroek 4:6524b198721f 223 if (flag2){
MBroek 4:6524b198721f 224 flag2 = false;
MBroek 11:91613b22bc00 225 set_scope(PID_output_2, get_reference_position_m2(vrijheid_m2_meter), get_position_m2(meter_per_count));
MBroek 4:6524b198721f 226 }
MBroek 0:9e053ed05c69 227 }
MBroek 0:9e053ed05c69 228
MBroek 0:9e053ed05c69 229 motor1_speed_pin = 0; //Dit zet de motoren uit nadat de kill switch is gebruikt
MBroek 0:9e053ed05c69 230 motor2_speed_pin = 0;
MBroek 0:9e053ed05c69 231 }
MBroek 0:9e053ed05c69 232
MBroek 0:9e053ed05c69 233
MBroek 0:9e053ed05c69 234
MBroek 0:9e053ed05c69 235
MBroek 0:9e053ed05c69 236
MBroek 0:9e053ed05c69 237
MBroek 0:9e053ed05c69 238
MBroek 0:9e053ed05c69 239
MBroek 0:9e053ed05c69 240
MBroek 0:9e053ed05c69 241
MBroek 0:9e053ed05c69 242
MBroek 0:9e053ed05c69 243
MBroek 0:9e053ed05c69 244
MBroek 0:9e053ed05c69 245
MBroek 0:9e053ed05c69 246
MBroek 0:9e053ed05c69 247
MBroek 0:9e053ed05c69 248
MBroek 0:9e053ed05c69 249
MBroek 0:9e053ed05c69 250
MBroek 0:9e053ed05c69 251
MBroek 0:9e053ed05c69 252
MBroek 0:9e053ed05c69 253
MBroek 0:9e053ed05c69 254
MBroek 0:9e053ed05c69 255
MBroek 0:9e053ed05c69 256
MBroek 0:9e053ed05c69 257
MBroek 0:9e053ed05c69 258
MBroek 0:9e053ed05c69 259
MBroek 0:9e053ed05c69 260
MBroek 0:9e053ed05c69 261
MBroek 0:9e053ed05c69 262
MBroek 0:9e053ed05c69 263
MBroek 0:9e053ed05c69 264
MBroek 0:9e053ed05c69 265
MBroek 0:9e053ed05c69 266
MBroek 0:9e053ed05c69 267
MBroek 0:9e053ed05c69 268
MBroek 0:9e053ed05c69 269
MBroek 0:9e053ed05c69 270
MBroek 0:9e053ed05c69 271
MBroek 0:9e053ed05c69 272
MBroek 0:9e053ed05c69 273
MBroek 0:9e053ed05c69 274
MBroek 0:9e053ed05c69 275
MBroek 0:9e053ed05c69 276
MBroek 0:9e053ed05c69 277
MBroek 0:9e053ed05c69 278
MBroek 0:9e053ed05c69 279
MBroek 0:9e053ed05c69 280
MBroek 0:9e053ed05c69 281
MBroek 0:9e053ed05c69 282
MBroek 0:9e053ed05c69 283
MBroek 0:9e053ed05c69 284
MBroek 0:9e053ed05c69 285