DetectForceFlank.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @package RobotAPI::ForceTorqueUtility
17  * @author Raphael Grimm ( raphael dot grimm at kit dot edu )
18  * @date 2018
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 #include "DetectForceFlank.h"
24 
25 #include <thread>
26 
28 
29 using namespace armarx;
30 using namespace ForceTorqueUtility;
31 
32 // DO NOT EDIT NEXT LINE
33 DetectForceFlank::SubClassRegistry DetectForceFlank::Registry(DetectForceFlank::GetName(),
35 
36 void
38 {
39  ARMARX_CHECK_EXPRESSION(in.getTriggerOnDecreasingForceVectorLength() ||
40  in.getTriggerOnIncreasingForceVectorLength());
41 
42  const float forceThreshold = in.getForceVectorLengthThreshold();
43  DatafieldRefPtr forceDf = DatafieldRefPtr::dynamicCast(
44  getForceTorqueObserver()->getForceDatafield(in.getFTDatafieldName()));
45  const Eigen::Vector3f weights = in.getForceWeights()->toEigen();
46  const float initialForce =
47  forceDf->getDataField()->get<FramedDirection>()->toEigen().cwiseProduct(weights).norm();
48 
49  while (!isRunningTaskStopped()) // stop run function if returning true
50  {
51 
52  const float force =
53  forceDf->getDataField()->get<FramedDirection>()->toEigen().cwiseProduct(weights).norm();
54  ARMARX_INFO << deactivateSpam(1) << VAROUT(force) << " " << VAROUT(initialForce);
55  if ((in.getTriggerOnDecreasingForceVectorLength() && force < initialForce &&
56  initialForce - force >= forceThreshold) ||
57  (in.getTriggerOnIncreasingForceVectorLength() && force > initialForce &&
58  force - initialForce >= forceThreshold))
59  {
60  emitSuccess();
61  return;
62  }
63  std::this_thread::sleep_for(std::chrono::milliseconds{10});
64  }
65  emitFailure();
66 }
67 
68 // DO NOT EDIT NEXT FUNCTION
71 {
72  return XMLStateFactoryBasePtr(new DetectForceFlank(stateData));
73 }
armarx::ForceTorqueUtility::DetectForceFlank::CreateInstance
static XMLStateFactoryBasePtr CreateInstance(XMLStateConstructorParams stateData)
Definition: DetectForceFlank.cpp:70
armarx::viz::toEigen
Eigen::Matrix4f toEigen(data::GlobalPose const &pose)
Definition: Interaction.h:48
armarx::XMLStateConstructorParams
Definition: XMLState.h:49
DetectForceFlank.h
armarx::XMLStateFactoryBasePtr
IceInternal::Handle< XMLStateFactoryBase > XMLStateFactoryBasePtr
Definition: XMLState.h:64
IceInternal::Handle< DatafieldRef >
deactivateSpam
SpamFilterDataPtr deactivateSpam(SpamFilterDataPtr const &spamFilter, float deactivationDurationSec, const std::string &identifier, bool deactivate)
Definition: Logging.cpp:75
armarx::ForceTorqueUtility::DetectForceFlank::DetectForceFlank
DetectForceFlank(const XMLStateConstructorParams &stateData)
Definition: DetectForceFlank.h:31
FramedPose.h
ARMARX_CHECK_EXPRESSION
#define ARMARX_CHECK_EXPRESSION(expression)
This macro evaluates the expression and if it turns out to be false it will throw an ExpressionExcept...
Definition: ExpressionException.h:73
armarx::FramedDirection
FramedDirection is a 3 dimensional direction vector with a reference frame. The reference frame can b...
Definition: FramedPose.h:86
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
VAROUT
#define VAROUT(x)
Definition: StringHelpers.h:198
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::ForceTorqueUtility::DetectForceFlank::run
void run() override
Definition: DetectForceFlank.cpp:37
armarx::ForceTorqueUtility::DetectForceFlank::Registry
static SubClassRegistry Registry
Definition: DetectForceFlank.h:52