summaryrefslogtreecommitdiff
path: root/1319/CH11/EX11.1
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1319/CH11/EX11.1
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 '1319/CH11/EX11.1')
-rw-r--r--1319/CH11/EX11.1/11_1.jpgbin0 -> 135967 bytes
-rw-r--r--1319/CH11/EX11.1/11_1.sce24
2 files changed, 24 insertions, 0 deletions
diff --git a/1319/CH11/EX11.1/11_1.jpg b/1319/CH11/EX11.1/11_1.jpg
new file mode 100644
index 000000000..6a00b2096
--- /dev/null
+++ b/1319/CH11/EX11.1/11_1.jpg
Binary files differ
diff --git a/1319/CH11/EX11.1/11_1.sce b/1319/CH11/EX11.1/11_1.sce
new file mode 100644
index 000000000..38f9a48e6
--- /dev/null
+++ b/1319/CH11/EX11.1/11_1.sce
@@ -0,0 +1,24 @@
+// Determine the size of the conductor for power and lighting circuit
+
+clc;
+clear;
+
+P5=3*800; // Load wattage in 5A circuit
+P15=2*1500;// Load wattage in 15 A circuit
+
+Pt=P5+P15; // Total Load
+
+// Assume a average of 0.8 pf, common for distribution systems
+
+pf=0.8;
+
+V=230; // Supply voltage
+
+I=Pt/(V*pf); // Current at 230 supply
+
+Isc=1.5*I; // Short Circuit Current
+
+printf('The Current is %g A and the short circuit current is %g A\n\n',I,Isc)
+printf('From the result sheet provided along with this code,\n for aluminium wire the size of the conductor comes out to be 25 mm^2.\nIn fact for 43 A it is 16 mm^2 but we should always go for one higher size of the conductor\n and hence we select conductor of size 25 mm^2 or 7/2.24 mm.')
+printf('\n \n Refer the table in the result sheet \n')
+