You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ The dynamics of the system can be found in the `dynamics.py` file. The model can
16
16
17
17
### Calibrate custom vessel
18
18
19
-
In order to calibrate a vessel that is not present in the `calibrated_vessels.py` file, you can define a minimal dict with basic information about the vessel and input it into the `get_coef_dict()` function. Several empirical formulas will then be used to estimate the relevant hydrodynamic derivatives for your vessel and return back a dict which can be used as an input to the `step()` function.
19
+
In order to calibrate a vessel that is not present in the `calibrated_vessels.py` file, you can define a minimal dict with basic information about the vessel and use `calibrate()` to make it usable in the `step()` function. Several empirical formulas will be used to estimate the relevant hydrodynamic derivatives for your vessel and return back a dict which can be used as an input to the `step()` function.
20
20
21
21
#### Form of the dict:
22
22
@@ -31,7 +31,7 @@ my_vessel = {
31
31
"t_P": 0.0, # Thrust deduction factor
32
32
"D_p": 0.0, # Propeller Diameter
33
33
"eta": 0.0, # Ratio of propeller diameter to rudder span
34
-
"f_alpha" :0.0# Rudder lift gradient coefficient
34
+
"f_alpha": 0.0# Rudder lift gradient coefficient
35
35
# (If not given you will be asked for the rudder aspect ratio)
0 commit comments