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,15 +12,25 @@ 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 19 - ==Starting aSimulation==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: 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 started as simulation and what simulation configuration is created for it. 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. 22 22 23 -(% class="relative-table" style="width: 99.9453%;" %) 27 +For more insight of the simulation generation, please take a look at the [[doc:V2 Project Management]]. 28 + 29 +---- 30 + 31 +== Using the Simulation == 32 + 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. 34 + 35 +(% class="relative-table wrapped" style="width: 99.9453%;" %) 24 24 |=((( 25 25 Selection 26 26 )))|=(% colspan="1" %)(% colspan="1" %) ... ... @@ -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,23 +83,50 @@ 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 107 +=== Playing the Simulation === 108 + 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). 110 + 111 +=== Stepping Back in the Simulation === 112 + 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. 114 + 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**. 116 + 117 +=== The Data Pool View === 118 + 119 +The current data pool can be seen in the Data Pool View (Window > Show View > Other > KIELER Simulation > Data Pool View). 120 + 121 +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. 122 + 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. 124 + 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. 126 + 127 +---- 128 + 95 95 == Data Handlers == 96 96 97 -A simulation consists of a list of //data handlers// ,thatcanreadorwritethe currentdata pool.Whichhandlers are availableare explainedin thefollowing.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. 98 98 133 +Which handlers are available are explained in the following. 134 + 99 99 === Executable === 100 100 101 - 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. 102 102 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 + 141 +(% class="wrapped" %) 103 103 |=((( 104 104 Attribute 105 105 )))|=(% colspan="1" %)(% colspan="1" %) ... ... @@ -124,11 +124,27 @@ 124 124 ((( 125 125 The path to the executable 126 126 ))) 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 +))) 127 127 128 128 === Redirect === 129 129 130 130 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. 131 131 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 + 186 +(% class="wrapped" %) 132 132 |=((( 133 133 Attribute 134 134 )))|=((( ... ... @@ -158,17 +158,43 @@ 158 158 )))|((( 159 159 The name of the model of which the inputs are set 160 160 ))) 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 +))) 161 161 162 162 === Trace === 163 163 164 -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. 165 165 166 -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: 167 167 168 -* Readinputsformodel from trace247 +* Set the input of the model to the inputs from the trace (write) 169 169 * Perform the tick of the model A 170 -* 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) 171 171 252 +(% class="wrapped" %) 172 172 |=((( 173 173 Attribute 174 174 )))|=((( ... ... @@ -181,7 +181,7 @@ 181 181 |((( 182 182 file 183 183 )))|((( 184 -String, project relative path 265 +String, absolute workspace path or project relative path 185 185 )))|((( 186 186 MyTrace.eso 187 187 )))|((( ... ... @@ -200,22 +200,21 @@ 200 200 ))) 201 201 |(% colspan="1" %)(% colspan="1" %) 202 202 ((( 203 -c heckOutputs284 +traceNumber 204 204 )))|(% colspan="1" %)(% colspan="1" %) 205 205 ((( 206 - Boolean287 +Integer 207 207 )))|(% colspan="1" %)(% colspan="1" %) 208 208 ((( 209 -true 210 -false 290 +0 211 211 )))|(% colspan="1" %)(% colspan="1" %) 212 212 ((( 213 -I ffalse,theoutputs of thetraceand simulation arenotcomparedandthenext tick is loadedafterputs have beenset.214 - 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 215 215 ))) 216 216 |(% colspan="1" %)(% colspan="1" %) 217 217 ((( 218 -t raceNumber298 +tickNumber 219 219 )))|(% colspan="1" %)(% colspan="1" %) 220 220 ((( 221 221 Integer ... ... @@ -224,22 +224,23 @@ 224 224 0 225 225 )))|(% colspan="1" %)(% colspan="1" %) 226 226 ((( 227 - 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. 228 228 Default is 0 229 229 ))) 230 230 |(% colspan="1" %)(% colspan="1" %) 231 231 ((( 232 - tickNumber312 +checkInterface 233 233 )))|(% colspan="1" %)(% colspan="1" %) 234 234 ((( 235 - Integer315 +Boolean 236 236 )))|(% colspan="1" %)(% colspan="1" %) 237 237 ((( 238 - 0318 +true 239 239 )))|(% colspan="1" %)(% colspan="1" %) 240 240 ((( 241 -The tick of which the input is set. This can be used to skip some ticks of the trace. 242 -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. 243 243 ))) 244 244 245 245 \\ ... ... @@ -254,7 +254,7 @@ 254 254 255 255 Simulation input files can also be used to feed the simulation with data to be visualized via the simulation visualization. 256 256 257 -(% class="relative-table" style="width: 81.5545%;" %) 338 +(% class="relative-table wrapped" style="width: 81.5545%;" %) 258 258 |=((( 259 259 Attribute 260 260 )))|=((( ... ... @@ -265,13 +265,14 @@ 265 265 Description 266 266 ))) 267 267 |((( 268 -file Location349 +file 269 269 )))|((( 270 -String, absolute file system path 351 +String, absolute file system path or 352 +absolute workspace path or project relative path 271 271 )))|((( 272 272 /home/myuser/process_output.simin 273 273 )))|((( 274 -The file locationofthe filecontaining the JSON object356 +The target file 275 275 ))) 276 276 |((( 277 277 modelName ... ... @@ -289,7 +289,7 @@ 289 289 290 290 This data handler writes the output of the model in the simulation to the specified file. 291 291 292 -(% class="relative-table" style="width: 81.7734%;" %) 374 +(% class="relative-table wrapped" style="width: 81.7734%;" %) 293 293 |=((( 294 294 Attribute 295 295 )))|=((( ... ... @@ -300,13 +300,14 @@ 300 300 Description 301 301 ))) 302 302 |((( 303 -file Location385 +file 304 304 )))|((( 305 -String, absolute file system path 387 +String, absolute file system path or 388 +absolute workspace path or project relative path 306 306 )))|((( 307 - /home/myuser/process_output.simout390 +myFolder/myFile.simout 308 308 )))|((( 309 -The file location of the target file392 +The target file 310 310 ))) 311 311 |((( 312 312 modelName ... ... @@ -318,9 +318,21 @@ 318 318 Name of the model in the simulation that will be written as JSON object to the simout file 319 319 ))) 320 320 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 + 321 321 == KiSim == 322 322 323 -Which data handlers are used and which actions are performed on them can be configured using a DSL, namely **KiSim**. 418 +Which data handlers are used and which actions are performed on them for each macro tick can be configured using a DSL, namely **KiSim**. 324 324 325 325 A kisim file contains two main parts: 326 326
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 -3 11624951 +33260019 - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/3 1162495/V2 Simulation1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/33260019/V2 Simulation