Skip to content

Commit

Permalink
Merge pull request #936 from MG-EV-Hackers/MGZSEV2
Browse files Browse the repository at this point in the history
Fix MK2 battery capacity
  • Loading branch information
dexterbg committed Sep 20, 2023
2 parents 9f3da54 + 97378f6 commit ceceac6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions vehicle/OVMS.V3/components/vehicle_mgev/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ You can follow these steps to see which variant may be suitable for your car:
MG ZS EV (2022-) Variants
-------------------------

Currently only the Long Range (72.6kWh) variant is supported as testers only seem to have this model.
The Short Range (51.1kWh) variant can easily be supported if BMS scans can be done.
Currently only the Short Range (51.1kWh) variant is supported as testers only seem to have this model.
The Long Range (72.6kWh) variant can easily be supported if BMS scans can be done.

------------------------
MG5 (2020-2023) Variants
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,6 @@ OvmsVehicleMg5Init::OvmsVehicleMg5Init()
{
ESP_LOGI(TAG, "Registering Vehicle: MG5 (9000)");

MyVehicleFactory.RegisterVehicle<OvmsVehicleMg5>("MG5", "MG 5 (2020-2023)");
MyVehicleFactory.RegisterVehicle<OvmsVehicleMg5>("MG5", "MG 5 (LR) (2020-2023)");
}

Original file line number Diff line number Diff line change
Expand Up @@ -327,5 +327,5 @@ OvmsVehicleMgEvDInit::OvmsVehicleMgEvDInit()
{
ESP_LOGI(TAG, "Registering Vehicle: MG ZS EV (2023-)");

MyVehicleFactory.RegisterVehicle<OvmsVehicleMgEvD>("MGD", "MG ZS EV (2023-)");
MyVehicleFactory.RegisterVehicle<OvmsVehicleMgEvD>("MGD", "MG ZS EV (SR) (2023-)");
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
#include "vehicle_mgev.h"

#define WLTP_RANGE 320.0 //km
#define BATT_CAPACITY 68.3 //kWh
#define MAX_CHARGE_RATE 94 //kW
#define BATT_CAPACITY 49.0 //kWh
#define MAX_CHARGE_RATE 75 //kW
#define BMSDoDUpperLimit 1000.0
#define BMSDoDLowerLimit 36.0

Expand Down

0 comments on commit ceceac6

Please sign in to comment.