summaryrefslogtreecommitdiff
path: root/1628/CH3/EX3.3/Ex3_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1628/CH3/EX3.3/Ex3_3.sce')
-rwxr-xr-x1628/CH3/EX3.3/Ex3_3.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/1628/CH3/EX3.3/Ex3_3.sce b/1628/CH3/EX3.3/Ex3_3.sce
new file mode 100755
index 000000000..c77016dad
--- /dev/null
+++ b/1628/CH3/EX3.3/Ex3_3.sce
@@ -0,0 +1,20 @@
+
+ // Examle 3.3
+
+ // Given L1= 2L2
+ // From the Diagram Leq= 0.5+ (L1*L2)/(L1+L2)
+ // there for (L1*L2)/(L1+L2)= 0.2 ,( where Leq= 0.7)
+ // i.e (2*L2*L2)/3L2= 0.2;
+ // it means L2= 0.3 H
+
+L2=0.3; // Value of Inductor 1
+L1=2*L2; // Value of Inductor 2
+disp(' Value of Inductors are L1= '+string(L1)+' H & L2= '+string(L2)+' H');
+
+
+
+
+
+
+ // p 55 3.3
+