summaryrefslogtreecommitdiff
path: root/3689/CH9/EX9.10/9_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3689/CH9/EX9.10/9_10.sce')
-rw-r--r--3689/CH9/EX9.10/9_10.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3689/CH9/EX9.10/9_10.sce b/3689/CH9/EX9.10/9_10.sce
new file mode 100644
index 000000000..308fcfd66
--- /dev/null
+++ b/3689/CH9/EX9.10/9_10.sce
@@ -0,0 +1,11 @@
+////Variable Declaration
+rho = 789.9 //Density of acetone, g/L
+n = 1.0 //moles of acetone, mol
+M = 58.08 //Molecular wt of acetone, g/mol
+kHacetone = 1950 //Henrys law constant, torr
+//Calculations
+H = n*M*kHacetone/rho
+
+//Results
+printf("\n Henrys constant = %5.2f torr",H)
+