diff options
Diffstat (limited to '1286/CH10/EX10.13')
-rwxr-xr-x | 1286/CH10/EX10.13/10_13.sce | 13 |
1 files changed, 13 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)
|