From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 944/CH2/EX2.2/example2_2_TACC.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 944/CH2/EX2.2/example2_2_TACC.sce (limited to '944/CH2/EX2.2/example2_2_TACC.sce') diff --git a/944/CH2/EX2.2/example2_2_TACC.sce b/944/CH2/EX2.2/example2_2_TACC.sce new file mode 100755 index 000000000..6a1428d38 --- /dev/null +++ b/944/CH2/EX2.2/example2_2_TACC.sce @@ -0,0 +1,17 @@ +//example 2.2 + +clear; +clc; + +//Given: +m=16;//weight of oxygen [grams] +w=32;//molecular weight of oxygen [grams/mol] +T=300;//Temperature during compression [K] +P1=1;//initial pressure of process [atm] +P2=100;//final pressure of process[atm] +R=8.314;//Universal gas constant [J/K/mol] + +//To find the minimum work of compression +n=m/w;//no. of moles of oxygen +W=-n*R*T*log(P1/P2); +printf("Mininmum work done to compress oxygen = %f J " , W ) \ No newline at end of file -- cgit