Table of Contents

Interface ISimulatorClient<T, V>

Namespace
Cognite.Simulator.Utils
Assembly
Cognite.Simulator.Utils.dll

Interface to be implemented by simulator integration clients that can execute simulation configuration of the type V

public interface ISimulatorClient<T, V> where T : ModelStateBase where V : SimulatorRoutineRevision

Type Parameters

T

Type of the model state object

V

Type of the simulation configuration object

Methods

ExtractModelInformation(T, CancellationToken)

This method should open the model versions in the simulator, extract the required information and ingest it to CDF.

Task ExtractModelInformation(T state, CancellationToken _token)

Parameters

state T

Model file states

_token CancellationToken

Cancellation token

Returns

Task

GetConnectorVersion(CancellationToken)

Returns the connector version. This is reported periodically to CDF

string GetConnectorVersion(CancellationToken _token)

Parameters

_token CancellationToken

Returns

string

Connector version

GetSimulatorVersion(CancellationToken)

Returns the version of the given simulator. The connector reads the version and report it back to CDF

string GetSimulatorVersion(CancellationToken _token)

Parameters

_token CancellationToken

Returns

string

Version

RunSimulation(T, V, Dictionary<string, SimulatorValueItem>, CancellationToken)

Run a simulation by executing the routine passed as parameter with the given input data

Task<Dictionary<string, SimulatorValueItem>> RunSimulation(T modelState, V simulationConfiguration, Dictionary<string, SimulatorValueItem> inputData, CancellationToken token)

Parameters

modelState T

Model state object

simulationConfiguration V

Simulation configuration object

inputData Dictionary<string, SimulatorValueItem>

Input data

token CancellationToken

Cancellation token

Returns

Task<Dictionary<string, SimulatorValueItem>>

TestConnection(CancellationToken)

Tests the connection to the simulator.

Task TestConnection(CancellationToken token)

Parameters

token CancellationToken

Cancellation token

Returns

Task

A task representing the asynchronous operation