Skip to content

Commit 02976c7

Browse files
committed
2 parents 66ad8c9 + 653f0a5 commit 02976c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The dynamics of the system can be found in the `dynamics.py` file. The model can
1616

1717
### Calibrate custom vessel
1818

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.
2020

2121
#### Form of the dict:
2222

@@ -31,7 +31,7 @@ my_vessel = {
3131
"t_P": 0.0, # Thrust deduction factor
3232
"D_p": 0.0, # Propeller Diameter
3333
"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
3535
# (If not given you will be asked for the rudder aspect ratio)
3636
}
3737
```

0 commit comments

Comments
 (0)