vssSetSimParInitialStepSize

Set the simulation initial time step size.

Syntax

vssSetSimParInitialStepSize(sparams,tstep)

Inputs

sparams
Simulation parameters handle
Type: sparam
Dimension: -
tstep
Initial time step size
Type: double
Dimension: scalar

Example

Create evaluator, retrieve the respective simulation parameters handle and set the desired simulation parameter value.

modelpath = 'C:/Users/ActivateModel.scm' 
ff = vssCreateEvaluator(modelpath);
mdl = ff();
sparams = vssGetModelSimParams(mdl);
vssSetSimParInitialStepSize(sparams,0.1);