summaryrefslogtreecommitdiff
path: root/3850/CH43/EX43.1
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH43/EX43.1')
-rw-r--r--3850/CH43/EX43.1/Example43_1.sce17
-rw-r--r--3850/CH43/EX43.1/Example43_1.txt1
2 files changed, 18 insertions, 0 deletions
diff --git a/3850/CH43/EX43.1/Example43_1.sce b/3850/CH43/EX43.1/Example43_1.sce
new file mode 100644
index 000000000..be97f6e3d
--- /dev/null
+++ b/3850/CH43/EX43.1/Example43_1.sce
@@ -0,0 +1,17 @@
+//Calculate the Energy of Helium ion its first excited state
+
+//Example 43.1
+
+clear;
+
+clc;
+
+Rhc=13.6;//Product of Rydberg's Constant, Plancks Constant and Speed of Light (Rhc) in eV
+
+Z=2;//Atomic Number for Helium Ion
+
+n=2;//First Excited State
+
+E=-Rhc*Z^2/n^2;//Energy of Helium Ion in the first excited state in eV
+
+printf("Energy of Helium Ion in the first excited state = %.1f eV",E);
diff --git a/3850/CH43/EX43.1/Example43_1.txt b/3850/CH43/EX43.1/Example43_1.txt
new file mode 100644
index 000000000..d4c09def7
--- /dev/null
+++ b/3850/CH43/EX43.1/Example43_1.txt
@@ -0,0 +1 @@
+ Energy of Helium Ion in the first excited state = -13.6 eV \ No newline at end of file