[770c98]: / Body / Mandible / NormalMandible_AAU / JointsAndDriversCalibration1.any

Download this file

27 lines (18 with data), 801 Bytes

//Connects the Skull with the ground with a fixed connection
AnyStdJoint GroundSkullJnt = {
  AnyRefNode &GroundRef = Main.GlobalRef.GroundNode;
  AnyRefNode &SkullRef = ..HumanModelFolderRef.Seg.Skull.GroundNode;
};


//Defines the movement of the mandible

AnyKinLinear LowerIncisorDistance = {
  AnyRefNode &SkullRef = ..HumanModelFolderRef.Seg.Skull.MiddleTMJ_Nodes;
  AnyRefNode &MandibleRef = ..HumanModelFolderRef.Seg.Mandible.LowerIncisorMiddleNode;
  Ref=0;
};


AnyKinEqSimpleDriver JawPositionCalibration = {
  AnyKinMeasure& ref = .LowerIncisorDistance;
  AnyVector JawOpening = {0.0,0.0,-0.012}; //Langenbach
  DriverPos = ..HumanModelFolderRef.Seg.Mandible.LowerIncisorMiddleNode.sRel + JawOpening;
  DriverVel = {0.0,0.0,0.0};
  Reaction.Type = {0,0,0};
};