-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
# Changelog | ||
|
||
- Minor adjustment to Fitter; to find pure slip conditions, slip ratio/angle | ||
do not have to be *exactly* zero, but only close to it; this helped with | ||
resolving some measurements not being used in fitting | ||
- Added example measurement data (de-identified and obscured TTC data) | ||
- Updated FSAE TTC interactive example to use new data | ||
- Updated unit tests | ||
- Convenience changes: | ||
- New: Wrapper for `mftyre.v62.eval()` function. Can now call method `eval()` on `mftyre.v62.Model` objects. Example: | ||
|
||
```matlab | ||
model = mftyre.v62.Model(); | ||
model.importTyrePropertiesFile(file) | ||
[FX, FY] = model.eval(SA, SX, IA, IP, FZ, 0); | ||
``` | ||
|
||
- New: Can now instantiate `mftyre.v62.Model` directly with TIR file, without having to call `importTyrePropertiesFile()` method. Example: | ||
|
||
```matlab | ||
model = mftyre.v62.Model(file); | ||
[FX, FY] = model.eval(SA, SX, IA, IP, FZ, 0); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.