Chapter 12 Recorders

Example 12.1 Page no 373

In [5]:
#Given
t=5                                    #second
s=40.0                                    #cycle

#Calculation
p=t/s
f=1/p

#Result
print"The frequency of the signal is ", f,"cycle/sec."
The frequency of the signal is  8.0 cycle/sec.

Example 12.2 Page no 373

In [10]:
#Given
f=20.0                                       #Hz
t=5                                         #mm

#Calculation
p=1/f
s=t/p

#Result
print"The chart speed isn", s,"mm/s"
The chart speed isn 100.0 mm/s