diff options
Diffstat (limited to '196/CH6/EX6.5')
-rwxr-xr-x | 196/CH6/EX6.5/example_6_5.sce | 10 | ||||
-rwxr-xr-x | 196/CH6/EX6.5/result_6_5.txt | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/196/CH6/EX6.5/example_6_5.sce b/196/CH6/EX6.5/example_6_5.sce new file mode 100755 index 000000000..c11662443 --- /dev/null +++ b/196/CH6/EX6.5/example_6_5.sce @@ -0,0 +1,10 @@ +//Chapter 6
+//Example 6-5
+//ProbOnDurationOfOutputPulse
+//Page 155
+clear;clc;
+//Given
+Rf = 100*10^3 ;//Feedback Resistance
+C = 0.1*10^-6 ;
+t = (Rf * C)/ 5 ;
+printf ( "\n\n Duration of output pulse of one-shot = %.4f sec ", t )
\ No newline at end of file diff --git a/196/CH6/EX6.5/result_6_5.txt b/196/CH6/EX6.5/result_6_5.txt new file mode 100755 index 000000000..7d97910ed --- /dev/null +++ b/196/CH6/EX6.5/result_6_5.txt @@ -0,0 +1 @@ + Duration of output pulse of one-shot = 0.0020 sec
\ No newline at end of file |