diff options
Diffstat (limited to '2021/CH7/EX7.14/Ex7_14.sce')
-rwxr-xr-x | 2021/CH7/EX7.14/Ex7_14.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2021/CH7/EX7.14/Ex7_14.sce b/2021/CH7/EX7.14/Ex7_14.sce new file mode 100755 index 000000000..6a62c0219 --- /dev/null +++ b/2021/CH7/EX7.14/Ex7_14.sce @@ -0,0 +1,13 @@ +//Finding of Rise of Pressure
+//Given
+l=2000;
+d=0.6;
+v=2;
+t=20;
+k=19.62*10^8;
+rho=1000;
+//To Find
+c=sqrt(k/rho);
+p=rho*v*c
+p1=p/10000;
+disp("Rise of Pressure ="+string(p1)+"N/cm^2");
|