summaryrefslogtreecommitdiff
path: root/3751/CH16/EX16.10/Ex16_10.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3751/CH16/EX16.10/Ex16_10.sce
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 '3751/CH16/EX16.10/Ex16_10.sce')
-rw-r--r--3751/CH16/EX16.10/Ex16_10.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/3751/CH16/EX16.10/Ex16_10.sce b/3751/CH16/EX16.10/Ex16_10.sce
new file mode 100644
index 000000000..5539e21dc
--- /dev/null
+++ b/3751/CH16/EX16.10/Ex16_10.sce
@@ -0,0 +1,33 @@
+//Fluid Systems - By Shiv Kumar
+//Chapter 16- Hydraulic Power and Its Transmissions
+//Example 16.10
+//To Find (i)The Weight of Loaded Cylinder and energy stored by the Cylinder (ii)Ther Power supplied by the Accumulator (iii)The Diameter of ram of an ordinary Accumulator.
+ clc
+ clear
+
+//Given Data:-
+ D=180; // mm
+ d=150; //mm
+ L=1.25; //Stroke length, m
+ p=100; //Pressure of Water, bar
+
+//Computations:-
+ D=D/1000; //m
+ d=d/1000; //m
+ p=p*10^5; //N/m^2
+
+ A=(%pi/4)*(D^2-d^2); //Annular area of Ram, m^2
+ //(i)
+ W=p*A/1000; //Weight of Loaded Cylinder, kN
+ Energy=W*L; //Energy stored in the Accumulator, kNm
+ //(ii)
+ t=90; //Time taken by ram to complete the stroke, seconds
+ P=W*L/t; //kW
+ //(iii)
+ D=(W*1000/(p*%pi/4))^(1/2)*1000; //mm
+
+//Results:-
+ printf("(i)Weight of Loaded Cylinder, W=%.2f kN\n",W) //The answer vary due to round off error
+ printf(" Energy stored in the Accumulator=%.3f kNm\n",Energy) //The answer vary due to round off error
+ printf("(ii)Power Supplied by the Accumulator=%.3f kW\n",P) //The answer vary due to round off error
+ printf("(iii)Ram Diameter (In case of Ordinary Accumulator) = %.2f mm\n",D) //The answer vary due to round off error