Class SimulationTimeSeries
- Namespace
- Cognite.Simulator.Extensions
- Assembly
- Cognite.Simulator.Extensions.dll
Represents a simulation variable associated with a simulation run. For instance, simulation sampled inputs and result outputs
public abstract class SimulationTimeSeries
- Inheritance
-
SimulationTimeSeries
- Derived
- Inherited Members
Properties
Metadata
Any other metadata related to this variable
public Dictionary<string, string> Metadata { get; set; }
Property Value
Name
Variable name
public string Name { get; set; }
Property Value
ReferenceId
Unique identifier in a given routine
public string ReferenceId { get; set; }
Property Value
RoutineRevisionInfo
Routine revision associated with this variable
public SimulatorRoutineRevisionInfo RoutineRevisionInfo { get; set; }
Property Value
SaveTimeseriesExternalId
Allows saving the time series value back to CDF with the one provided by the user
public string SaveTimeseriesExternalId { get; set; }
Property Value
Unit
Variable unit
public string Unit { get; set; }
Property Value
Methods
AddMetadata(string, string)
Add a (key, value) pair as metadata
public void AddMetadata(string key, string value)
Parameters
GetMetadata(string)
Get the metadata value associated with the given key, if any
public string GetMetadata(string key)
Parameters
key
stringKey
Returns
- string
Metadata value, if key exists. Else,
null