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 /1319/CH11/EX11.1 | |
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 '1319/CH11/EX11.1')
-rw-r--r-- | 1319/CH11/EX11.1/11_1.jpg | bin | 0 -> 135967 bytes | |||
-rw-r--r-- | 1319/CH11/EX11.1/11_1.sce | 24 |
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 Binary files differnew file mode 100644 index 000000000..6a00b2096 --- /dev/null +++ b/1319/CH11/EX11.1/11_1.jpg 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')
+
|