diff options
Diffstat (limited to '3856/CH8/EX8.7/Ex8_7.sce')
-rw-r--r-- | 3856/CH8/EX8.7/Ex8_7.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3856/CH8/EX8.7/Ex8_7.sce b/3856/CH8/EX8.7/Ex8_7.sce new file mode 100644 index 000000000..3e0e79036 --- /dev/null +++ b/3856/CH8/EX8.7/Ex8_7.sce @@ -0,0 +1,18 @@ +//Expression for Chemical Potential of Mg3(PO4)2
+
+//Example 8.7
+
+clc;
+clear;
+
+v1=3;
+
+v2=2;
+
+v=5;
+
+mv=((v1^v1)*(v2^v2))^(1/v);
+
+printf("mu(Mg3(PO4)2) = mu0(Mg3(PO4)2)+ %.0f",v);
+
+printf("RTln(%.2fm)",mv);
|