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 --- 1709/CH2/EX2.1/2_1.sce | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 1709/CH2/EX2.1/2_1.sce (limited to '1709/CH2/EX2.1/2_1.sce') diff --git a/1709/CH2/EX2.1/2_1.sce b/1709/CH2/EX2.1/2_1.sce new file mode 100755 index 000000000..462e82096 --- /dev/null +++ b/1709/CH2/EX2.1/2_1.sce @@ -0,0 +1,11 @@ +clc +//Initialization of variables +P1=200 //psia +P2=15 //psia +V1=1 //ft^3 +g=1.3 +//calculations +V2=V1*(P1/P2)^(1/g) +W=-(144*(P2*V2 - P1*V1)/(g-1)) +//results +printf("Work done = %.2e ft. lbf",W) -- cgit