summaryrefslogtreecommitdiff
path: root/1859/CH7/EX7.15/exa_7_15.sce
diff options
context:
space:
mode:
Diffstat (limited to '1859/CH7/EX7.15/exa_7_15.sce')
-rwxr-xr-x1859/CH7/EX7.15/exa_7_15.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1859/CH7/EX7.15/exa_7_15.sce b/1859/CH7/EX7.15/exa_7_15.sce
new file mode 100755
index 000000000..6ac28acc3
--- /dev/null
+++ b/1859/CH7/EX7.15/exa_7_15.sce
@@ -0,0 +1,16 @@
+// Exa 7.15
+clc;
+clear;
+close;
+// Given data
+r= 469;// in ohm
+R2= 1000;// in ohm
+R3= 218;//in ohm
+R4= 1000;//in ohm
+C= 10;// in miu F
+C= C*10^-6;// in F
+R1= R2*R3/R4;// in ohm
+disp(R1,"Resistance of inductor in ohm")
+ L1= C*R2/R4*(r*(R3+R4)+R3*R4);// in H
+ disp(L1,"Inductance of inductor in H")
+