summaryrefslogtreecommitdiff
path: root/1523/CH2/EX2.3
diff options
context:
space:
mode:
Diffstat (limited to '1523/CH2/EX2.3')
-rwxr-xr-x1523/CH2/EX2.3/2_3.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/1523/CH2/EX2.3/2_3.sce b/1523/CH2/EX2.3/2_3.sce
new file mode 100755
index 000000000..1dcc94197
--- /dev/null
+++ b/1523/CH2/EX2.3/2_3.sce
@@ -0,0 +1,17 @@
+//Network Theorem-1
+//pg no.-2.7
+//example2.3
+a=4;
+b=3;
+c=6;
+//star to delta conversion
+R1=c+a+((a*c)/b);
+R2=c+b+((c*b)/a);
+R3=a+b+((a*b)/c);
+x=1.35;
+y=0.9;
+RAB=(c*(x+y))/(c+x+y);
+printf("\nR1 = %.f Ohm",R1);
+printf("\nR2 = %.1f Ohm",R2);
+printf("\nR3 = %.f Ohm",R3);
+printf("\nThe network can be simplified as, \nRAB = %.2f Ohm",RAB);