diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1628/CH2/EX2.6/Ex2_6.sce | |
download | Scilab-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.6/Ex2_6.sce')
-rwxr-xr-x | 1628/CH2/EX2.6/Ex2_6.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/1628/CH2/EX2.6/Ex2_6.sce b/1628/CH2/EX2.6/Ex2_6.sce new file mode 100755 index 000000000..0b9e84e85 --- /dev/null +++ b/1628/CH2/EX2.6/Ex2_6.sce @@ -0,0 +1,22 @@ + + // Example 2.6 + +d=(1/12)+(1/20)+(1/30); +Reff=2+(1/d); // Effective Resisrence +v=100; +I=v/Reff; + // ( but 12 i1= 20i2= 30i3 ) + // i2= 12/20 *i1 & i3= 12/30 *i1 + // but 10=i1+i2+i3 + // 0.6i1+0.4i1+i1=10 i.e i1=5 +i1=5; +disp(' Current of I1 if = '+string(i1)+' Amp'); +i2=0.6*i1; +disp(' Current of I2 if = '+string(i2)+' Amp'); +i3=0.4*i1; +disp(' Current of I3 if = '+string(i3)+' Amp'); + + + + // p 24 2.6 + |