Files
-
Projet éco-shell / 5. PCB_Batteries / PCB_Batteries.kicad_pcb
-
Projet éco-shell / 5. PCB_Batteries / PCB_Batteries.kicad_sch
-
Projet éco-shell / 6. PCB_Driver / Controleur_moteur_Shell_Eco_Marathon.kicad_pcb
-
Projet éco-shell / 6. PCB_Driver / Controleur_moteur_Shell_Eco_Marathon.kicad_sch
-
Projet éco-shell / 6. PCB_Driver / fin.kicad_sch
-
Projet éco-shell / 6. PCB_Driver / Suite.kicad_sch
Last update 7 hours 7 min
by
Van der Cuylen Sacha
FilesProjet éco-shell3. Software_ShellDC_Controller_Shell_backup | |
---|---|
.. | |
Ecomet_All_ADC_PWM_OPAMP.X | |
mcc_generated_files | |
MyConfig.mc3 | |
lib_ecomet.c | |
lib_ecomet.h | |
main.c |
lib_ecomet.c/* * Projet Shell Eco-Marathon 2024 * * Ecole d'Ingnieurs de Pierrard-Virton * */ // Dfinition de variables globales #define FCY 8000000UL // dfini la fonction : __delay_ms() #define CYCLE_DELAY 10 // Nos librairies #include "mcc_generated_files/system.h" #include "mcc_generated_files/pwm.h" #include "mcc_generated_files/adc1.h" #include "mcc_generated_files/mccp5_capture.h" #include "lib_ecomet.h" // Autres librairies #include <libpic30.h> //Defines __delay32(); #include <math.h> // AN17 : potentiomtre --> acclrateur // AN12 : temprature --> temprature MOSFET Q2 // AN15 : VBUS --> tension batterie // AN0 : OA1out --> courant moteur // AN7 : OA2_out = Shunt_norm+ --> courant batterie int DC_Motor = 0x00; double Rshunt = 0.002; float VBUS = 0; float courantBatt = 0; float courantMoteur = 0; float tempMOS = 0; float tempPIC = 0; // Tension de rfrence float Ualim = 3.3; // Tous les ADCs sont en 12 bit void changeDC_Motor(){ // Change le DC du Buck de puissance via la lecture du potentiomtre ADC1_CHANNEL channel = channel_AN17; // lit la pin RC6 o est connect le potentiomtre int conversion = 0; int i=0; ADC1_Initialize(); ADC1_Enable(); ADC1_ChannelSelect(channel); ADC1_SoftwareTriggerEnable(); for(i=0;i <1000;i++) // laisse le temps au PIC de faire la mesure { } ADC1_SoftwareTriggerDisable(); //while(!ADC1_IsConversionComplete(channel)); conversion = ADC1_ConversionResultGet(channel) - 1050; // Corrige le dcallage // de tension du potentiomtre ADC1_Disable(); DC_Motor = abs(round((float)(conversion/4095.0)*150.0*Ualim/1.725)); PWM_DutyCycleSet(PWM_GENERATOR_1, DC_Motor); PG1STAT = 0b01000; } void changeDC_Motor_Error(int DC_Motor){ PWM_DutyCycleSet(PWM_GENERATOR_1, DC_Motor); PG1STAT = 0b01000; } void changeFreq_Motor(int freq_Motor){ // Change la frquence du Buck de puissance de manire manuelle PWM_PeriodSet(PWM_GENERATOR_1, freq_Motor); PG1STAT = 0b01000; } void changeDC_Buzzer(int DC_Buzzer){ // Change le DC du buzzer de manire manuelle PWM_DutyCycleSet(PWM_GENERATOR_3, DC_Buzzer); PG3STAT = 0b01000; } void changeFreq_Buzzer(int freq_Buzzer){ // Change la frquence de l'alimentation du buzzer de manire manuelle PWM_PeriodSet(PWM_GENERATOR_3, freq_Buzzer); PG3STAT = 0b01000; } float measureShunt_1(){ // Mesure le courant fourni par la batterie ADC1_CHANNEL channel = channel_AN7; int conversion = 0; int i=0; ADC1_Initialize(); ADC1_Enable(); ADC1_ChannelSelect(channel); ADC1_SoftwareTriggerEnable(); for(i=0;i <1000;i++) // laisse le temps au PIC de faire la mesure { } ADC1_SoftwareTriggerDisable(); while(!ADC1_IsConversionComplete(channel)); conversion = ADC1_ConversionResultGet(channel); ADC1_Disable(); courantBatt = (float)(conversion/4095*Ualim/Rshunt); return courantBatt; } float measureShunt_2(){ // Mesure le courant absorb par le moteur ADC1_CHANNEL channel = channel_AN0; int conversion = 0; int i=0; ADC1_Initialize(); ADC1_Enable(); ADC1_ChannelSelect(channel); ADC1_SoftwareTriggerEnable(); for(i=0;i <1000;i++) // laisse le temps au PIC de faire la mesure { } ADC1_SoftwareTriggerDisable(); while(!ADC1_IsConversionComplete(channel)); conversion = ADC1_ConversionResultGet(channel); ADC1_Disable(); courantMoteur = (float)(conversion*0.0275 + 0.0432); return courantMoteur; } float measureVBUS(){ // Mesure la tension de la batterie (les 3 4S en srie) ADC1_CHANNEL channel = channel_AN15; int conversion = 0; int i=0; ADC1_Initialize(); ADC1_Enable(); ADC1_ChannelSelect(channel); ADC1_SoftwareTriggerEnable(); for(i=0;i <1000;i++) // laisse le temps au PIC de faire la mesure { } ADC1_SoftwareTriggerDisable(); while(!ADC1_IsConversionComplete(channel)); conversion = ADC1_ConversionResultGet(channel); ADC1_Disable(); VBUS = (float)(conversion/4095.0*Ualim*16.0); return VBUS; } float measureTempMOSFET(){ // Mesure la temprature de la surface du MOSFET Q2 ADC1_CHANNEL channel = channel_AN12; int conversion = 0; int i=0; double Uout = 0; double Rth = 0; int R2 = 3300; // Rsitance du pont diviseur de la mesure de temprature ADC1_Initialize(); ADC1_Enable(); ADC1_ChannelSelect(channel); ADC1_SoftwareTriggerEnable(); for(i=0;i <1000;i++) // laisse le temps au PIC de faire la mesure { } ADC1_SoftwareTriggerDisable(); while(!ADC1_IsConversionComplete(channel)); conversion = ADC1_ConversionResultGet(channel); ADC1_Disable(); Uout = (float)(conversion/4095.0*Ualim); Rth = R2*Uout/(Ualim - Uout); tempMOS = 82.313*pow(Rth/10000.0,-0.235) - 56.0; // Utilisation de la fonction de rgression // permettant de calculer la temprature return tempMOS; } float measureTempPIC(){ // Mesure la temprature du dsPIC33CK32MP105 ADC1_CHANNEL channel = channel_AN19; int conversion = 0; int i=0; ADC1_Initialize(); ADC1_Enable(); ADC1_ChannelSelect(channel); ADC1_SoftwareTriggerEnable(); for(i=0;i <1000;i++) // laisse le temps au PIC de faire la mesure { } ADC1_SoftwareTriggerDisable(); while(!ADC1_IsConversionComplete(channel)); conversion = ADC1_ConversionResultGet(channel); ADC1_Disable(); tempPIC = (float)(conversion/4095*Ualim); return tempPIC; } void init_Ecomet(){ // Initialise les diffrents composants (PWM, ADC, ...) SYSTEM_Initialize(); // LEDs TRISCbits.TRISC7 = 0; LATCbits.LATC7 = 0; TRISCbits.TRISC12 = 0; LATCbits.LATC12 = 0; TRISDbits.TRISD1 = 0; LATDbits.LATD1 = 0; TRISDbits.TRISD8 = 0; LATDbits.LATD8 = 0; TRISDbits.TRISD13 = 1; int freq_Buzzer = 0x4E1; // f = 3,2 kHz int DC_Buzzer = 0x00; // DC = 0 % changeDC_Buzzer(DC_Buzzer); changeFreq_Buzzer(freq_Buzzer); int freq_Motor = 0xC7; // f = 20 kHz DC_Motor = 0x00; // DC = 0 % changeFreq_Motor(freq_Motor); /* C'est bizrare de faire comme a, mais c'est le seul moyen que j'ai trouv pour avoir un dead time au dbut et la fin (et pas juste un seul) */ PWM_DeadTimeHighSet(PWM_GENERATOR_1, 1); // Dead time H : 250 ns PWM_DeadTimeLowSet(PWM_GENERATOR_1, 1); PWM_DeadTimeLowSet(PWM_GENERATOR_1, 1); // Dead time L : 250 ns PWM_DeadTimeHighSet(PWM_GENERATOR_1, 1); PG1STAT = 0b01000; // Met jour les registres du PWM }