[fix] fixed typo and error in config description
This commit is contained in:
@@ -51,13 +51,14 @@ If the `count` of sensors is greater than the amount of `cells` in a `block`, th
|
|||||||
Elements:
|
Elements:
|
||||||
|
|
||||||
* `group`:`String` - sensor group assignment
|
* `group`:`String` - sensor group assignment
|
||||||
* `parent`:`String` _[optional]_ - parent group assignment. The parents group ground truth for the current simulation tick is calculated before this grout and passed to it
|
* `parent`:`String` _[optional]_ - parent group assignment. The parents group ground truth for the current simulation tick is calculated before this group and passed to it
|
||||||
* `value`:`double` - ground truth value
|
* `truth`:`array` - array of ground truth values and their validity
|
||||||
* `timeline`:`array` - sets simulation tick when this ground truth is active and turns inactive.
|
* `value`:`double` - ground truth value
|
||||||
* `start`:`int` - simulation tick when this function is active
|
* `timeline`:`array` - sets simulation tick when this ground truth is active and turns inactive.
|
||||||
* `end`:`int` _[optional]_ - last simulation tick before this function is inactive
|
* `start`:`int` - simulation tick when this function is active
|
||||||
Alternative condensed of `timeline` notation as `array`: `[start, end]`
|
* `end`:`int` _[optional]_ - last simulation tick before this function is inactive
|
||||||
Alternative condensed of `value` notation as `array`: `[start, value or None, ...]`
|
Alternative condensed of `timeline` notation as `array`: `[start, end]`
|
||||||
|
Alternative condensed of `value` notation as `array`: `[start, value or None, ...]`
|
||||||
* `delta`:`array` _[optional]_ - function to calculate `value` of the next simulation tick, only called if no value is defined for the next tick. Result is saved as new `value` and passed again to the function for the next tick. If no function is given, the `value` remains
|
* `delta`:`array` _[optional]_ - function to calculate `value` of the next simulation tick, only called if no value is defined for the next tick. Result is saved as new `value` and passed again to the function for the next tick. If no function is given, the `value` remains
|
||||||
* `name`:`String` - name of the function. Needs to exist at compile time in a map: `["name" -> (value: double, parentValue: double, args: ...) => double]`
|
* `name`:`String` - name of the function. Needs to exist at compile time in a map: `["name" -> (value: double, parentValue: double, args: ...) => double]`
|
||||||
* `args`:`array` - arguments passed to the function in addition to the `value`
|
* `args`:`array` - arguments passed to the function in addition to the `value`
|
||||||
|
|||||||
Reference in New Issue
Block a user