summaryrefslogtreecommitdiff
path: root/1427/CH18/EX18.40/18_40.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH18/EX18.40/18_40.sce')
-rw-r--r--1427/CH18/EX18.40/18_40.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1427/CH18/EX18.40/18_40.sce b/1427/CH18/EX18.40/18_40.sce
new file mode 100644
index 000000000..8e3c8dbdd
--- /dev/null
+++ b/1427/CH18/EX18.40/18_40.sce
@@ -0,0 +1,10 @@
+//ques-18.40
+//Calculating final pressure and temperature on expansion of a dry gas
+clc
+T1=273;//temperature (in K)
+r=3;//ratio = V2/V1
+P1=760;//pressure (in mm Hg)
+q=1.4;
+T2=T1/(r^(q-1));
+P2=P1/(r^q);
+printf("Final pressure is %.1f atm and final temperature is %.0f K.",P2,T2);