diff options
Diffstat (limited to '1655/CH7/EX7.8.2/Example_7_8_2.sce')
-rwxr-xr-x | 1655/CH7/EX7.8.2/Example_7_8_2.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1655/CH7/EX7.8.2/Example_7_8_2.sce b/1655/CH7/EX7.8.2/Example_7_8_2.sce new file mode 100755 index 000000000..5b6c09f4d --- /dev/null +++ b/1655/CH7/EX7.8.2/Example_7_8_2.sce @@ -0,0 +1,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
|