20#ifndef _MECHANICAL_CONSTRAINT_OBSERVER_H__
21#define _MECHANICAL_CONSTRAINT_OBSERVER_H__
23#include "mbsim/observers/observer.h"
25#include <mbsim/utils/boost_parameters.h>
26#include <mbsim/utils/openmbv_utils.h>
30 class MechanicalConstraint;
35 std::string saved_constraint;
36 std::shared_ptr<OpenMBVInteractionArrow> ombvForce, ombvMoment;
37 std::vector<std::shared_ptr<OpenMBV::Arrow>> openMBVForce, openMBVMoment;
42 double evalNone() {
return 1; }
43 double evalAbsoluteForce();
44 double evalAbsoluteMoment();
49 void setOutputFrame(
Frame *outputFrame_) { outputFrame = outputFrame_; }
51 void init(
InitStage stage,
const InitConfigSet &config)
override;
53 void initializeUsingXML(xercesc::DOMElement *element)
override;
55 BOOST_PARAMETER_MEMBER_FUNCTION( (
void), enableOpenMBVForce, tag, (optional (sideOfInteraction,(OpenMBVInteractionArrow::SideOfInteraction),OpenMBVInteractionArrow::action)(scaleLength,(
double),1)(scaleSize,(
double),1)(referencePoint,(OpenMBVArrow::ReferencePoint),OpenMBVArrow::toPoint)(colorRepresentation,(OpenMBVArrow::ColorRepresentation),OpenMBVArrow::none)(minimalColorValue,(
double),0)(maximalColorValue,(
double),1)(diffuseColor,(
const fmatvec::Vec3&),fmatvec::Vec3(std::vector<double>{-1,1,1}))(transparency,(
double),0)(pointSize,(
double),0)(lineWidth,(
double),0))) {
56 ombvForce = std::shared_ptr<OpenMBVInteractionArrow>(
new OpenMBVInteractionArrow(sideOfInteraction,scaleLength,scaleSize,OpenMBVArrow::toHead,referencePoint,colorRepresentation,minimalColorValue,maximalColorValue,diffuseColor,transparency,pointSize,lineWidth));
58 BOOST_PARAMETER_MEMBER_FUNCTION( (
void), enableOpenMBVMoment, tag, (optional (sideOfInteraction,(OpenMBVInteractionArrow::SideOfInteraction),OpenMBVInteractionArrow::action)(scaleLength,(
double),1)(scaleSize,(
double),1)(referencePoint,(OpenMBVArrow::ReferencePoint),OpenMBVArrow::toPoint)(colorRepresentation,(OpenMBVArrow::ColorRepresentation),OpenMBVArrow::none)(minimalColorValue,(
double),0)(maximalColorValue,(
double),1)(diffuseColor,(
const fmatvec::Vec3&),fmatvec::Vec3(std::vector<double>{-1,1,1}))(transparency,(
double),0)(pointSize,(
double),0)(lineWidth,(
double),0))) {
59 ombvMoment = std::shared_ptr<OpenMBVInteractionArrow>(
new OpenMBVInteractionArrow(sideOfInteraction,scaleLength,scaleSize,OpenMBVArrow::toDoubleHead,referencePoint,colorRepresentation,minimalColorValue,maximalColorValue,diffuseColor,transparency,pointSize,lineWidth));
62 Frame *outputFrame {
nullptr };
63 std::string saved_outputFrame;
InitStage
The stages of the initialization.
Definition: element.h:62
std::string name
name of element
Definition: element.h:260
cartesian frame on bodies used for application of e.g. links and loads
Definition: frame.h:39
Definition: mechanical_constraint_observer.h:32
void init(InitStage stage, const InitConfigSet &config) override
plots time series header
Definition: mechanical_constraint_observer.cc:45
void plot() override
plots time dependent data
Definition: mechanical_constraint_observer.cc:99
Class for mechanical constraints.
Definition: mechanical_constraint.h:32
Definition: observer.h:26
Definition: openmbv_utils.h:111
namespace MBSim
Definition: bilateral_constraint.cc:30