diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /147/CH1/EX1.6/Example1_6.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '147/CH1/EX1.6/Example1_6.sce')
-rw-r--r-- | 147/CH1/EX1.6/Example1_6.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/147/CH1/EX1.6/Example1_6.sce b/147/CH1/EX1.6/Example1_6.sce new file mode 100644 index 000000000..97dcfd1dc --- /dev/null +++ b/147/CH1/EX1.6/Example1_6.sce @@ -0,0 +1,23 @@ +//Rating of electric heating pad Vr,Pr
+//Rating of bulbs Vbr,Pr
+close();
+clear;
+clc;
+Vr = 110;//V
+Pr = 55;//W
+V = 220;
+Vbr = 110;
+Pr1 = 25;
+Pr2 = 60;
+Pr3 = 75;
+Pr4 = 100;
+//Resistance of heating pad 'Rp'
+Rp = Vr^2/Pr;
+R1 = Vbr^2/Pr1;
+R2 = Vbr^2/Pr2;
+R3 = Vbr^2/Pr3;
+R4 = Vbr^2/Pr4;
+Rb = R4 + 1/2*R2;
+Ip = V/(Rp+Rb);
+H = Ip^2*Rp;
+mprintf('The possible combination is 100W bulb in series with parallel combination of two 60 W bulbs \nRate of heat produced by pad, H = %0.2f W',H);
\ No newline at end of file |