blob: 5b6c09f4d9d8ed2672ad200dabaeb61bcaadfc24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Example 7.8.2 page 7.39
clc;
clear;
w=20d-6; //width
v=4d4; //velocity
t=w/v; //computing drift time
BW=(2*%pi*t)^-1; //computing bandwidth
rt=1/BW; //computing response time
rt=rt*10^9;
printf("\nMaximum response time is %.1f ns.",rt);
printf("\nNOTE - Calculation error in the book.");
//Calculation error in the book, answer given is 6.2ns
|