Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Schneider Electric
Community
Community
Notifications
close
  • Categories
  • Forums
  • Knowledge Center
  • Blogs
  • Ideas
  • Events & Webinars
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register

Contact Support

Close

Ask our Experts

Have a question related to our products, solutions or services? Get quick support on community Forums

Email Us

For Community platform-related support, please email us

New Community Ranking System
Our Community ranking system has recently been updated. You may notice changes in user rankings and receive system messages or notifications. If you have questions about how the new ranking works, please refer to the announcement post for more details (click here).

Kinematization

Digital Twin

This knowledge base is addressing usage of software Experior, Machine Expert Twin and future Automation Expert Twin. These softwares are used to create smaller instances of digital twins for use in industrial automation, warehouse management, design & engineering with more..

Search in

Improve your search experience:

  • Exact phrase → Use quotes " " (e.g., "error 404")
  • Wildcard → Use * for partial words (e.g., build*, *tion)
  • AND / OR → Combine keywords (e.g., login AND error, login OR sign‑in)
  • Keep it short → Use 2–3 relevant words , not full sentences
  • Filters → Narrow results by section (Knowledge Base, Users, Products)
cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Select a Country

Please select a country to continue with beta search.

  • Home
  • Schneider Electric Community
  • Knowledge Center
  • Digital Twin
  • Kinematization
Options
  • Bookmark
  • Subscribe
  • Email to a Friend
  • Printer Friendly Page
  • Report Inappropriate Content
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close

Related Forums

  • Intelligent Devices Forum

Previous Next
Contributors
  • Kasper.Vestrup
    Kasper.Vestrup

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Back to Digital Twin
Start a Topic
Options
  • Bookmark
  • Subscribe
  • Email to a Friend
  • Printer Friendly Page
  • Report Inappropriate Content
0 Likes
233 Views

Link copied. Please paste this link to share this article on your social media post.

Trying to translate this page to your language?
Select your language from the translate dropdown in the upper right. arrow
Translate to: English
  • (Français) French
  • (Deutsche) German
  • (Italiano) Italian
  • (Português) Portuguese
  • (Русский) Russian
  • (Español) Spanish

Kinematization

Kasper.Vestrup Explorer
‎2025-12-19 01:55 AM

Introduction

The kinematization solution aims to simplify the process of creating mechanisms using primitive geometries or convex geometries generated from 3D CAD models, without requiring the user to have a background in C#. It also enables the user to define the motion of each component.

 

All the new functionalities are available from the ribbon in the tab named Kinematization.

KinematizationTab.png

 

CAD Import

You can import 3D CAD models by clicking on the CAD/Convex button. This will open a dialog window where you can select the CAD file to import. Currently, the supported formats are Collada (.dae), Standard Triangle Language (.stl), STEP (.stp, .step), CATIA (.CATPart, .CATProduct), and SolidWorks (.sldprt, .sldasm):

CreateConvexIcon-2.png
Some remarks to be made about the import feature are:
  1. Imported CAD files will be serialized within the model.
  2. Every Assembly created through the CAD import is of type BodyAssembly.
  3. The performance can be affected by either a large number of geometries or the complexity given the mesh density.

 

When importing a Collada file, an additional window will appear, giving the user the option to split the 3D model into multiple parts. This allows the user to recreate the hierarchy specified in the file, resulting in the creation of multiple BodyAssembly objects in the scene. 

 

URRobotImportExample-1.gif

gif also available as attached video "URrobotImportExample1"

 

Hierarchy Modification

 

Creation or modification of hierarchies can be performed using the following buttons:

AssemblyGroupRibbon.png

 

  1. Attach: This method creates a parent-child relationship between the selected assemblies. The first assembly selected will be defined as the parent.
  2. Detach: This method breaks the parent-child relationship. The selected assembly will be detached from its parent.

 

You can create a new empty Assembly by clicking on the Create button. This option allows you to create a blank Assembly that can serve as a container for building a new hierarchy. 

