Open
Description
Currently the TireState object is used to pass information through the interface. This benefit of such an object is that it can be re-used easily between different types of tire models. The downside is that it may not be flexible enough for different objects, for example a thermal tire model may need additional information.
One option would be to have the TireState be of a dictionary/key:pair type object so the content would vary between different models. Another option would be to define a few different type of TireState objects, one for steady-state, one for transient and one for thermal for example?
Any thoughts on this?