From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1427/CH18/EX18.40/18_40.sce | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 1427/CH18/EX18.40/18_40.sce (limited to '1427/CH18/EX18.40') 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); -- cgit