AttachDetach.gif

gif also available as attached video "AttachDetach.mp4"

 

Convex Collider Geometry

 

In a scene, the parts are composed of two main elements: visual mesh and collider geometry. The visual mesh is what the user sees all the time, while the collider geometry is used by the PhysX engine to detect collisions and apply forces.

 

The BodyAssembly class has been modified to offer a more precise convex collider geometry that closely matches the visual mesh. This not only improves the fidelity of the collision detection but also speeds up the creation process.

Screenshot 2025-12-19 103552.png

 

Convex collider geometries are created through a process called Cooking. This process has been modified to make a second attempt if the PhysX engine fails during the Cooking process due to the complexity of the geometry or a large number of vertices provided. On the second attempt, the vertices will be quantized using K-means clustering, which reduces the number of vertices by creating an approximation of the original model. If the PhysX engine fails again during the second attempt, a box collider geometry will be created.

 

Body Assembly

The BodyAssembly class has been specifically developed to work with the Kinematization solution. The following points describe the key characteristics and behaviors provided by the class.

 

  1. It provides polymorphism, allowing you to change its geometry to a primitive shape (box, cylinder, and sphere) or a convex shape (CAD file models).
  2. The behavior of the Body can vary depending on the selected dynamics
    • Bodiless: It is kinematic and has no collider
    • Rigid: It is kinematic and has a collider
    • Physics: It is dynamic, and its position and velocity are determined by the forces acting on it.

      DynamicsTypes-6.gif

       

  3. Minimum position and velocity iterations improves the results of the PhysX engine solver for the current Body, when using physics joints.
  4. Collision allows you to enable or disable collision with other BodyAssembly objects in the scene, without destroying the collider.
    DisableCollision-1.gif

     

  5. Gravity allows you to enable or disable the effect of gravity on the current BodyDisableGravity.gif

     

  6. Weight defines the density of the Body considering its volume

 

Motion

Body Assembly has been designed to be compatible with Kinematic Axis Assembly and Physics Joints. On the other hand, you can perform combination between Kinematic Axis and Physics Joints to create mechanisms.

MotionSketch.png

 

SliderCrank.gifgif also available as attached video "SliderCrank.mp4"

Kinematic Axis

  • It allows for the movement of single or multiple assemblies that have been attached to it.
  • It supports the attachment of Kinematic Axis assemblies to create serial or parallel kinematic chains.
  • It supports the attachment of Body Assembly objects which belong to a structure composed by joints and which Dynamics type is Rigid.
  • It provides only one degree of freedom.
KinematicAxisIcon.png

To simplify the motion assignment process, the user can select an assembly either from the scene or Solution Explorer and click on “Kinematic Axis”. This action will create a Kinematic Axis in the scene as the parent of the selected assembly, maintaining the same position and orientation. The same results can be achieved by selecting multiple assemblies before creating the Kinematic Axis. If no assembly is selected, a single Kinematic Axis will be added to the scene.

 

The motion of the Kinematic Axis can be defined based on the drive type. By default, you have the option to use Position, Velocity, or Forward and Backward drives. If you need to use a custom drive, select the option Custom. Any class that inherits from the Electric or Positioner class will be added and displayed in the Custom Drive property.

Simple Motion

KinematicAxis1.gif

Serial Kinematic Chain

KinematicAxis2.gif

Kinematic Axis and Physics Joints

KinematicAxis3.gif

 

Passive Physics Joints

JointEditor-1024x560.png

A physics joint requires two BodyAssembly objects, and it defines the way bodies move relative to one another. The provided physics joint is of type D6 which is a highly configurable joint. It allows for the specification of individual degrees of freedom to either move freely or be locked.

 

Joints can only be created through the Joint Editor Window, and are compatible only with BodyAssembly types. On the other hand, bodies cannot be Bodiless since the PhysX engine requires the collider geometries of the bodies.

 

