Hi Denizhan,
You can visualize the joint speed, acceleration, and other dynamics of a 6DOF robot using the Robotics System toolbox in MATLAB and appropriate blocks in Simulink.
Here’s how you can do it in MATLAB:
You can use the Robotics System Toolbox to visualize and analyze the kinematics and dynamics of your robot. The toolbox provides models like “jointSpaceMotionModel” which can be used to model the robot. The “derivative” function from the toolbox can be then used to compute joint velocities and accelerations given a set of joint positions and times. Here’s how you can use the same:
[t,robotState] = ode45(@(t,state)derivative(motionModel,state,targetState),tspan,initialState);
You can refer to the following page to read more on the “derivative” function from the Robotics toolbox and go through an example that shows how to create and use a “jointSpaceMotionModel” object for a manipulator robot in joint-space:
You could do the same in Simscape multibody using the “6-DOF Joint” blocks with sensors enabled to measure joint positions, velocities, and accelerations. These measurements can be outputted to Simulink signals. You can use a “Scope” block to visualize the signals during simulation.
You can refer to the following page for more information on how to use the 6-DOF Joint blocks in Simscape Multibody:
I hope this helps resolve your query!