diff options
Diffstat (limited to '3751/CH16/EX16.11/Ex16_11.sce')
-rw-r--r-- | 3751/CH16/EX16.11/Ex16_11.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3751/CH16/EX16.11/Ex16_11.sce b/3751/CH16/EX16.11/Ex16_11.sce new file mode 100644 index 000000000..207696186 --- /dev/null +++ b/3751/CH16/EX16.11/Ex16_11.sce @@ -0,0 +1,24 @@ +//Fluid Systems - By Shiv Kumar +//Chapter 16- Hydraulic Power and Its Transmissions +//Example 16.11 +//To Find the Diameters of Fixed ram and Sliding Cylinder. + clc + clear + +//Given Data:- + p1=50; //Pressure Intensity of Low Pressure Liquid, bar + p2=150; // Pressure Intensity of High Pressure Liquid, bar + Capacity=32; //Capacity of Intensifier, Litres + l=1.5; //Stroke Length, m + +//Computations:- + Capacity=Capacity/1000; //m^3 + + D2=sqrt(Capacity/((%pi/4)*l))*1000; //mm + D1=sqrt((p2/p1)*D2^2); //mm + +//Results:- + printf("Diameter of Fixed Cylinder, D2=%.2f mm\n",D2) //The answer vary due to round off error + printf("Diameter of Sliding Ram, D1=%.2f mm\n",D1) //The answer vary due to round off error + + |