summaryrefslogtreecommitdiff
path: root/1859/CH7/EX7.16
diff options
context:
space:
mode:
Diffstat (limited to '1859/CH7/EX7.16')
-rwxr-xr-x1859/CH7/EX7.16/exa_7_16.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1859/CH7/EX7.16/exa_7_16.sce b/1859/CH7/EX7.16/exa_7_16.sce
new file mode 100755
index 000000000..0c3d87d37
--- /dev/null
+++ b/1859/CH7/EX7.16/exa_7_16.sce
@@ -0,0 +1,16 @@
+// Exa 7.16
+clc;
+clear;
+close;
+// Given data
+r= 500;// in ohm
+R2= 400;// in ohm
+R3= 400;//in ohm
+R4= 400;//in ohm
+C= 2;// in miu F
+C= C*10^-6;// in F
+R= R2*R3/R4;// in ohm
+disp(R,"Resistance of AB in ohm")
+ L= C*R2/R4*(r*(R3+R4)+R3*R4);// in H
+ disp(L,"Inductance of AB in H")
+