Differences
This shows you the differences between two versions of the page.
ref:controller [2020/01/03 14:19] |
ref:controller [2020/06/19 15:47] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Controller ====== | ||
+ | Base class for SCONE Controllers. See derived classes for specific functionality. | ||
+ | |||
+ | **Inherits from** [[has_signature|HasSignature]], [[has_data|HasData]]. | ||
+ | |||
+ | **Inherited by** [[composite_controller|CompositeController]], [[feed_forward_controller|FeedForwardController]], [[gait_state_controller|GaitStateController]], [[measure|Measure]], [[mirror_controller|MirrorController]], [[neural_controller|NeuralController]], [[n_n_1_1_neural_network_controller|NeuralNetworkController]], [[noise_controller|NoiseController]], [[perturbation_controller|PerturbationController]], [[reflex_controller|ReflexController]], [[script_controller|ScriptController]]. | ||
+ | |||
+ | ==== Public Attributes ==== | ||
+ | ^ Parameter ^ Type ^ Description ^ | ||
+ | ^ start_time | TimeInSeconds | Time [s] at which [[controller|Controller]] becomes active; default = 0. | | ||
+ | ^ stop_time | TimeInSeconds | Time [s] at which [[controller|Controller]] becomes inactive; default = until simulation ends. | | ||
+ | ^ name | String | Name of the controller, uses as a prefix for the control parameters; empty by default. | | ||
+ | ^ signature_prefix | String | Prefix signature with custom string. Special tags: DATE_TIME, DATE_TIME_EXACT, SCONE_VERSION. | | ||
+ | ^ signature_postfix | String | Append custom string to signature. Special tags: DATE_TIME, DATE_TIME_EXACT, SCONE_VERSION. | | ||
+ | |||
+ | <sub>Converted from doxygen using [[https://github.com/tgeijten/dokugen|dokugen]]</sub> | ||