How to Calculate Battery Range for EV Cycle with Matlab

 How to calculate Battery Range for EV Cycle with Hub motor by using Matlab.


E-cycle Battery Range Calculation
E-cycle


Di = 12;
Dm = Di * 0.0254;
Nm = 350;
rps = Nm/60;
Dist_Travel_one_rev = pi*Dm;
Dist_Travel_one_Sec = Dist_Travel_one_rev*rps;
Speed_in_Kmh = Dist_Travel_one_Sec*(3600/1000);
Bt_Ah =74.4;
Ic_I = 20;
Battery_range = (Bt_Ah/Ic_I);
fprintf("%2f of hour range",Battery_range);
Range_in_one_Hour = Battery_range*Speed_in_Kmh;

fprintf ('%4.2f Ah Need to achieve %2f Km',Bt_Ah, Range_in_one_Hour) 



You Can run this code with your value.

Post a Comment

0 Comments