-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,35 @@ | ||
# STM32 variable frequency drive controller | ||
|
||
This project aims to be an open source sensorless VFD. Don't get your hopes up yet, as it currently does nothing. Maybe check back later. | ||
This project aims to be an open source torque controller for AC induction motors. | ||
|
||
## Hardware | ||
|
||
This software runs on an STM32. In addition, the following hardware is required: | ||
|
||
* 6 x IGBT or MOSFET | ||
* 6 x Isolated FET drivers | ||
* 3 x Hall effect current sensors | ||
* Rotary encoder | ||
* A large film capacitor | ||
|
||
An example schematic can be found here: https://nutty.tk/inverter3.pdf | ||
|
||
## Overview | ||
|
||
The software generates a 3-phase output using PWM. The frequency and voltage | ||
are adjusted to create a torque proportional to the "throttle" input. | ||
|
||
## Algorithm | ||
|
||
The algorighm is very simple and is based on setting the slip of the motor. | ||
The output frequency is the shaft frequency plus a slip, where the slip is | ||
proportional to the throttle input. The current is controlled to keep it | ||
proportional to the slip (up to the input voltage). | ||
|
||
## Testing | ||
|
||
So far this has only been tested up to 1A @ 48VDC on a 250W motor. It is my | ||
hope that this should scale to larger builds for electric vehicle use. More | ||
experimentation will follow. | ||
|
||
My low power test build: https://imgur.com/a/IR173Ng |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters