Table of Contents

Class PowerSourceUnsteadyErrorModel

Namespace
NominalSystems.Classes
Assembly
NominalSystems.Classes.dll

[Nominal] The 'Unsteady' model for the 'PowerSource' component that will flicker the model to be valid and invalid.


[UniverseParent(typeof(PowerSource))]
public class PowerSourceUnsteadyErrorModel : UniverseModel
Inheritance
PowerSourceUnsteadyErrorModel

Constructors

PowerSourceUnsteadyErrorModel()

Default constructor

protected PowerSourceUnsteadyErrorModel()

Fields

UnsteadyMean

The unsteady particular mean

[Unit(UnitType.SECOND)]
public double UnsteadyMean

Field Value

double

UnsteadyStd

The unsteady standard deviation

[Unit(UnitType.SECOND)]
public double UnsteadyStd

Field Value

double

Methods

OnBegin(double)

Called when the object is beginning ticking for the first time. This is when the simulation calls the very first tick and will run before the update call.

protected override void OnBegin(double time)

Parameters

time double

[s] Current time of the simulation before the tick

OnUpdate(double, double)

Called when the object should update from the simulation tick. This will take in a time and a step, where the time is the time of the clock before updating the object.

protected override void OnUpdate(double time, double step)

Parameters

time double

[s] Current time of the simulation before the update

step double

[s] The time-step to update during this tick