Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2011-08-25 18:22:27 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2011-08-25 18:22:27 (GMT)
commitca967f89dc3a649caca9ca1226d24fd03a14d25e (patch)
tree5f4707db5734dc7bf81c6ebf7c19fe4f0a255630
parentc9b35191c3f3195bdbea47ee6918665e28c38d2a (diff)
v25
-rw-r--r--activity/activity.info2
-rw-r--r--arange.py18
2 files changed, 11 insertions, 9 deletions
diff --git a/activity/activity.info b/activity/activity.info
index 6ec5d07..e1b2f5a 100644
--- a/activity/activity.info
+++ b/activity/activity.info
@@ -3,6 +3,6 @@ name = Distance
bundle_id = org.laptop.AcousticMeasure
exec = sugar-activity activity.AcousticMeasureActivity
icon = activity-acousticmeasure
-activity_version = 24
+activity_version = 25
license = GPLv2+
show_launcher = yes
diff --git a/arange.py b/arange.py
index 8dffb11..4a0e096 100644
--- a/arange.py
+++ b/arange.py
@@ -122,6 +122,7 @@ def LFSR(R, taps, m):
R[0] = next
return o
+
def write_wav(o):
"""
Writes a [0,1]-scaled array o into the left channel of a 8-bit stereo
@@ -129,19 +130,20 @@ def write_wav(o):
"""
f = tempfile.NamedTemporaryFile(mode='wb', prefix='out')
w = wave.open(f)
- w.setparams((2,1,REC_HZ,0, 'NONE', 'NONE'))
+ w.setparams((2, 1, REC_HZ, 0, 'NONE', 'NONE'))
n = num.size(o)
q = num.zeros((2*n), num.uint8)
q[::2] = o*255
q[1::2] = 128
w.writeframes(q.tostring())
- return f
+ return
def play_wav_alsa(fname):
subprocess.call(["/usr/bin/aplay", fname])
play_wav = play_wav_alsa
+
def record_while_playing(play_name, t):
"""
This function starts recording, plays the file named 'play_name',
@@ -209,7 +211,7 @@ def cross_cov(a, b, a_id=None):
"""computes the cross-covariance of signals in a and b"""
assert (a.ndim == 1) and (b.ndim == 1)
n = max(a.size, b.size)
- n2 = 2**int(math.ceil(math.log(n,2))) #power of 2 >=n
+ n2 = 2**int(math.ceil(math.log(n,2))) # power of 2 >=n
if a_id is not None:
if cache_dict.has_key(('fft', a_id, n2)):
fa = cache_dict[('fft', a_id, n2)]
@@ -363,7 +365,7 @@ def measure_dt_simul(s, am_server):
(pipeline, rec_wav_file) = start_recording()
playing_command = 'playing'
- rectime = 5 #seconds
+ rectime = 5 # seconds
if am_server:
received = recvmsg(s, playing_command)
assert received
@@ -425,9 +427,9 @@ def measure_dt_seq(s, am_server, send_signal=False):
cache_dict[('mls_rev',MLS_INDEX)] = mls_rev
if am_server:
- mls_wav_file = write_wav(mls)
+ mls_wav_file = write_wav(mls)
else:
- mls_wav_file = write_wav(mls_rev)
+ mls_wav_file = write_wav(mls_rev)
if send_signal:
send_signal('waiting')
@@ -463,7 +465,7 @@ def measure_dt_seq(s, am_server, send_signal=False):
time.sleep(amp_ringdown)
handoff_command = 'your turn'
- ringdown = 0.3 #seconds
+ ringdown = 0.3 # seconds
if am_server:
print "about to play_wav"
play_wav_alsa(mls_wav_file.name)
@@ -576,7 +578,7 @@ def speed_of_sound(t=25.0, h=0.6, p=101325.0, x_c=0.0004):
f = 1.00062 + 3.14e-8*p + 5.6e-7*t2
psv = math.exp(1.2811805e-5*(T**2) - 1.9509874e-2*T \
- + 34.04926034 - 6.3536311e3/T) #Pa
+ + 34.04926034 - 6.3536311e3/T) # Pa
x_w = h*f*psv/p
return a0 + a1*t + a2*t2 + (a3 + a4*t +a5*t2)*x_w \