The Joint Editor Window allows the user to perform a quick configuration of the joint by enabling/disabling the degree of freedom. However, to get access to the full configuration of the joint, select the Physics Joint object in the Joint Editor Window, and the properties will be displayed in the Properties Window.

 

The joint position and orientation are relative to the BodyAssembly, which has been set as the origin. The child position and orientation are relative to the joint origin. Besides, it is possible to change the geometry type even if the BodyAssembly is already connected to a physics joint. Experior automatically will reconstruct the joints connected to the body.

 

No collision is presented between the BodyAssembly objects that are linked through the same physics joint. However, collision is present with external BodyAssembly objects or any other Assembly in the scene which has rigid parts. 

 

Attachment of Assembly objects to BodyAssembly which already belong to a physics joint, is allowed. Nevertheless, the objects attached will not impact nor modify the motion of the joint since attached objects mimic the change of position and orientation.

Active Physics Joints Example

ActivePhysicsJointsExample.gif

Physics Joints Pose

PhysicsJointsPose.gif

Physics Joint Reconstruction

PhysicsJointsRecreation.gif

Physics Joint with Attachment

PhysicisJointAndAttach.gif

 

URDF Import

  1. When importing the Universal Robot Format (URDF) file, multiple Body and Kinematic Axis assemblies will be created based on the information specified in the file.
  2. Joints specified by URDF are constructed using Kinematic Axis assemblies.
  3. Unlike CAD import, URDF import allows to have BodyAssembly objects with custom colliders, regardless of the visual mesh geometry. This is possible if the collider information is provided by the URDF file.

URDFImport.png

 

NOTE:

  • URDF import supports the same CAD formats mentioned for CAD import (.dae and .stl)
  • To maintain the specified hierarchy in the file, parent, joints, and child relations are kept.
  • When using Kinematic Axis assemblies as joints, the configuration applied to them based on the content of the file includes three aspects: Type, Axis, and Limits.
URDFColliderGeometries-1024x567.png

 

Physics Joints Tips / Suggestions

The following tips and suggestions are provided to improve the response of the PhysX engine and to have a more stable mechanism composed by passive physics joints.

  • Mass ratios above 10 are to be avoided, as the solver is not designed for high rigidity systems.
  • The bodies with higher mass will dominate the movement.
  • Setting the mass of the parts to the real value might not be the best way to set the parameter, depending on the mass ratios.
  • Setting a realistic center of masses can be useful to providing higher stability to a mechanism, as it will greatly influence how the joint affects the angular movement of the body.
  • The higher the solver iterations, the more “rigid” the joint will be (less flexible).
  • Position iterations will mainly provide the accuracy of slow-moving mechanisms.
  • Velocity iterations will improve the accuracy of high-speed movement.
  • Law of diminishing return applies for the last two points.
  • In some scenarios, gravity and collision could be disabled to improve the accuracy of the simulation, in the case that these interactions are not required for the specific simulation that is being done.

Wrong Parameters

T5_Wrong_Parameters.gif 

 

Parametrized

T5_Parametrized.gif
 
More demos can be find attached as Deltapicker-demo.mp4 and T-robot-demo.mp4
Labels (2)
Labels:
  • Exp-7 Working With Models
  • Experior 7
Attachments
URRobotImportExample-1.mp4
AttachDetach.mp4
SliderCrank.mp4
KinematicAxis.zip
PhysicsJoint.zip
T-robot-demo.mp4
Deltapicker-demo.mp4

Link copied. Please paste this link to share this article on your social media post.

You’ve reached the end of your document

WHAT’S NEXT?

Ask our Experts

Didn't find what you are looking for? Ask our experts!

My Dashboard

Check out the new Feeds and activities that are relevant to you.

To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support

    Ask our Experts

    Have a question related to our products, solutions or services? Get quick support on community Forums

    Email Us

    For Community platform-related support, please email us

Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2026 Schneider Electric

Welcome!

Welcome to your new personalized space.

of

Explore