WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 03-13-2009, 09:05 AM
durf durf is offline
Member
 
Join Date: Feb 2009
Posts: 61
Calculating Speed with sensor

Hello,

Right now I am trying to figure out how to calculate speed with a sensor. I know that speed is the rate of change with respect to time. So change of position / time.

I know I need to get the position(pos) of the sensor first. Then i have to have a def: that will check for its new pos then do the calculation - (new pos - old pos) / time. Then after that I need to start over and set the new pos to old pos.

The problem im having is trying to establish a pos before the def: starts running. Whenever I test for the old position i keep getting 0.0, 0.0, 0.0.

So its going to look something like this:
Code:
import viz
viz.go()

PORT_PPT = 6

for x in range(1):
     #Create sensors
     ppt1 = viz.add('vizppt.dls')
     ppt2 = viz.add('vizppt.dls')

     ball1 = viz.add('white_vall.wrl')
     ball1.scale(1,1,1)
     ballLink1 = viz.link(ppt1, ball1)

     ball2 = viz.add('white_vall.wrl')
     ball2.scale(1,1,1)
     ballLink2 = viz.link(ppt2, ball2)
 
     #controls distance in virtual world
     ballLink1.postScale([8,1,13],target = viz.LINK_FULL_OP)
     ballLink2.postScale([8,1,13],target = viz.LINK_FULL_OP)

#I need to check for ball1 pos before here
def speed():
      #need to check for new pos for ball1 here
      #need to somehow get old pos of ball1 so i can do the equation 
      #new pos - old pos /2(=1/2 second)
      if speed > 1:
           #some reaction happens in here
      #need to set old pos = new pos

vizact.ontimer(.5, speed)
Ive been trying to write this to work without errors but i keep getting them. I still new to vizard and python so any explanation would help also.

Thanks
Reply With Quote
  #2  
Old 03-13-2009, 10:25 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Here is a sample function that takes any sensor object and calculates the speed of it:
Code:
import viz
viz.go()

sensor = viz.add('testtrack_all.dls')

def CalculateSpeed(obj):
	
	#Get current and last position
	current_pos = obj.getPosition()
	last_pos = getattr(obj,'last_pos',None)
	
	if last_pos is None:
		#This is first call, so save position and set speed to 0
		obj.last_pos = current_pos
		obj.speed = 0.0
	else:
		#Compute speed using last position
		obj.speed = vizmat.Distance(current_pos,last_pos) / viz.elapsed()
		obj.last_pos = current_pos
		
	print obj.speed
	
vizact.ontimer(0,CalculateSpeed,sensor)
Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating a Vizard Sensor Plugin farshizzo Plug-in development 25 08-01-2019 12:24 AM
speed on animation path whj Vizard 8 11-17-2008 07:41 PM
wiimote and sensor bar masaki Vizard 1 03-06-2008 03:07 PM
Multiple Copies of same sensor plugin RedSpikeyThing Plug-in development 2 02-12-2008 02:10 PM
using sensor data in Physics1.py Eunice Vizard 4 01-03-2006 05:18 AM


All times are GMT -7. The time now is 07:24 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC