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,8 +4,6 @@ 4 4 5 5 {{toc/}} 6 6 7 ----- 8 - 9 9 == Overview == 10 10 11 11 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 ... ... @@ -14,11 +14,11 @@ 14 14 * Execute a tick 15 15 * Send generated outputs 16 16 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 startingtheexecutablefileofa simulation inKIELER,the JSON communication is done on stdin and stdout of the running process.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. For example, in KIELER a simulation can be started by starting an executable file. The JSON communication is then done on stdin and stdout of the running process. 18 18 19 19 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. 20 20 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:19 +Executables for simulation are created using the incremental project builder that is part of the project management. The typical steps to create an executable are: 22 22 23 23 * Compiling a model using the KIELER compiler 24 24 * Generating the simulation wrapper code for the model using template processing ... ... @@ -26,11 +26,9 @@ 26 26 27 27 For more insight of the simulation generation, please take a look at the [[doc:V2 Project Management]]. 28 28 29 ----- 30 - 31 31 == Using the Simulation == 32 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 usedto start a simulation and what simulation configuration is created for it.29 +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. 34 34 35 35 (% class="relative-table wrapped" style="width: 99.9453%;" %) 36 36 |=((( ... ... @@ -43,7 +43,7 @@ 43 43 ))) 44 44 |(% colspan="1" %)(% colspan="1" %) 45 45 ((( 46 - 1executable42 +executable 47 47 )))|(% colspan="1" %)(% colspan="1" %) 48 48 ((( 49 49 Sim_ModelA.exe ... ... @@ -65,7 +65,7 @@ 65 65 ))) 66 66 |(% colspan="1" %)(% colspan="1" %) 67 67 ((( 68 - 1kisim file64 +kisim file 69 69 )))|(% colspan="1" %)(% colspan="1" %) 70 70 ((( 71 71 ComplexSimulation.kisim ... ... @@ -85,7 +85,7 @@ 85 85 ))) 86 86 |(% colspan="1" %)(% colspan="1" %) 87 87 ((( 88 - 1simin file84 +simin file 89 89 )))|(% colspan="1" %)(% colspan="1" %) 90 90 ((( 91 91 process_output.simin ... ... @@ -95,24 +95,24 @@ 95 95 ))) 96 96 |(% colspan="1" %)(% colspan="1" %) 97 97 ((( 98 - 1simout file94 +simout file 99 99 )))|(% colspan="1" %)(% colspan="1" %) 100 100 ((( 101 101 simulation_output.simout 102 102 )))|(% colspan="1" %)(% colspan="1" %) 103 103 ((( 104 - Amodel of the simulation is written as JSON object to the simout file.100 +The current pool of the simulation is written as JSON object to the simout file. 105 105 ))) 106 106 107 107 === Playing the Simulation === 108 108 109 - Onecan step through the simulation tick after tick.Furthermoreit is possible to let the simulationstep automatically.Thisis the //play mode//,in whicha 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).105 +Besided manually stepping through the simulation tick after tick, it is possible to let the simulation play automatically. In play 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). 110 110 111 111 === Stepping Back in the Simulation === 112 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.109 +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. 114 114 115 - When steppingback and forthinthesimulation history,theposition in thehistoryisshown nexttothecurrent tick countinthe DataPool View.For example, when the simulationisaftertick 5and onetepstwo ticks back in the simulationhistory, this will bedicatedasthetick **#5 (-2)**. If a tick is performednow usingtheoldstate,the valuesof tick5 - 2 = 3 areappliedand thenew outputs aremputedsothat thesimulation is nowaftertick **#4**.111 +This it is possible to revert a model to a previous state if all variables that define the current state of this model are recorded in the data pool. 116 116 117 117 === The Data Pool View === 118 118 ... ... @@ -120,24 +120,20 @@ 120 120 121 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 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.119 +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//. 124 124 125 -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.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.121 +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. 126 126 127 ----- 128 - 129 129 == Data Handlers == 130 130 131 -A simulation consists of a list of //data handlers// .Theseperformactionsonthe data pool.Whentheactionsof all datahandlersfor asimulation havebeen executed,thenthis isasinglefull macrotick. Incontrastperformingonlya single action ononedata handler is called a //sub tick// and typically not necessarywhenusingthesimulation. However stepping through the data handler actions one by one can be useful to see the effect of eachaction on the data pool.125 +A simulation consists of a list of //data handlers//, that can read or write the current data pool. A macro tick in the simulation then consists of the execution of the read or write actions on these data handlers. Performing a single action on a data handler is called a //sub tick// and typically not necessary but can be useful to see the effect of single data handlers on the data pool. 132 132 133 133 Which handlers are available are explained in the following. 134 134 135 135 === Executable === 136 136 137 - There is a data handler for the simulation of executables. This data handler will send the inputs of thecorrespondingmodelin the simulation as JSON objectto stdin of the process. Afterwards the tick iscomputed by the process.Finally the data pool in the currentsimulationisupdated with the JSON object received from stdout of the running process.131 +For instance, there exists a data handler for the simulation of an executable. The write operation of this data handler will send the inputs of the model as JSON object on stdin of the process. Afterwards the tick is triggered, and finally the data pool is updated with the JSON object received from stdout of the running process. 138 138 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 141 (% class="wrapped" %) 142 142 |=((( 143 143 Attribute ... ... @@ -163,26 +163,11 @@ 163 163 ((( 164 164 The path to the executable 165 165 ))) 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 -))) 179 179 180 180 === Redirect === 181 181 182 182 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. 183 183 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 186 (% class="wrapped" %) 187 187 |=((( 188 188 Attribute ... ... @@ -213,41 +213,16 @@ 213 213 )))|((( 214 214 The name of the model of which the inputs are set 215 215 ))) 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 -))) 239 239 240 240 === Trace === 241 241 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. 196 +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. 244 244 245 -Th us the typical simulation setup to use a trace data handler for a model A is:198 +The typical setup to use a trace data handler for a model A is: 246 246 247 -* Settheinputofthemodelto the inputsfrom the trace(write)200 +* Read inputs for model from trace 248 248 * Perform the tick of 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) 202 +* Compare the outputs of the trace and the model A 251 251 252 252 (% class="wrapped" %) 253 253 |=((( ... ... @@ -262,7 +262,7 @@ 262 262 |((( 263 263 file 264 264 )))|((( 265 -String, absoluteworkspace path orproject relative path217 +String, project relative path 266 266 )))|((( 267 267 MyTrace.eso 268 268 )))|((( ... ... @@ -281,21 +281,22 @@ 281 281 ))) 282 282 |(% colspan="1" %)(% colspan="1" %) 283 283 ((( 284 - traceNumber236 +checkOutputs 285 285 )))|(% colspan="1" %)(% colspan="1" %) 286 286 ((( 287 - Integer239 +Boolean 288 288 )))|(% colspan="1" %)(% colspan="1" %) 289 289 ((( 290 -0 242 +true 243 +false 291 291 )))|(% colspan="1" %)(% colspan="1" %) 292 292 ((( 293 -I ncase thereare multiple tracesin the esofile,determineswhich traceshouldbeused.294 - Default is0246 +If false, the outputs of the trace and simulation are not compared and the next tick is loaded after inputs have been set. 247 +Use this option when only the //write// method of the data handler is used, but not its //read// method. 295 295 ))) 296 296 |(% colspan="1" %)(% colspan="1" %) 297 297 ((( 298 -t ickNumber251 +traceNumber 299 299 )))|(% colspan="1" %)(% colspan="1" %) 300 300 ((( 301 301 Integer ... ... @@ -304,23 +304,22 @@ 304 304 0 305 305 )))|(% colspan="1" %)(% colspan="1" %) 306 306 ((( 307 - Thetickof whichtheinputs set.Thiscanbeused toskip some ticksof thetrace.260 +In case there are multiple traces in the eso file, determines which trace should be used. 308 308 Default is 0 309 309 ))) 310 310 |(% colspan="1" %)(% colspan="1" %) 311 311 ((( 312 -c heckInterface265 +tickNumber 313 313 )))|(% colspan="1" %)(% colspan="1" %) 314 314 ((( 315 - Boolean268 +Integer 316 316 )))|(% colspan="1" %)(% colspan="1" %) 317 317 ((( 318 - true271 +0 319 319 )))|(% colspan="1" %)(% colspan="1" %) 320 320 ((( 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. 274 +The tick of which the input is set. This can be used to skip some ticks of the trace. 275 +Default is 0 324 324 ))) 325 325 326 326 \\ ... ... @@ -346,14 +346,13 @@ 346 346 Description 347 347 ))) 348 348 |((( 349 -file 301 +fileLocation 350 350 )))|((( 351 -String, absolute file system path or 352 -absolute workspace path or project relative path 303 +String, absolute file system path 353 353 )))|((( 354 354 /home/myuser/process_output.simin 355 355 )))|((( 356 -The target file307 +The file location of the file containing the JSON object 357 357 ))) 358 358 |((( 359 359 modelName ... ... @@ -382,14 +382,13 @@ 382 382 Description 383 383 ))) 384 384 |((( 385 -file 336 +fileLocation 386 386 )))|((( 387 -String, absolute file system path or 388 -absolute workspace path or project relative path 338 +String, absolute file system path 389 389 )))|((( 390 - myFolder/myFile.simout340 +/home/myuser/process_output.simout 391 391 )))|((( 392 -The target file 342 +The file location of the target file 393 393 ))) 394 394 |((( 395 395 modelName ... ... @@ -401,18 +401,6 @@ 401 401 Name of the model in the simulation that will be written as JSON object to the simout file 402 402 ))) 403 403 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 - 416 416 == KiSim == 417 417 418 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**.
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 -3 32600191 +31162500 - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/3 3260019/V2 Simulation1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/31162500/V2 Simulation