diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1862/CH11/EX11.3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1862/CH11/EX11.3')
-rwxr-xr-x | 1862/CH11/EX11.3/C11P3.sce | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/1862/CH11/EX11.3/C11P3.sce b/1862/CH11/EX11.3/C11P3.sce new file mode 100755 index 000000000..1f6948fc8 --- /dev/null +++ b/1862/CH11/EX11.3/C11P3.sce @@ -0,0 +1,37 @@ +
+clear
+ clc
+//to find average power must be applied by the elevator motor
+
+// GIVEN::
+
+//weight of elevator
+w = 5160//in N
+//average weight of passenger
+wp = 710//in N
+//number of passengers
+n = 20
+//distance between floors
+sf = 3.5//in meters
+//time elasped
+t = 18//in seconds
+//acceleration due to gravity
+g = 9.8//in m/s^2
+
+// SOLUTION:
+
+//total weight of elevator and passenger
+//upward force exerted by motor
+F = w+n*wp//in N
+//total height by which elevator moves
+s = sf*25//in meters
+//work done must be applied by the elevator motor
+W = F*s//in J
+//average power
+Pav = (W/t)*10^-3//in kW
+
+//value of force F is slightly different than scilab answer
+//but silab answer is same as calculator answer
+printf ("\n\n Upward force exerted by motor F = \n\n %5i N",F);
+printf ("\n\n Work done must be applied by the elevator motor W = \n\n %.1e J",W);
+printf ("\n\n Average power Pav = \n\n %2i kW",Pav);
|