summaryrefslogtreecommitdiff
path: root/3758/CH1/EX1.13
diff options
context:
space:
mode:
Diffstat (limited to '3758/CH1/EX1.13')
-rw-r--r--3758/CH1/EX1.13/Ex1_13.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/3758/CH1/EX1.13/Ex1_13.sce b/3758/CH1/EX1.13/Ex1_13.sce
new file mode 100644
index 000000000..9f2b6fdd4
--- /dev/null
+++ b/3758/CH1/EX1.13/Ex1_13.sce
@@ -0,0 +1,8 @@
+clc;
+p1=75; //intial pressure in kg/cm^2
+p2=140; //final pressure in kg/cm^2
+dp=(p2-p1); //calculating change in pressure
+dv=-0.147; //percentage decrease in volume
+v=100; //original volume in percentage
+k=dp/(dv/v); //calulating bulk modulus of elasticity
+printf('bulk modulus of elasticity of liquid is %f kg/cm^2',k);