summaryrefslogtreecommitdiff
path: root/1427/CH25/EX25.15/25_15.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH25/EX25.15/25_15.sce')
-rw-r--r--1427/CH25/EX25.15/25_15.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH25/EX25.15/25_15.sce b/1427/CH25/EX25.15/25_15.sce
new file mode 100644
index 000000000..d3a68c181
--- /dev/null
+++ b/1427/CH25/EX25.15/25_15.sce
@@ -0,0 +1,8 @@
+//ques-25.15
+//Calculating Boyles temperature for Carbon monoxide gas
+clc
+a=3.59;//(in L^2 atm/mol^2)
+b=0.0427;//(in L/mol)
+R=0.0821;//(in L atm/mol/K)
+Tb=a/(R*b);
+printf("Boyles temperature required is %d K.",Tb);