diff options
Diffstat (limited to '1286/CH10')
-rwxr-xr-x | 1286/CH10/EX10.13/10_13.sce | 13 | ||||
-rwxr-xr-x | 1286/CH10/EX10.7/10_7.sce | 11 | ||||
-rwxr-xr-x | 1286/CH10/EX10.8/10_8.sce | 11 |
3 files changed, 35 insertions, 0 deletions
diff --git a/1286/CH10/EX10.13/10_13.sce b/1286/CH10/EX10.13/10_13.sce new file mode 100755 index 000000000..4d656e7c4 --- /dev/null +++ b/1286/CH10/EX10.13/10_13.sce @@ -0,0 +1,13 @@ +clc
+//initialisation
+dq=540000
+dv=1.676
+T1=373//k
+T2=423//k
+p1=1//pa
+//CALCULATIONS
+dt=T2-T1
+dp=(dt*dq*4.2)/(dv*T1)
+p2=p1+(dp/10^5)
+//results
+printf(' \n required pressure= % 1f pa',p2)
diff --git a/1286/CH10/EX10.7/10_7.sce b/1286/CH10/EX10.7/10_7.sce new file mode 100755 index 000000000..ef6e38b02 --- /dev/null +++ b/1286/CH10/EX10.7/10_7.sce @@ -0,0 +1,11 @@ +clc
+//initialisation
+T=5+273//k
+v=10^-6//m3
+a=15*10^-6//k^-1
+cp=1005//cal/kg/k
+dp=(1000-0)*10^5//N/m2
+//CALCULATIONS
+dt=(T*a*v*dp)/(cp*4.2)
+//results
+printf(' \n temperature of water rises by= % 1f k',dt)
diff --git a/1286/CH10/EX10.8/10_8.sce b/1286/CH10/EX10.8/10_8.sce new file mode 100755 index 000000000..da866f6c6 --- /dev/null +++ b/1286/CH10/EX10.8/10_8.sce @@ -0,0 +1,11 @@ +clc
+//initialisation
+T=5+273//k
+v=10^-6//m3
+a=15*10^-6//k^-1
+cp=1005//cal/kg/k
+dp=(1000-0)*10^5//N/m2
+//CALCULATIONS
+q=(T*a*v*dp)/4.2
+//results
+printf(' \n quantity of heat given= % 1f cal',q)
|