summaryrefslogtreecommitdiff
path: root/3850/CH43/EX43.1/Example43_1.sce
blob: be97f6e3d7bf0d38116abe82bb439c4243e584ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);