Skip to content
Snippets Groups Projects
Commit 8a32cd17 authored by Armar6's avatar Armar6
Browse files

modified jointspacedmp

parent 02dbc915
No related branches found
No related tags found
No related merge requests found
...@@ -39,8 +39,11 @@ namespace armarx ...@@ -39,8 +39,11 @@ namespace armarx
phaseL = cfg->phaseL; phaseL = cfg->phaseL;
phaseK = cfg->phaseK; phaseK = cfg->phaseK;
phaseDist0 = cfg->phaseDist0; phaseDist0 = cfg->phaseDist0;
phaseDist1 = cfg->phaseDist1;
phaseKp = cfg->phaseKp; phaseKp = cfg->phaseKp;
isDisturbance = false;
NJointJointSpaceDMPControllerControlData initData; NJointJointSpaceDMPControllerControlData initData;
initData.tau = 1.0; initData.tau = 1.0;
initData.isStart = false; initData.isStart = false;
...@@ -70,10 +73,32 @@ namespace armarx ...@@ -70,10 +73,32 @@ namespace armarx
error += pow(currentPos.pos - targetState[i], 2); error += pow(currentPos.pos - targetState[i], 2);
} }
double phaseDist;
if(isDisturbance)
{
phaseDist = phaseDist1;
}
else
{
phaseDist = phaseDist0;
}
error = sqrt(error); error = sqrt(error);
phaseStop = phaseL / (1 + exp(-phaseK * (error - phaseDist0))); phaseStop = phaseL / (1 + exp(-phaseK * (error - phaseDist)));
mpcFactor = 1 - (phaseStop / phaseL); mpcFactor = 1 - (phaseStop / phaseL);
if(mpcFactor < 0.1)
{
isDisturbance = true;
}
if(mpcFactor > 0.9)
{
isDisturbance = false;
}
double tau = rtGetControlStruct().tau; double tau = rtGetControlStruct().tau;
double deltaT = timeSinceLastIteration.toSecondsDouble(); double deltaT = timeSinceLastIteration.toSecondsDouble();
canVal -= 1 / tau * deltaT * 1 / (1 + phaseStop); canVal -= 1 / tau * deltaT * 1 / (1 + phaseStop);
...@@ -92,8 +117,8 @@ namespace armarx ...@@ -92,8 +117,8 @@ namespace armarx
const auto& jointName = dimNames.at(i); const auto& jointName = dimNames.at(i);
if (targets.count(jointName) == 1) if (targets.count(jointName) == 1)
{ {
double vel0 = currentState[i].vel / timeDuration; vel0 = currentState[i].vel / timeDuration;
double vel1 = phaseKp * (targetState[i] - currentPosition[i]); vel1 = phaseKp * (targetState[i] - currentPosition[i]);
double vel = mpcFactor * vel0 + (1 - mpcFactor) * vel1; double vel = mpcFactor * vel0 + (1 - mpcFactor) * vel1;
targets[jointName]->velocity = finished ? 0.0f : vel; targets[jointName]->velocity = finished ? 0.0f : vel;
} }
...@@ -171,7 +196,11 @@ namespace armarx ...@@ -171,7 +196,11 @@ namespace armarx
void NJointJointSpaceDMPController::showMessages(const Ice::Current &) void NJointJointSpaceDMPController::showMessages(const Ice::Current &)
{ {
ARMARX_INFO << "mpcFactor: " << mpcFactor; ARMARX_INFO << "mpcFactor: " << mpcFactor;
ARMARX_INFO << "canVal: " << canVal;
ARMARX_INFO << "vel0: " << vel0;
ARMARX_INFO << "vel1: " << vel1;
ARMARX_INFO << "isDisturbance: " << isDisturbance;
} }
void NJointJointSpaceDMPController::setTemporalFactor(double tau, const Ice::Current&) void NJointJointSpaceDMPController::setTemporalFactor(double tau, const Ice::Current&)
......
...@@ -91,10 +91,14 @@ namespace armarx ...@@ -91,10 +91,14 @@ namespace armarx
double phaseL; double phaseL;
double phaseK; double phaseK;
double phaseDist0; double phaseDist0;
double phaseDist1;
double phaseKp; double phaseKp;
double mpcFactor; double mpcFactor;
double vel0;
double vel1;
bool isDisturbance;
std::vector<std::string> dimNames; std::vector<std::string> dimNames;
DMP::Vec<DMP::DMPState> currentState; DMP::Vec<DMP::DMPState> currentState;
DMP::DVec targetState; DMP::DVec targetState;
......
...@@ -39,6 +39,7 @@ module armarx ...@@ -39,6 +39,7 @@ module armarx
double phaseL = 10; double phaseL = 10;
double phaseK = 10; double phaseK = 10;
double phaseDist0 = 0.3; double phaseDist0 = 0.3;
double phaseDist1 = 0.1;
double phaseKp = 1; double phaseKp = 1;
double timeDuration = 10; double timeDuration = 10;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment