A Computed Muscle Control (CMC) optimization target for controlling dynamic systems whose actuators may be themselves governed by differential equations, meaning there may be non-linear behavior and delays in force production. More...
#include <ActuatorForceTarget.h>
Public Member Functions | |
virtual | ~ActuatorForceTarget () |
Destructor. | |
ActuatorForceTarget (int aNX, CMC *aController) | |
Constructor. | |
void | setStressTermWeight (double aWeight) |
Set the weight of the actuator force stress term in the performance criterion. | |
bool | prepareToOptimize (const SimTK::State &s, double *x) |
int | objectiveFunc (const SimTK::Vector &aF, const bool new_coefficients, SimTK::Real &rP) const |
int | gradientFunc (const SimTK::Vector &x, const bool new_coefficients, SimTK::Vector &gradient) const |
A Computed Muscle Control (CMC) optimization target for controlling dynamic systems whose actuators may be themselves governed by differential equations, meaning there may be non-linear behavior and delays in force production.
The performance criterion is a sum of two terms. The first term is the sum of actutor stresses squared. The second term is a weighted sum of terms designed to achieve a set of desired accelerations that will drive the dynamic model toward a set of target kinematic trajectories. The desired accelerations are according to the Proportional Derivative (PD) control law.
Because the performance criterion is simply a long sum of things, achieving the desired accelerations can be compromised in order to reduce the forces (or moments) applied by the actutors. This feature is what is exploited by the Residual Reduction Algorithm.
Although this target is fairly robust (meaning the optimizer should not fail to find a solution), it is a bit slower and less accurate than the "fast" target
ActuatorForceTarget::~ActuatorForceTarget | ( | ) | [virtual] |
Destructor.
ActuatorForceTarget::ActuatorForceTarget | ( | int | aNX, | |
CMC * | aController | |||
) |
Constructor.
aNX | Number of controls. | |
aController | Parent controller. |
int OpenSim::ActuatorForceTarget::gradientFunc | ( | const SimTK::Vector & | x, | |
const bool | new_coefficients, | |||
SimTK::Vector & | gradient | |||
) | const |
int OpenSim::ActuatorForceTarget::objectiveFunc | ( | const SimTK::Vector & | aF, | |
const bool | new_coefficients, | |||
SimTK::Real & | rP | |||
) | const |
bool ActuatorForceTarget::prepareToOptimize | ( | const SimTK::State & | s, | |
double * | x | |||
) | [virtual] |
Reimplemented from OpenSim::OptimizationTarget.
void ActuatorForceTarget::setStressTermWeight | ( | double | aWeight | ) |
Set the weight of the actuator force stress term in the performance criterion.
aWeight | Weight premultiplying the sum squared stresses. |