Hello,
do you have a link to a scene that illustrates your problem?
Cheers
Search found 5893 matches
- 01 Nov 2024, 16:19
- Forum: General questions
- Topic: Vision sensor calibration
- Replies: 1
- Views: 37
- 01 Nov 2024, 14:49
- Forum: General questions
- Topic: UR5 IK Path Generation Fails
- Replies: 1
- Views: 38
Re: UR5 IK Path Generation Fails
Hello, the problem with the second robot is that it starts in a singular configuration, i.e. it loses several DoFs when stretched like that and Ik can't work. The solution: simply slightly move away from that configuration, so that you regain all 6 DoFs again. You can do this by e.g. setting an init...
- 01 Nov 2024, 14:25
- Forum: General questions
- Topic: PID issue, robot doesn't pass maze
- Replies: 1
- Views: 43
Re: PID issue, robot doesn't pass maze
Please post your scene file, that would be easier to understand what you are talking about.
Cheers
Cheers
- 01 Nov 2024, 11:53
- Forum: Bug reports
- Topic: Easy to crash when using " Create dummies on mesh surface"
- Replies: 7
- Views: 91
Re: Easy to crash when using " Create dummies on mesh surface"
Indeed, we are able to reproduce this on some Windows machines... strangely it appears to be related to rendering.
A temporary workaround would be to click (in order to generate a dummy) and shift the mouse a few pixels before releasing the mouse button.
Cheers
A temporary workaround would be to click (in order to generate a dummy) and shift the mouse a few pixels before releasing the mouse button.
Cheers
- 31 Oct 2024, 13:31
- Forum: Bug reports
- Topic: Easy to crash when using " Create dummies on mesh surface"
- Replies: 7
- Views: 91
Re: Easy to crash when using " Create dummies on mesh surface"
Thank you for the info. Can you help me identify when the crash happens exactly (the Windows stack trace is not usable)? There are 2 components that play together: addOns/Point sampler service.lua and addOns/Create dummies on mesh surface.lua . Please try to add some printToConsole commands here and...
- 31 Oct 2024, 08:43
- Forum: Bug reports
- Topic: Easy to crash when using " Create dummies on mesh surface"
- Replies: 7
- Views: 91
Re: Easy to crash when using " Create dummies on mesh surface"
Hello,
it seems that the IGL plugin fails to load. Can you confirm again if you type following?
Does above instruction alone crash CoppeliaSim?
We will release CoppeliaSim V4.8 in the next few minutes, please try also with that version.
Cheers
it seems that the IGL plugin fails to load. Can you confirm again if you type following?
Code: Select all
simIGL = require('simIGL')
We will release CoppeliaSim V4.8 in the next few minutes, please try also with that version.
Cheers
- 30 Oct 2024, 09:44
- Forum: General questions
- Topic: Transfer a locomotion policy of a quadruped robot from isaacsim
- Replies: 2
- Views: 95
Re: Transfer a locomotion policy of a quadruped robot from isaacsim
Hello, URDF portability across applications can be quite challenging. The URDF and your model are extremely heavy and not optimized. Also, the joint control mode should be set to force/torque in your case and many parameters adjusted, such as the armature parameter of the joints (MuJoCo). If running...
- 30 Oct 2024, 08:34
- Forum: General questions
- Topic: How to set a higher FPS before simulation?
- Replies: 1
- Views: 45
Re: How to set a higher FPS before simulation?
Hello, yes, when simulation is running, it runs as fast as possible. When simulation is stopped (and the mouse button not down), the FPS are limited to 8 by default, which is also the number of sysCall_nonSimulation callback calls. Starting with V4.8, to be out in a few hours, you can modify this wi...
- 30 Oct 2024, 08:27
- Forum: General questions
- Topic: I cant make simIK work in python
- Replies: 5
- Views: 135
Re: I cant make simIK work in python
The best is really to upgrade to V4.8, since most things are inter-connected. V4.8 should be out within a few hours.
Cheers
Cheers
- 30 Oct 2024, 08:25
- Forum: General questions
- Topic: How to reduce the time of ‘Simulation scripts called’.
- Replies: 3
- Views: 99
Re: How to reduce the time of ‘Simulation scripts called’.
Try to identify what takes most simulation time. If it is e.g. vision, then you can try to acquire images less frequently by setting the vision sensors to explicit handling then explicitly calling sim.handleVisionSensor upon then when a new image is required, which might be much less frequent than t...