vssSetSimParRtol

Set the simulation relative tolerance.

Syntax

vssSetSimParRtol(sparams,rtol)

Inputs

sparams
Simulation parameters handle
Type: sparam
Dimension: -
rtol
Relative tolerance value
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);
vssSetSimParRtol(sparams,0.005);