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 /3733/CH32/EX32.19a | |
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 '3733/CH32/EX32.19a')
-rw-r--r-- | 3733/CH32/EX32.19a/Ex32_19a.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3733/CH32/EX32.19a/Ex32_19a.sce b/3733/CH32/EX32.19a/Ex32_19a.sce new file mode 100644 index 000000000..37ae4b670 --- /dev/null +++ b/3733/CH32/EX32.19a/Ex32_19a.sce @@ -0,0 +1,21 @@ +// Example 32_19a
+clc;funcprot(0);
+//Given data
+L_min=1;// MW
+L_max=sqrt(3);// MW
+P=2;// Plant capacity in MW
+N=26;// Number of working days per month
+h=8;// Number of working hours per day
+c=50;// Charges in Rs./kW
+c_d=2.5;// Charges in Rs./kW-hr
+
+// Calculation
+x_0=4;
+x_1=12;// Limits of integration
+L_av=(1/8)*integrate('(((1/2)*sqrt(x)))','x',x_0,x_1)*1000;// Average load on the plant in kW
+F_l=L_av/(L_max*1000);// Load factor
+CF=L_max/P;// Capacity factor
+E=L_av*N*h;// Energy consumption per month in kWhr
+Ec=(L_max*1000*c)+(E*c_d);// Electrical charges to be paid by the factory
+printf('\nLoad factor=%0.3f \nCapacity factor=%0.3f \nEnergy consumption per month=%0.0f kWhr \nElectrical charges to be paid by the factory=Rs.%0.0f',F_l,CF,E,Ec);
+// The answer provided in the textbook is wrong
|