Codota Logo
DiagnosticControllerToolbox.getFullRobotModel
Code IndexAdd Codota to your IDE (free)

How to use
getFullRobotModel
method
in
us.ihmc.wholeBodyController.diagnostics.DiagnosticControllerToolbox

Best Java code snippets using us.ihmc.wholeBodyController.diagnostics.DiagnosticControllerToolbox.getFullRobotModel (Showing top 9 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: us.ihmc/IHMCWholeBodyController

private static IMUDefinition findIMUDefinition(String imuName, DiagnosticControllerToolbox toolbox)
{
 IMUDefinition imuDefinition = null;
 IMUDefinition[] imuDefinitions = toolbox.getFullRobotModel().getIMUDefinitions();
 for (int i = 0; i < imuDefinitions.length; i++)
 {
   if (imuDefinitions[i].getName().equals(imuName))
    imuDefinition = imuDefinitions[i];
 }
 if (imuDefinition == null)
   throw new RuntimeException("Could not find the IMUDefinition for the imu: " + imuName);
 return imuDefinition;
}
origin: us.ihmc/ihmc-whole-body-controller

private static IMUDefinition findIMUDefinition(String imuName, DiagnosticControllerToolbox toolbox)
{
 IMUDefinition imuDefinition = null;
 IMUDefinition[] imuDefinitions = toolbox.getFullRobotModel().getIMUDefinitions();
 for (int i = 0; i < imuDefinitions.length; i++)
 {
   if (imuDefinitions[i].getName().equals(imuName))
    imuDefinition = imuDefinitions[i];
 }
 if (imuDefinition == null)
   throw new RuntimeException("Could not find the IMUDefinition for the imu: " + imuName);
 return imuDefinition;
}
origin: us.ihmc/ihmc-avatar-interfaces

public void addJointCheckUpDiagnostic()
 FullHumanoidRobotModel fullRobotModel = toolbox.getFullRobotModel();
 RobotSpecificJointNames robotSpecificJointNames = fullRobotModel.getRobotSpecificJointNames();
 List<String> jointsToIgnore = toolbox.getDiagnosticParameters().getJointsToIgnoreDuringDiagnostic();
origin: us.ihmc/IHMCAvatarInterfaces

public void addJointCheckUpDiagnostic()
 FullHumanoidRobotModel fullRobotModel = toolbox.getFullRobotModel();
 RobotSpecificJointNames robotSpecificJointNames = fullRobotModel.getRobotSpecificJointNames();
 List<String> jointsToIgnore = toolbox.getDiagnosticParameters().getJointsToIgnoreDuringDiagnostic();
origin: us.ihmc/DarpaRoboticsChallenge

public void addJointCheckUpDiagnostic()
 FullHumanoidRobotModel fullRobotModel = toolbox.getFullRobotModel();
 RobotSpecificJointNames robotSpecificJointNames = fullRobotModel.getRobotSpecificJointNames();
 List<String> jointsToIgnore = toolbox.getDiagnosticParameters().getJointsToIgnoreDuringDiagnostic();
origin: us.ihmc/ihmc-whole-body-controller

public PelvisIMUCheckUpDiagnosticTask(IMUDefinition imuToCheck, DiagnosticControllerToolbox toolbox)
 FullHumanoidRobotModel fullRobotModel = toolbox.getFullRobotModel();
 RigidBodyBasics pelvis = fullRobotModel.getPelvis();
 if (imuToCheck.getRigidBody() != pelvis)
origin: us.ihmc/IHMCWholeBodyController

public PelvisIMUCheckUpDiagnosticTask(IMUDefinition imuToCheck, DiagnosticControllerToolbox toolbox)
 FullHumanoidRobotModel fullRobotModel = toolbox.getFullRobotModel();
 RigidBody pelvis = fullRobotModel.getPelvis();
 if (imuToCheck.getRigidBody() != pelvis)
origin: us.ihmc/IHMCWholeBodyController

FullHumanoidRobotModel fullRobotModel = toolbox.getFullRobotModel();
DiagnosticParameters diagnosticParameters = toolbox.getDiagnosticParameters();
origin: us.ihmc/ihmc-whole-body-controller

FullHumanoidRobotModel fullRobotModel = toolbox.getFullRobotModel();
JointDesiredOutputList lowLevelOutput = toolbox.getLowLevelOutput();
DiagnosticParameters diagnosticParameters = toolbox.getDiagnosticParameters();
us.ihmc.wholeBodyController.diagnosticsDiagnosticControllerToolboxgetFullRobotModel

Popular methods of DiagnosticControllerToolbox

  • getDiagnosticParameters
  • <init>
  • getDT
  • getIMUOrientationAngularVelocityConsistencyChecker
  • getIMUSensorReadOnly
  • getIMUSensorValidityChecker
  • getJointForceTrackingDelayEstimator
  • getJointFourierAnalysis
  • getJointPositionVelocityConsistencyChecker
  • getJointSensorValidityChecker
  • getWalkingControllerParameters
  • getYoTime
  • getWalkingControllerParameters,
  • getYoTime,
  • getLowLevelOutput

Popular in Java

  • Finding current android device location
  • getSharedPreferences (Context)
  • findViewById (Activity)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement.A servlet is a small Java program that runs within
  • IsNull (org.hamcrest.core)
    Is the value null?
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now