diff options
Diffstat (limited to '1850/CH7/EX7.8/exa_7_8.sce')
-rwxr-xr-x | 1850/CH7/EX7.8/exa_7_8.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1850/CH7/EX7.8/exa_7_8.sce b/1850/CH7/EX7.8/exa_7_8.sce new file mode 100755 index 000000000..ade7cc038 --- /dev/null +++ b/1850/CH7/EX7.8/exa_7_8.sce @@ -0,0 +1,15 @@ +// Exa 7.8
+clc;
+clear;
+close;
+//given data
+fo= 1.5;// in kHz
+fo=fo*10^3;// in Hz
+
+C= 0.01;// 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")
|