jagdeepsingh02 / IPMMotorSim

IPM Motor Simulator for use with OpenInverter FOC build of stm32-sine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IPMMotorSim

This project is an IPM Motor simulator intended to be uses with the Huebner inverter project, in particular the stm32-sine FOC firmware build.

Aims

The main aim of this project is to allow testing and development of the motor control sections of the inverter firmware in a safe reproducible environment.

The model is not intended to be perfect and is in the very early days of its development. Hopefully it's good enough to be useful now and will develop into something more sophisticated over time.

Compiling

Qt Creator is required to compile this code.

A version of the source code for the stm32-sine firmware must be placed in the stm32-sine subdirectory of this project. This will then be the used by the simulator to control the motor. The OpenInverter code is in a fairly constant state of flux so it is pot luck whether a particular build will work. Rel5.24 with the following mod at line 93 of pwmgeneration-foc.cpp is currently the best bet.

  /*if (frqFiltered < FP_FROMINT(30))
     qController.SetMinMaxY(dir <= 0 ? -qlimit : 0, dir > 0 ? qlimit : 0);
  else*/
     qController.SetMinMaxY(-qlimit, qlimit);

Current Limitations

The simulator uses a number of new parameters not yet found in most builds of stm32-sin. There is a replacement param_prj.h file in the project directory that will be used in place of the one in the subdirectory. It is up to the user to ensure that the parameters contained in this replacement file are appropriate for whichever versions of the stn32-sine software is being used.

There is NO field validation on the GUI control fields, if you enter invalid values you will either get invalid simulation results or a program crash.

Not all GUI fields are supported by all versions of stm32-sine.

The simulator only exercises the main motor control sections of the stm32-sine software. It does not fully simulate the lower level hardware peripherals of the processor (although it aims to accurately reflect their behaviour). Nor does it exercise the higher level vehicle/charger control functions.

The model does not simulate drivetrain shunt (although it could be added relatively easily, see comments on source code).

Please note, as is says in the licence - This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE

For more information on this project please refer to https://openinverter.org/forum/viewtopic.php?t=2611

About

IPM Motor Simulator for use with OpenInverter FOC build of stm32-sine

License:GNU General Public License v3.0


Languages

Language:C++ 77.0%Language:C 21.0%Language:QMake 2.0%