summaryrefslogtreecommitdiff
path: root/1709/CH2/EX2.1/2_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1709/CH2/EX2.1/2_1.sce')
-rwxr-xr-x1709/CH2/EX2.1/2_1.sce11
1 files changed, 11 insertions, 0 deletions
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)