Search found 5727 matches

by coppelia
26 Mar 2024, 16:13
Forum: General questions
Topic: Torque control of joints using Remote Api Python
Replies: 5
Views: 144

Re: Torque control of joints using Remote Api Python

The model you shared is relatively stable here... with MuJoCo it is even very stable. Please share the equivalent scene file, since there are settings that are not stored in the model and that influence its behaviour.

Cheers
by coppelia
26 Mar 2024, 16:09
Forum: General questions
Topic: some bugs about making Spherical joint
Replies: 2
Views: 102

Re: some bugs about making Spherical joint

Hello, in your MuJoCo model, not all joints are controlled in positions. Additionally, make sure to set all joint's dynamic engine property armature to 20: this is the secret sauce most of the time. When working with Bullet or ODE, you indeed should make sure that masses and inertia are not too diff...
by coppelia
26 Mar 2024, 15:04
Forum: General questions
Topic: portable export of a compound shape
Replies: 2
Views: 78

Re: portable export of a compound shape

Hello,

if you select the compound shape, then navigate to [Menu bar > File > Export > Selection (shapes)...] then you can export it as *.dae format (i.e. collada).

Cheers
by coppelia
26 Mar 2024, 14:57
Forum: General questions
Topic: 3D printer nozzle simulation
Replies: 2
Views: 75

Re: 3D printer nozzle simulation

You might also want to look at OC-Trees... those won't display spheres though, but would be ideal for additive manufact.

Cheers
by coppelia
26 Mar 2024, 14:53
Forum: General questions
Topic: cannot boot windows
Replies: 1
Views: 57

Re: cannot boot windows

Hello,

wrong forum, this is not a forum about Windows..

Cheers
by coppelia
26 Mar 2024, 14:51
Forum: General questions
Topic: Adding graph in in a scene
Replies: 1
Views: 58

Re: Adding graph in in a scene

Hello,

actually you are not supposed to add code the the customization script of the graph. Adding graph data points, etc. should be done from within another script, e.g. where the data originates from.

Cheers
by coppelia
26 Mar 2024, 14:48
Forum: General questions
Topic: Simulation freezes in Stepping Mode
Replies: 7
Views: 50485

Re: Simulation freezes in Stepping Mode

Hello, it is very difficult to find out what exactly is going on. Normally one should not start CoppeliaSim via a Python script, since this could confuse Qt which requires CoppeliaSim to be started in the main thread. There is however the Python application client in V4.6, that allows to start and r...
by coppelia
26 Mar 2024, 14:18
Forum: Bug reports
Topic: Prismatic joint with velocity 0 doesn't hold position.
Replies: 3
Views: 84

Re: Prismatic joint with velocity 0 doesn't hold position.

Hello, this is mostly a normal behaviour: a velocity controller is not a position controller. The controller will try to hold as well as possible the desired velocity, but won't correct for any positional slips obviously. Make sure that your Max. force is large (relative to the exerted forces), as t...
by coppelia
26 Mar 2024, 14:11
Forum: Bug reports
Topic: ZMQ remote API failing after the same amount of runs of a simulation
Replies: 7
Views: 161

Re: ZMQ remote API failing after the same amount of runs of a simulation

Hello,

can you tell me what revision of V4.6 you are running? You should have revision 16, or better 18.
Also, make sure you upgraded the related pip package too.

Cheers
by coppelia
21 Mar 2024, 17:53
Forum: General questions
Topic: Torque control of joints using Remote Api Python
Replies: 5
Views: 144

Re: Torque control of joints using Remote Api Python

Hello, the best would be to use the ZeroMQ remote API , since it is much easier and flexible to use, and the legacy remote APi is deprecated. Also, use the latest CoppeliaSim (currently V4.6). Joints when in force control mode need to be constantly controlled/adjusted, i.e. you need to write you own...