summaryrefslogtreecommitdiff
path: root/3682/CH8/EX8.1/Ex8_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3682/CH8/EX8.1/Ex8_1.sce')
-rw-r--r--3682/CH8/EX8.1/Ex8_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3682/CH8/EX8.1/Ex8_1.sce b/3682/CH8/EX8.1/Ex8_1.sce
new file mode 100644
index 000000000..9638c817b
--- /dev/null
+++ b/3682/CH8/EX8.1/Ex8_1.sce
@@ -0,0 +1,16 @@
+// Exa 8.1
+
+clc;
+clear;
+
+// Given data
+
+// Monostable multivibrator
+R=100*10^3; // Ω
+T=100*10^-3; // Time delay (sec)
+
+// Solution
+printf(' Using Eqn.(8.2) on page no.313, we get,');
+//T= 1.1*R*C;
+C=T/(1.11*R);
+printf(' C = %.1f μF.\n From the graph of Fig.8.6 on page no. 314, the value of C is found to be 0.9 μF also.\n',C*10^6);