Skip to content

Commit 846a451

Browse files
committed
Update supply.py
1 parent 91409ca commit 846a451

File tree

1 file changed

+2
-2
lines changed
  • src/python_vehicle_simulator/vehicles

1 file changed

+2
-2
lines changed

src/python_vehicle_simulator/vehicles/supply.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def __init__(
102102
# Initialize the supply vessel model
103103
m = 6000.0e3 # mass (kg)
104104
self.L = 76.2 # length (m)
105-
self.T_n = 1.0 # prop. rev. time constant (s)
105+
self.T_n = 1.0 # prop. speed time constant (s)
106106
self.n_max = np.array([250, 250, 250, 250,
107107
160, 160], float) # RPM saturation limits
108108
self.nu = np.array([0, 0, 0, 0, 0, 0], float) # initial velocity vector
@@ -154,7 +154,7 @@ def __init__(
154154
self.x_d = 0.0 # setpoints
155155
self.y_d = 0.0
156156
self.psi_d = 0.0
157-
self.wn = np.diag([0.1, 0.1, 0.1]) # PID pole placement
157+
self.wn = np.diag([0.1, 0.1, 0.2]) # PID pole placement
158158
self.zeta = np.diag([1.0, 1.0, 1.0])
159159

160160

0 commit comments

Comments
 (0)