summaryrefslogtreecommitdiff
path: root/182/CH9/EX9.6
diff options
context:
space:
mode:
Diffstat (limited to '182/CH9/EX9.6')
-rwxr-xr-x182/CH9/EX9.6/9_6.txt2
-rwxr-xr-x182/CH9/EX9.6/example9_6.sce9
2 files changed, 11 insertions, 0 deletions
diff --git a/182/CH9/EX9.6/9_6.txt b/182/CH9/EX9.6/9_6.txt
new file mode 100755
index 000000000..d1fa6fb09
--- /dev/null
+++ b/182/CH9/EX9.6/9_6.txt
@@ -0,0 +1,2 @@
+
+6.shortest pulse width=1.089 micro-second \ No newline at end of file
diff --git a/182/CH9/EX9.6/example9_6.sce b/182/CH9/EX9.6/example9_6.sce
new file mode 100755
index 000000000..838dc190e
--- /dev/null
+++ b/182/CH9/EX9.6/example9_6.sce
@@ -0,0 +1,9 @@
+// to find the shortest pulse width that can be displayed
+// example 9-6 in page 262
+clc;
+//DATA GIVEN
+Rs=3.3e+3; Ci=15D-12;// source resistance in ohm and input capacitance in farad
+//calculation
+printf("shortest pulse width=%.3f micro-second",10*Rs*Ci*2.2*10^6);//here shortest pulse width =10*tuo in seconds where tuo is the rise time imposed by the oscilloscope
+//result
+//shortest pulse width=1.089 micro-second \ No newline at end of file