Changes for page Simulation (KiSim)
Last modified by Richard Kreissig on 2023/09/14 11:07
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -4,6 +4,8 @@ 4 4 5 5 {{toc/}} 6 6 7 +---- 8 + 7 7 == Overview == 8 8 9 9 After a model has been created, it is reasonable to test if the model does what is expected. This can be achieved by simulating the model. The simulation must ... ... @@ -12,13 +12,23 @@ 12 12 * Execute a tick 13 13 * Send generated outputs 14 14 15 -Thus the simulation can be seen as a black box, which receives a state for the model, somehow computes a reaction, and communicates its new state to the outside. The communication for receiving and sending the state of the model is done using JSON.Forexample, inKIELER asimulation can be started by startinganexecutable file.The JSON communication isthendone on stdin and stdout of the running process.17 +Thus the simulation can be seen as a black box, which receives a state for the model, somehow computes a reaction, and communicates its new state to the outside. In KIELER the communication for receiving and sending the state of the model is done using JSON. When starting the executable file of a simulation in KIELER, the JSON communication is done on stdin and stdout of the running process. 16 16 17 17 Within KIELER a single state of a simulation is represented as a //Data Pool//. A data pool can have multiple models. Each model can have multiple variables. Thus a representation of a complete run of a simulation can be implemented as list of data pools. 18 18 21 +Executables for simulation are created using the incremental project builder that is part of the project management. The typical steps to create an executable for simulation are: 22 + 23 +* Compiling a model using the KIELER compiler 24 +* Generating the simulation wrapper code for the model using template processing 25 +* Compiling the resulting code using, e.g., gcc. 26 + 27 +For more insight of the simulation generation, please take a look at the [[doc:V2 Project Management]]. 28 + 29 +---- 30 + 19 19 == Using the Simulation == 20 20 21 -Besides the explicit configuration of a simulation using a kisim file, it is possible to start simulations directly on models, executables or trace files. This will start a pre-defined configuration depending on the selected files. The following table shows which files can be start edassimulation and what simulation configuration is created for it.33 +Besides the explicit configuration of a simulation using a kisim file, it is possible to start simulations directly on models, executables or trace files. This will start a pre-defined configuration depending on the selected files. The following table shows which files can be used to start a simulation and what simulation configuration is created for it. 22 22 23 23 (% class="relative-table wrapped" style="width: 99.9453%;" %) 24 24 |=((( ... ... @@ -31,7 +31,7 @@ 31 31 ))) 32 32 |(% colspan="1" %)(% colspan="1" %) 33 33 ((( 34 -executable 46 +1 executable 35 35 )))|(% colspan="1" %)(% colspan="1" %) 36 36 ((( 37 37 Sim_ModelA.exe ... ... @@ -53,7 +53,7 @@ 53 53 ))) 54 54 |(% colspan="1" %)(% colspan="1" %) 55 55 ((( 56 -kisim file 68 +1 kisim file 57 57 )))|(% colspan="1" %)(% colspan="1" %) 58 58 ((( 59 59 ComplexSimulation.kisim ... ... @@ -73,7 +73,7 @@ 73 73 ))) 74 74 |(% colspan="1" %)(% colspan="1" %) 75 75 ((( 76 -simin file 88 +1 simin file 77 77 )))|(% colspan="1" %)(% colspan="1" %) 78 78 ((( 79 79 process_output.simin ... ... @@ -83,24 +83,24 @@ 83 83 ))) 84 84 |(% colspan="1" %)(% colspan="1" %) 85 85 ((( 86 -simout file 98 +1 simout file 87 87 )))|(% colspan="1" %)(% colspan="1" %) 88 88 ((( 89 89 simulation_output.simout 90 90 )))|(% colspan="1" %)(% colspan="1" %) 91 91 ((( 92 - Thecurrent pool of the simulation is written as JSON object to the simout file.104 +A model of the simulation is written as JSON object to the simout file. 93 93 ))) 94 94 95 95 === Playing the Simulation === 96 96 97 - Besidedmanuallysteppingthrough the simulation tick after tick,it is possible to let the simulation playautomatically.Inplay mode, a macro tick is performed after a given time, which can be defined in the data pool view (e.g. to perform a tick every 200ms).109 +One can step through the simulation tick after tick. Furthermore it is possible to let the simulation step automatically. This is the //play mode//, in which a macro tick is performed after a given time, which can be defined in the data pool view (e.g. to perform a tick every 200ms). 98 98 99 99 === Stepping Back in the Simulation === 100 100 101 -When clicking the //Step Back// button, the values of a former tick are set in the data pool view as user values, which will be assigned to the model before the next tick is executed. 113 +When clicking the //Step Back// button, the values of a former tick are set in the data pool view as user values, which will be assigned to the model before the next tick is executed. Thus it is possible to revert the simulation to a previous state if all variables that define this state are recorded in the data pool. 102 102 103 - This it is possibletorevertamodeltoapreviousstateifallvariables thatdefine the current state of thismodel are recordedinthedatapool.115 +When stepping back and forth in the simulation history, the position in the history is shown next to the current tick count in the Data Pool View. For example, when the simulation is after tick 5 and one steps two ticks back in the simulation history, this will be indicated as the tick **#5 (-2)**. If a tick is performed now using the old state, the values of tick 5 - 2 = 3 are applied and the new outputs are computed so that the simulation is now after tick **#4**. 104 104 105 105 === The Data Pool View === 106 106 ... ... @@ -108,20 +108,24 @@ 108 108 109 109 In the view, the variable values can be modified by the user via clicking the column //User Value//. If a user value is specified for a variable, the corresponding row is highlighted and marked with an asterisk ( * ) . The value is applied to the variable and send to the model before the next tick is performed. 110 110 111 -When using traces in the simulation, a trace mismatch of a variable will be highlighted in the data pool view. A tooltip on the //Current Value// column shows details about the mismatch. The trace mismatch is kept between ticks. To clear a mismatch, use the menu of the view and select //Clear Trace Mismatches//. 123 +When using traces in the simulation, a trace mismatch of a variable will be highlighted in the data pool view. A tooltip on the //Current Value// column shows details about the mismatch. The trace mismatch is kept between ticks. To clear a mismatch, use the menu of the view and select //Clear Trace Mismatches// from the view's menu. 112 112 113 -When the data pool view is selected, stepping through the simulation can be done using the rightarrow on the keyboard, which is often more useful than clicking the corresponding button in the toolbar.125 +When the data pool view is selected, stepping through the simulation can be done using the RIGHT arrow on the keyboard, which is often more useful than clicking the corresponding button in the toolbar. Furthermore the SPACE key will play/pause the simulation and with CTRL+LEFT (respectively CTRL+RIGHT) one can step back (step forward) in the simulation history. 114 114 127 +---- 128 + 115 115 == Data Handlers == 116 116 117 -A simulation consists of a list of //data handlers// ,that can readorwritethecurrentdata pool.Amacrotick in the simulationthenconsistsof theexecutionofthereadorwrite actionsonhese datahandlers. Performing a single action onadata handler is called a //sub tick// and typically not necessarybut can be useful to see the effect ofsingledatahandlerson the data pool.131 +A simulation consists of a list of //data handlers//. These perform actions on the data pool. When the actions of all data handlers for a simulation have been executed, then this is a single full macro tick. In contrast performing only a single action on one data handler is called a //sub tick// and typically not necessary when using the simulation. However stepping through the data handler actions one by one can be useful to see the effect of each action on the data pool. 118 118 119 119 Which handlers are available are explained in the following. 120 120 121 121 === Executable === 122 122 123 - For instance, thereexistsa data handler for the simulation ofanexecutable. The write operation of this data handler will send the inputs of the model as JSON object onstdin of the process. Afterwards the tick is triggered,andfinally the data pool is updated with the JSON object received from stdout of the running process.137 +There is a data handler for the simulation of executables. This data handler will send the inputs of the corresponding model in the simulation as JSON object to stdin of the process. Afterwards the tick is computed by the process. Finally the data pool in the current simulation is updated with the JSON object received from stdout of the running process. 124 124 139 +Normal executables and executable jar files can be used simply by providing the path to the file. For other file types, e.g., a python script, the shell command to start the process has to be specified explicitly. 140 + 125 125 (% class="wrapped" %) 126 126 |=((( 127 127 Attribute ... ... @@ -147,11 +147,26 @@ 147 147 ((( 148 148 The path to the executable 149 149 ))) 166 +|(% colspan="1" %)(% colspan="1" %) 167 +((( 168 +command 169 +)))|(% colspan="1" %)(% colspan="1" %) 170 +((( 171 +String, the shell command that is used to start the process 172 +)))|(% colspan="1" %)(% colspan="1" %) 173 +((( 174 +python "${executable_path}" 175 +)))|(% colspan="1" %)(% colspan="1" %) 176 +((( 177 +The shell command to start the executable 178 +))) 150 150 151 151 === Redirect === 152 152 153 153 Multiple models may interact with each other as some can have inputs that are generated as outputs of other models. To implement this behaviour in the simulation, the redirect data handler has been created. It sets the inputs of a model to the outputs of some other model in the data pool. Thus the outputs of a some model A can be used as inputs of some model B. 154 154 184 +Per default inputs and outputs are matched by name. However it is also possible to provide an explicit mapping of which output should be mapped to which input variable. 185 + 155 155 (% class="wrapped" %) 156 156 |=((( 157 157 Attribute ... ... @@ -182,16 +182,41 @@ 182 182 )))|((( 183 183 The name of the model of which the inputs are set 184 184 ))) 216 +|(% colspan="1" %)(% colspan="1" %) 217 +((( 218 +mapping 219 +)))|(% colspan="1" %)(% colspan="1" %) 220 +((( 221 +Map, The key is an output variable and the value is an input variable 222 +)))|(% colspan="1" %)(% colspan="1" %) 223 +((( 224 +(% class="content-wrapper" %) 225 +((( 226 +configure redirect A_to_B { 227 + from: A 228 + to: B 229 + mapping { 230 + someOutputOfA: someInputOfB 231 + other OutputOfA: otherInputOfB 232 + } 233 +} 234 +))) 235 +)))|(% colspan="1" %)(% colspan="1" %) 236 +((( 237 +Defines which output variables should be mapped to which input variables 238 +))) 185 185 186 186 === Trace === 187 187 188 -A trace data handler can read a trace file, set the inputs of a model with the inputs from the trace file as well as comparing the outputs of a model to the outputs of the trace file. If the outputs of the trace do not match the outputs of the current simulation, an event is fired and the data pool view will display a trace mismatch. 242 +A trace data handler can read a trace file. The inputs of a model can be set to corresponding inputs from the trace and outputs of a model can be compared with corresponding outputs in the trace. Therefore the trace data handler has the methods **write** (inputs), **check** (outputs), **loadNextTick** (to go to the next tick in the trace). 243 +If the outputs of the trace do not match the outputs of the current simulation, an event is fired and the data pool view will display a trace mismatch. 189 189 190 -The typical setup to use a trace data handler for a model A is: 245 +Thus the typical simulation setup to use a trace data handler for a model A is: 191 191 192 -* Readinputsformodel from trace247 +* Set the input of the model to the inputs from the trace (write) 193 193 * Perform the tick of the model A 194 -* Compare the outputs of the trace and the model A 249 +* Compare the outputs of the trace and the model A (check) 250 +* Go to the next tick in the trace (loadNextTick) 195 195 196 196 (% class="wrapped" %) 197 197 |=((( ... ... @@ -206,7 +206,7 @@ 206 206 |((( 207 207 file 208 208 )))|((( 209 -String, project relative path 265 +String, absolute workspace path or project relative path 210 210 )))|((( 211 211 MyTrace.eso 212 212 )))|((( ... ... @@ -225,22 +225,21 @@ 225 225 ))) 226 226 |(% colspan="1" %)(% colspan="1" %) 227 227 ((( 228 -c heckOutputs284 +traceNumber 229 229 )))|(% colspan="1" %)(% colspan="1" %) 230 230 ((( 231 - Boolean287 +Integer 232 232 )))|(% colspan="1" %)(% colspan="1" %) 233 233 ((( 234 -true 235 -false 290 +0 236 236 )))|(% colspan="1" %)(% colspan="1" %) 237 237 ((( 238 -I ffalse,theoutputs of thetraceand simulation arenotcomparedandthenext tick is loadedafterputs have beenset.239 - Usethis option when only the //write// method ofthe data handler isused, butnotits//read// method.293 +In case there are multiple traces in the eso file, determines which trace should be used. 294 +Default is 0 240 240 ))) 241 241 |(% colspan="1" %)(% colspan="1" %) 242 242 ((( 243 -t raceNumber298 +tickNumber 244 244 )))|(% colspan="1" %)(% colspan="1" %) 245 245 ((( 246 246 Integer ... ... @@ -249,22 +249,23 @@ 249 249 0 250 250 )))|(% colspan="1" %)(% colspan="1" %) 251 251 ((( 252 - Incasethereare multipletraces intheesofile,determineswhichtraceshould be used.307 +The tick of which the input is set. This can be used to skip some ticks of the trace. 253 253 Default is 0 254 254 ))) 255 255 |(% colspan="1" %)(% colspan="1" %) 256 256 ((( 257 - tickNumber312 +checkInterface 258 258 )))|(% colspan="1" %)(% colspan="1" %) 259 259 ((( 260 - Integer315 +Boolean 261 261 )))|(% colspan="1" %)(% colspan="1" %) 262 262 ((( 263 - 0318 +true 264 264 )))|(% colspan="1" %)(% colspan="1" %) 265 265 ((( 266 -The tick of which the input is set. This can be used to skip some ticks of the trace. 267 -Default is 0 321 +Determines if the interface of the trace and model should be compared. 322 +If this is true and for example there is an additional input or output in the model that is not recored in the trace, a TraceMismatchEvent is fired. 323 +If this is false and for example the trace contains a variable that does not exist in the model, this issue is ignored. 268 268 ))) 269 269 270 270 \\ ... ... @@ -290,13 +290,14 @@ 290 290 Description 291 291 ))) 292 292 |((( 293 -file Location349 +file 294 294 )))|((( 295 -String, absolute file system path 351 +String, absolute file system path or 352 +absolute workspace path or project relative path 296 296 )))|((( 297 297 /home/myuser/process_output.simin 298 298 )))|((( 299 -The file locationofthe filecontaining the JSON object356 +The target file 300 300 ))) 301 301 |((( 302 302 modelName ... ... @@ -325,13 +325,14 @@ 325 325 Description 326 326 ))) 327 327 |((( 328 -file Location385 +file 329 329 )))|((( 330 -String, absolute file system path 387 +String, absolute file system path or 388 +absolute workspace path or project relative path 331 331 )))|((( 332 - /home/myuser/process_output.simout390 +myFolder/myFile.simout 333 333 )))|((( 334 -The file location of the target file392 +The target file 335 335 ))) 336 336 |((( 337 337 modelName ... ... @@ -343,6 +343,18 @@ 343 343 Name of the model in the simulation that will be written as JSON object to the simout file 344 344 ))) 345 345 404 +=== Variable Setter === 405 + 406 +This data handler is only used for easier debugging and setting up simulations for different test runs. It sets the variables in the data pool to constant values, typically once for the simulation in the initialization part of a kisim file. 407 + 408 +\\ 409 + 410 +\\ 411 + 412 +\\ 413 + 414 +---- 415 + 346 346 == KiSim == 347 347 348 348 Which data handlers are used and which actions are performed on them for each macro tick can be configured using a DSL, namely **KiSim**.
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 -3 11624971 +33260019 - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/3 1162497/V2 Simulation1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/33260019/V2 Simulation