diff options
Diffstat (limited to '2120/CH4/EX4.2/ex4_2.sce')
-rwxr-xr-x | 2120/CH4/EX4.2/ex4_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2120/CH4/EX4.2/ex4_2.sce b/2120/CH4/EX4.2/ex4_2.sce new file mode 100755 index 000000000..5cd74760c --- /dev/null +++ b/2120/CH4/EX4.2/ex4_2.sce @@ -0,0 +1,16 @@ +// Exa 4.2
+clc;
+clear;
+close;
+// Given data
+// w = 2*g*h
+g = 9.81;
+m =(0.2+10/1000)*10^3 ;// in gm
+s = 1;// in cal/gm°C
+del_T = 2;// in °C
+H = m * s * del_T;// in cal
+H = H * 10^-3;// kcal
+J = 4.1868 * 1000;
+// W= 2*g*h= J*H
+h = J*H/(2 * g);// in m
+disp(h,"Height from which the mass should fall in meter is : ");
|