Main Content

tireModel.get

Class: tireModel

Import tire model parameter values from supported Simulink or Simscape tire blocks

Since R2024a

Syntax

obj = tireModel.get(path)

Description

This method requires Extended Tire Features for Vehicle Dynamics Blockset.

obj = tireModel.get(path) imports tire model parameter values from a supported Simulink® or Simscape™ tire block located at the path specified by path.

Input Arguments

expand all

Path to tire block, specified as a string array, character vector, or cell array of character vectors.

Supported Simscape Blocks

Data Types: char | string | cell

Output Arguments

expand all

Tire model, returned as a tireModel object or an array of tireModel objects.

Examples

expand all

Import tire model parameter values from the Dugoff Wheel 2DOF block to a tireModel object using the get method.

Load Model

Load the model containing the Dugoff Wheel 2DOF block.

load_system("get_simulink_block.slx");

Import Tire Model Parameter Values to tireModel Object

Import the default tire model parameter values from the Dugoff Wheel 2DOF block to a tireModel object.

tm = tireModel.get("get_simulink_block/Dugoff Wheel 2DOF");

Version History

Introduced in R2024a