ResponseObserved

@Serializable
@SerialName(value = "ResponseObserved")
data class ResponseObserved(val simTime: Double, val responseName: String, val value: Double, val count: Double = Double.NaN, val average: Double = Double.NaN, val min: Double = Double.NaN, val max: Double = Double.NaN) : AnimationEvent(source)

A statistical quantity was observed. Drives live bar charts and time-series plots. Covers Response, TWResponse, and Counter (the renderer does not need to distinguish which). For responses, the current within-replication statistics (count/average/min/max) are carried so a renderer can show a live summary without recomputing (decision D11); they are NaN for counters and any source without within-replication statistics.

Constructors

Link copied to clipboard
constructor(simTime: Double, responseName: String, value: Double, count: Double = Double.NaN, average: Double = Double.NaN, min: Double = Double.NaN, max: Double = Double.NaN)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val max: Double
Link copied to clipboard
val min: Double
Link copied to clipboard
Link copied to clipboard
open override val simTime: Double
Link copied to clipboard