NTRT Simulator
v1.1
|
#include <TetraSpineCPGControl.h>
Public Member Functions | |
TetraSpineCPGControl (BaseSpineCPGControl::Config config, std::string args, std::string resourcePath, std::string ec="edgeConfig.ini", std::string nc="nodeConfig.ini") | |
virtual void | setupCPGs (BaseSpineModelLearning &subject, array_2D nodeActions, array_4D edgeActions) |
virtual void | onStep (BaseSpineModelLearning &subject, double dt) |
virtual void | onSetup (BaseSpineModelLearning &subject) |
virtual void | onTeardown (BaseSpineModelLearning &subject) |
const double | getCPGValue (std::size_t i) const |
double | getScore () const |
virtual void | onAttach (BaseSpineModelLearning &subject) |
void | attach (tgObserver< BaseSpineCPGControl > *pObserver) |
void | notifyStep (double dt) |
void | notifySetup () |
void | notifyTeardown () |
Protected Member Functions | |
virtual array_4D | scaleEdgeActions (std::vector< std::vector< double > > actions) |
virtual array_2D | scaleNodeActions (std::vector< std::vector< double > > actions) |
Protected Attributes | |
CPGEquations * | m_pCPGSys |
std::vector < tgCPGActuatorControl * > | m_allControllers |
BaseSpineCPGControl::Config | m_config |
std::string | edgeConfigFilename |
std::string | nodeConfigFilename |
configuration | nodeConfigData |
configuration | edgeConfigData |
AnnealEvolution | edgeEvolution |
AnnealEvolution | nodeEvolution |
AnnealAdapter | edgeAdapter |
AnnealAdapter | nodeAdapter |
bool | nodeLearning |
bool | edgeLearning |
std::vector< double > | initConditions |
std::size_t | segments |
tgDataObserver | m_dataObserver |
double | m_updateTime |
std::vector< double > | scores |
bool | bogus |
Inherits from BaseSpineCPGControl, and overrides setupCPGs so different muscle groups can have different tgImpedanceController parameters
Definition at line 37 of file TetraSpineCPGControl.h.
TetraSpineCPGControl::TetraSpineCPGControl | ( | BaseSpineCPGControl::Config | config, |
std::string | args, | ||
std::string | resourcePath, | ||
std::string | ec = "edgeConfig.ini" , |
||
std::string | nc = "nodeConfig.ini" |
||
) |
Defining the adapters here assumes the controller is around and attached for the lifecycle of the learning runs. I.E. that the setup and teardown functions are used for tgModel
Definition at line 49 of file TetraSpineCPGControl.cpp.
|
inherited |
Attach an observer to the subject of the observer.
[in,out] | pObserver | a pointer to an observer for the subject; do nothing if the pointer is NULL |
|
inherited |
Call tgObserver<T>::onSetup() on all observers in the order in which they were attached.
|
inherited |
Call tgObserver<T>::onStep() on all observers in the order in which they were attached.
[in] | dt | the number of seconds since the previous call; do nothing if not positive |
|
inherited |
Call tgObserver<T>::onTeardown() on all observers in the order in which they were attached.
|
inlinevirtualinherited |
Notify the observers when an attach action has occurred. Will only occur once, typically before setup
[in,out] | subject | the subject being observed |
Definition at line 55 of file tgObserver.h.
|
virtualinherited |
Notify the observers when a setup action has occurred.
[in,out] | subject | the subject being observed |
Reimplemented from tgObserver< BaseSpineModelLearning >.
Reimplemented in SpineFeedbackControl, OctaCLSine, and LearningSpineSine.
Definition at line 175 of file BaseSpineCPGControl.cpp.
|
virtualinherited |
Notify the observers when a step action has occurred.
[in,out] | subject | the subject being observed |
[in] | the | number of seconds since the previous call; must be positive |
Implements tgObserver< BaseSpineModelLearning >.
Reimplemented in SpineFeedbackControl, OctaCLSine, and LearningSpineSine.
Definition at line 253 of file BaseSpineCPGControl.cpp.
|
virtualinherited |
Notify the observers when a teardown action has occurred.
[in,out] | subject | the subject being observed |
Reimplemented from tgObserver< BaseSpineModelLearning >.
Reimplemented in SpineFeedbackControl, OctaCLSine, and LearningSpineSine.
Definition at line 281 of file BaseSpineCPGControl.cpp.
|
protectedvirtualinherited |
Takes a vector of parameters reported by learning, and then converts it into a format used to assign to the CPGEdges Note that if the CPG edges change, this will need to change
Definition at line 364 of file BaseSpineCPGControl.cpp.
|
virtual |
Reimplemented from BaseSpineCPGControl.
Definition at line 58 of file TetraSpineCPGControl.cpp.