Main Content

tireModel.new

R2026b

Class: tireModel

Create new tire model object

Since R2023b

Description

Add-On Required: This feature requires the Extended Tire Features for Vehicle Dynamics Blockset add-on.

obj = tireModel.new(modelType) creates a new tire model object of the type specified by modelType, with default values.

example

Input Arguments

expand all

Model type, specified as one of these values:

  • "MF62"

  • "MF"

  • "MF52"

  • "Dugoff"

  • "Fiala"

Note

Using the "MF" option is equivalent to specifying ModelType as "MF62".

Example: m = tireModel.new("Dugoff")

Data Types: string

Output Arguments

expand all

Tire model, returned as a tireModel object.

Examples

expand all

Create a tire model for a light passenger car with a 205/60R15 tire size using the Magic Formula 6.2 model type. The object contains all Magic Formula 6.2 parameters initialized to default values. You can modify these parameters directly using dot notation or the set method.

tm = tireModel.new("MF62")
tm = 
tireModel Type MF62
    Model Name: Magic Formula v6.2
    Plysteer: true
    Turnslip: true

    Tire Properties

                Manufacturer:  []
                    TireLine:  []
                TireCategory:  []
                ...

    Model Parameters

                         [MODEL]
                          FITTYP: 62
                        TYRESIDE: RIGHT
                          LONGVL: 16.7
                        ...

Version History

Introduced in R2023b

expand all