Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMakhnovskiy committed Mar 30, 2024
1 parent 54ef2b9 commit 1179a34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This Python console application is designed for calculating the primary characteristics of brushed DC motors.
This Python console application (main.py) is designed for calculating the primary characteristics of brushed DC motors.
The generated report in the PDF file provides instructions on how to navigate through datasheets and extract parameters essential for modeling the motor.

Features:
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
alfa = (maxTmag -Tf) / J # Maximum angular acceleration (no load), rad/s^2
print('Maximum speed = ', format(maxw, ".3e"), ' rad/s' )
print('Maximum torque = ', format(maxTmag, ".3e"), ' Nm')
print('Maximum efficiency h = ', format(maxh * 100, ".3e"), '%')
print('Maximum efficiency = ', format(maxh * 100, ".3e"), '%')
print('Maximum mechanical power = ', format(maxPL, ".3e"), ' W')
print('No-load armature current = ', format(I0, ".3e"), ' A')
print('Torque-to-current coefficient = ', format(TIa, ".3e"), ' A/(Nm)')
Expand Down

0 comments on commit 1179a34

Please sign in to comment.