bdeGetMaxStepSize

Takes model and returns the maximum step size.

Syntax

maxStep = bdeGetMaxStepSize(model)

Inputs

model
Model used to get the maximum step size from.
Type: diagram

Outputs

maxStep
The maximum step size of the model.
Type: string

Examples

Get the maximum step size:
model = bdeGetCurrentModel();
	  maxStep = bdeGetMaxStepSize(model)
maxStep = 5
Get the maximum step size (Doesn't exist):
model = bdeGetCurrentModel();
	  maxStep = bdeGetMaxStepSize(model)
maxStep = -1