summaryrefslogtreecommitdiff
path: root/3557/CH7/EX7.1/Ex7_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3557/CH7/EX7.1/Ex7_1.sce')
-rw-r--r--3557/CH7/EX7.1/Ex7_1.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3557/CH7/EX7.1/Ex7_1.sce b/3557/CH7/EX7.1/Ex7_1.sce
new file mode 100644
index 000000000..8d566e9e1
--- /dev/null
+++ b/3557/CH7/EX7.1/Ex7_1.sce
@@ -0,0 +1,11 @@
+//Example 7.1//
+
+R=8.314;//J/mol.K // Gas constant (From appendix 3)
+a=3*R
+mprintf("a = %f J/mol K",a)
+//for aluminum there are 26.98 g per g-atom
+b=1;//mol //
+c=26.98;//g //grams // atomic mass of aluminium (From appendix 1)
+d=1000;//g/kg
+a1=a*(b/c)*d
+mprintf("\n a1 = %i J/kg.K",a1)