summaryrefslogtreecommitdiff
path: root/1850/CH7/EX7.7/exa_7_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '1850/CH7/EX7.7/exa_7_7.sce')
-rwxr-xr-x1850/CH7/EX7.7/exa_7_7.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1850/CH7/EX7.7/exa_7_7.sce b/1850/CH7/EX7.7/exa_7_7.sce
new file mode 100755
index 000000000..ea0c1f66e
--- /dev/null
+++ b/1850/CH7/EX7.7/exa_7_7.sce
@@ -0,0 +1,13 @@
+// Exa 7.7
+clc;
+clear;
+close;
+//given data
+fo= 318;// in Hz
+C= 0.015;// in microF
+C=C*10^-6;// in F
+R=0.159/(fo*C);// in ohm
+R=R*10^-3;// in kohm
+R=floor(R);
+disp(C*10^6,"Value of C1, C2 and C3 in micro F");
+disp(R,"Value of R1, R2 and R3 in kohm")