Is it possible to load a excisting program in the VM simulator ? I have an excisting program on a flash drive. How do i load it in the VM simulator ?
Regards
Is it possible to load a excisting program in the VM simulator ? I have an excisting program on a flash drive. How do i load it in the VM simulator ?
Regards
It is possible to copy the urp files from windows to linux.
Is the vmtools installed?
A UR program usually has 3 files: with the .urp, .txt and .script extensions. You can copy-paste those files in the VM through different methods:
Thank you. I am a step further.
I have a pallet stacking application. I have managed to run the program in the simulator.
get the error can not resolve this.
Robot is a UR3 latest firmware. The program does work in the robot but not in the sim.
any idea’s ?
could it be that you have different default or active TCPs on the URsim and the real robot? Have you transferred and loaded the installation files too? You can do it the same way as with the program files.
Yes i have loaded the installation file as well.
I get the error in both ur3 sim and ur5 sim
Found the issue. I have to choose UR10 because of its size in sim ur3.
In the program the robot waits for a digital input to become true. How do i manipulate an input ?
I don’t think you can edit a digital input, but you can assign it to a variable and manipulate the variable. For example:
# classic approach
while (not get_standard_digital(0)):
sleep(1)
end
# alternative approach
global simulation_active = True
global sensor1 = False
global sensor2 = False
def update_inputs():
if not simulation active:
sensor1 = get_standard_digital(0)
sensor2 = get_standard_digital(1)
else:
sensor1 = True
sensor2 = Flase
end
end
while not sensor1:
update_inputs()
sleep(1)
end
You can run the URsim polyscope in ‘simulation’ mode and then you can switch to the IO tab in polyscope and toggle an input on/off.