Class StepParam
Inheritance
System.Object
StepParam
Assembly: Mars.Core.dll
Syntax
public sealed class StepParam : object
Constructors
StepParam(Int64)
Declaration
public StepParam(long tick)
Parameters
Type |
Name |
Description |
System.Int64 |
tick |
|
StepParam(Int64, DateTime)
Declaration
public StepParam(long tick, DateTime currentTime)
Parameters
Type |
Name |
Description |
System.Int64 |
tick |
|
DateTime |
currentTime |
|
StepParam(Int64, Int64, Nullable<DateTime>)
Declaration
public StepParam(long tick, long step, DateTime? currentTime = null)
Parameters
Type |
Name |
Description |
System.Int64 |
tick |
|
System.Int64 |
step |
|
System.Nullable<DateTime> |
currentTime |
|
Properties
CurrentStep
The actual logical simulation step which will be executed
Declaration
public long CurrentStep { get; }
Property Value
Type |
Description |
System.Int64 |
|
CurrentTick
The actual consecutive system tick
Declaration
public long CurrentTick { get; }
Property Value
Type |
Description |
System.Int64 |
|
CurrentTimePoint
For realtime execution
the actual time point in the realtime
Declaration
public DateTime? CurrentTimePoint { get; }
Property Value
Type |
Description |
System.Nullable<DateTime> |
|
Parametrization
Specifies a re-/parametrization from outside
Declaration
public List<Parametrization> Parametrization { get; set; }
Property Value