diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /182/CH9/EX9.6/example9_6.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '182/CH9/EX9.6/example9_6.sce')
-rwxr-xr-x | 182/CH9/EX9.6/example9_6.sce | 9 |
1 files changed, 9 insertions, 0 deletions
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 |