diff options
Diffstat (limited to '196/CH6/EX6.2')
-rwxr-xr-x | 196/CH6/EX6.2/example_6_2.sce | 10 | ||||
-rwxr-xr-x | 196/CH6/EX6.2/result_6_2.txt | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/196/CH6/EX6.2/example_6_2.sce b/196/CH6/EX6.2/example_6_2.sce new file mode 100755 index 000000000..37f7dfc86 --- /dev/null +++ b/196/CH6/EX6.2/example_6_2.sce @@ -0,0 +1,10 @@ +//Chapter 6
+//Example 6-2
+//ProbOnMultivibrator
+//Page 151
+clear;clc;
+//Given
+Rf = 100*10^3;//Feedback Resistance
+C = 0.1*10^-6 ;
+T = 2 * Rf * C;
+printf ("\n\n Period = %.4f sec ", T )
\ No newline at end of file diff --git a/196/CH6/EX6.2/result_6_2.txt b/196/CH6/EX6.2/result_6_2.txt new file mode 100755 index 000000000..f25d4a818 --- /dev/null +++ b/196/CH6/EX6.2/result_6_2.txt @@ -0,0 +1 @@ +Period = 0.0200 sec
\ No newline at end of file |