diff options
Diffstat (limited to '1967/CH11/EX11.3')
-rwxr-xr-x | 1967/CH11/EX11.3/11_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1967/CH11/EX11.3/11_3.sce b/1967/CH11/EX11.3/11_3.sce new file mode 100755 index 000000000..e9d231b14 --- /dev/null +++ b/1967/CH11/EX11.3/11_3.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+clear
+T= 100 //C
+j= 0.0242 //cal cc^-1 atm6-1
+k= 539 //cal g^-1
+p= 1664 //cc g^-1
+//CALCULATIONS
+r= (273.2+T)*(p-1)*j/k
+//RESULTS
+printf ('Rise in temperature per unit of pressure= %.1f deg atm^-1',r)
|