summaryrefslogtreecommitdiff
path: root/2465/CH4/EX4.11/Ex4_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '2465/CH4/EX4.11/Ex4_11.sce')
-rw-r--r--2465/CH4/EX4.11/Ex4_11.sce17
1 files changed, 0 insertions, 17 deletions
diff --git a/2465/CH4/EX4.11/Ex4_11.sce b/2465/CH4/EX4.11/Ex4_11.sce
deleted file mode 100644
index da8cc6183..000000000
--- a/2465/CH4/EX4.11/Ex4_11.sce
+++ /dev/null
@@ -1,17 +0,0 @@
-//Chapter-4,Example 11,Page 96
-clc;
-close;
-
-R= 8.31 //gas constant
-
-T= 273+25 // temperature in Kelvin
-
-P1= 2 //pressure in atm
-
-P2= 1 //pressure in atm
-
-w= 2.303 *R*T*log10(P1/P2) //maximum work
-
-printf('maximum work done is %.f J', w)
-
-//mistake in textbook