summaryrefslogtreecommitdiff
path: root/147/CH1/EX1.6
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /147/CH1/EX1.6
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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')
-rw-r--r--147/CH1/EX1.6/Example1_6.sce23
-rw-r--r--147/CH1/EX1.6/Result1_6.txt1
2 files changed, 24 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
diff --git a/147/CH1/EX1.6/Result1_6.txt b/147/CH1/EX1.6/Result1_6.txt
new file mode 100644
index 000000000..f9e19c34f
--- /dev/null
+++ b/147/CH1/EX1.6/Result1_6.txt
@@ -0,0 +1 @@
+Rate of heat produced by pad, H = 54.54 W \ No newline at end of file