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
-
... ... @@ -405,7 +405,7 @@ 405 405 406 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 407 408 -(% class="relative-table wrapped" %)408 +(% class="relative-table" %) 409 409 |=((( 410 410 Attribute 411 411 )))|=((( ... ... @@ -560,145 +560,3 @@ 560 560 write sim A 561 561 } 562 562 {{/code}} 563 - 564 -\\ 565 - 566 -== Implementation Details == 567 - 568 -The following are details about the implementation of the simulation and the JSON format that is used to communicate the variables in the models. 569 - 570 -As said above the simulation is seen as black box which takes inputs on stdin, computes a reaction, and sends outputs stdout. Thus an executable simulation is a normal program that communicates in a specific JSON format and can also be used from command line. 571 -\\ 572 - 573 -=== The JSON Format === 574 - 575 -The JSON format is designed to communicate the state of a simulation. In KIELER such a state is saved as a single data pool. This means the JSON format for the communication with running simulations is also the JSON format for data pools. 576 - 577 -It mainly consists of a list of models and a map of models. The models consist mainly of a map of their variables. The most important field of a variable is their value. 578 - 579 -{{code}} 580 -{ "MODEL_NAME0" : { 581 - "VAR0":{"value": "VAR0_VALUE"}, "VAR1":{"value":"VAR1_VALUE"}, ... 582 - } 583 - "MODEL_NAME1" : { 584 - "VAR0":{"value": "VAR0_VALUE"}, "VAR1":{"value":"VAR1_VALUE"}, ... 585 - } 586 - ... 587 - "actionIndex" : "ACTION_INDEX_AFTER_WHICH_THE_DATA_POOL_WAS_CREATED" 588 -} 589 -{{/code}} 590 - 591 -Besides these core informations, an additional field "actionIndex" can be set for the data pool. In the simulation the actions of data handlers are executed to create a macro tick. Therefore the action index takes the task of a program counter. It determines the next action to be executed. Thus in the JSON format the field "actionIndex" can be set to store when the data pool was created in the simulation. 592 - 593 -There are also additional fields for variables than their value. However these only need to be communicated once after the initialization of the model and are explained in the table below. 594 - 595 -(% class="wrapped" %) 596 -|=((( 597 -Field Name 598 -)))|=((( 599 -Example Values 600 -)))|=((( 601 -Description 602 -))) 603 -|((( 604 -type 605 -)))|((( 606 -int 607 - 608 -bool 609 - 610 -pure 611 - 612 -float 613 - 614 -double 615 - 616 -string 617 -)))|((( 618 -The type of the variable in the source model. 619 - 620 -Because this information is lost in general in the compilation (for instance a bool is compiled to a char in C code), the simulation can communicate the intended variable type in the source model. 621 -))) 622 -|((( 623 -interface 624 -)))|((( 625 -0 626 - 627 -1 628 - 629 -2 630 - 631 -3 632 - 633 -4 634 - 635 -5 636 - 637 -6 638 -)))|((( 639 -Bitmask, that determines how the variable is used in the source model's interface (e.g. input, output, internal, other). 640 -A bitmask has been choosen because a mixture of a variables interface types is possible (e.g. input, output, input output) 641 - 642 -(% class="wrapped" %) 643 -|=((( 644 -Interface Type 645 -)))|=((( 646 -Binary Bitmask 647 -)))|=((( 648 -Decimal Number 649 -))) 650 -|((( 651 -Other 652 -)))|((( 653 -0000 654 -)))|((( 655 -0 656 -))) 657 -|(% colspan="1" %)(% colspan="1" %) 658 -((( 659 -Internal 660 -)))|(% colspan="1" %)(% colspan="1" %) 661 -((( 662 -0001 663 -)))|(% colspan="1" %)(% colspan="1" %) 664 -((( 665 -1 666 -))) 667 -|(% colspan="1" %)(% colspan="1" %) 668 -((( 669 -Output 670 -)))|(% colspan="1" %)(% colspan="1" %) 671 -((( 672 -0010 673 -)))|(% colspan="1" %)(% colspan="1" %) 674 -((( 675 -2 676 -))) 677 -|(% colspan="1" %)(% colspan="1" %) 678 -((( 679 -Input 680 -)))|(% colspan="1" %)(% colspan="1" %) 681 -((( 682 -0100 683 -)))|(% colspan="1" %)(% colspan="1" %) 684 -((( 685 -4 686 -))) 687 -|(% colspan="1" %)(% colspan="1" %) 688 -((( 689 -Input Output 690 -)))|(% colspan="1" %)(% colspan="1" %) 691 -((( 692 -0110 693 -)))|(% colspan="1" %)(% colspan="1" %) 694 -((( 695 -6 696 -))) 697 - 698 -Note that internal is intended for variables that are neither input nor output but still part of the source model, in contrast to variables that are created in the compilation (e.g. register flags). 699 -Anyway an input and output is also a internal variable normally. 700 -))) 701 - 702 -=== Python Example === 703 - 704 -\\
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 -33260 1051 +33260022 - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/33260 105/V2 Simulation1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/33260022/V2 Simulation