RequestData

constructor(modelIdentifier: String, numReplications: Int, inputs: Map<String, Double> = emptyMap(), responseNames: Set<String> = emptySet(), experimentRunParameters: ExperimentRunParameters? = null, modelConfiguration: Map<String, String>? = null, requestTime: Instant = Clock.System.now())

Parameters

modelIdentifier

the model identifier associated with the simulation model that will be executed

numReplications

the number of replications to run the model. Must be greater than 0. This value will override a specification for the number of replications supplied by any experimental run parameters.

inputs

The input variable and its value for parameterizing the run of the simulation. If empty, the current values for the inputs will be used for the simulation.

responseNames

the names of the response variables requested from the simulation results. If no response names are provided, then all responses from the simulation will be returned. The default is all responses from the model.

experimentRunParameters

an optional set of simulation run parameters for application to the model. If not supplied, then the model's current (default) settings will be used.

requestTime

the instant that the request was constructed