summaryrefslogtreecommitdiff
path: root/1628/CH2/EX2.11
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1628/CH2/EX2.11
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1628/CH2/EX2.11')
-rwxr-xr-x1628/CH2/EX2.11/Ex2_11.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/1628/CH2/EX2.11/Ex2_11.sce b/1628/CH2/EX2.11/Ex2_11.sce
new file mode 100755
index 000000000..e5ac45790
--- /dev/null
+++ b/1628/CH2/EX2.11/Ex2_11.sce
@@ -0,0 +1,20 @@
+
+
+ // Example 2.11
+
+ // To convet Pi- Section in to T- Section.
+ // We have to Find Ra, Rb & Rc for T-Section
+R2=9; // Resistance of 9 Ohms
+R3=6; // Resistance of 6 Ohms
+R1=3; // Resistance of 3 Ohms
+
+Ra=(R2*R3)/(R1+R2+R3);
+disp(' Value of Ra is = '+string(Ra)+' Ohm');
+Rb=(R1*R3)/(R1+R2+R3);
+disp(' Value of Rc is = '+string(Rb)+' Ohm');
+Rc=(R2*R1)/(R1+R2+R3);
+disp(' Value of Rc is = '+string(Rc)+' Ohm');
+
+
+
+ // p 26 2.11