Skip to content

Commit

Permalink
publish release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
teasit committed May 31, 2022
1 parent 2fe04d6 commit 4223d3b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
Binary file modified +tests/BasicTests.mlx
Binary file not shown.
21 changes: 18 additions & 3 deletions CHANGELOG.md
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);
```
2 changes: 1 addition & 1 deletion MFTyreLibraryToolboxPackager.prj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<param.summary>Create and evaluate Magic Formula tyre models suitable for code generation in MATLAB.</param.summary>
<param.description />
<param.screenshot>${PROJECT_ROOT}\doc\images\MFTyreLibrary_PackageImage.png</param.screenshot>
<param.version>1.0.5</param.version>
<param.version>1.1.0</param.version>
<param.output>${PROJECT_ROOT}\MFTyreLibrary.mltbx</param.output>
<param.products.name />
<param.products.id />
Expand Down
Binary file modified doc/examples/Example_MFTyreLibrary_Fitter_FSAETTC.mlx
Binary file not shown.

0 comments on commit 4223d3b

Please sign in to comment.