summaryrefslogtreecommitdiff
path: root/3856/CH16/EX16.4/Ex16_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3856/CH16/EX16.4/Ex16_4.sce')
-rw-r--r--3856/CH16/EX16.4/Ex16_4.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3856/CH16/EX16.4/Ex16_4.sce b/3856/CH16/EX16.4/Ex16_4.sce
new file mode 100644
index 000000000..d9a94be92
--- /dev/null
+++ b/3856/CH16/EX16.4/Ex16_4.sce
@@ -0,0 +1,17 @@
+//Calculate the Potential Energy of Interaction between two Argon atoms
+
+//Example 16.4
+
+clc;
+
+clear;
+
+alpha=1.66*10^-30; //Proportionality constant in m^3
+
+I=1521; //Ionization energy of Argon in kJ mol^-1
+
+r=4.0*10^-10; //Distance between two Argon atoms
+
+V=-((3/4)*(alpha^2)*(I))/(r^6); //Potential energy of interaction between two Argon atoms in kJ mol^-1
+
+printf("Potential energy of interaction between two Argon atoms = %.2f kJ mol^-1",V);