Skip to content

Commit

Permalink
fix brake
Browse files Browse the repository at this point in the history
  • Loading branch information
ufechner7 committed Jul 25, 2024
1 parent 99f79eb commit 7abcd90
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/torque_controlled_generator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ Model of a winch with an torqrue controlled generator and a gearbox.
"""
struct TorqueControlledMachine <: AbstractWinchModel
set::Settings
"minimal speed of the winch in m/s. If v_set is lower the brake is activated."
v_min = 0.2
"linear acceleration of the brake [m/s²]"
brake_acc = -25.0
"if the brake of the winch is activated"
brake::Bool = true;
end

# calculated the motor reactance X [Ohm]
Expand Down

0 comments on commit 7abcd90

Please sign in to comment.