blob: aed3ceebeb04ad7d41739569b33d74ad64cf5848 (
plain)
1
2
3
4
5
6
7
8
9
|
//Chapter 1: Structure and Bonding
//Problem: 20
clc;
B_O = (9 - 4) / 2.0 // Bond order of N2+
printf( "MO configuration of N2+ is\n")
printf(" σ(1s2)σ*(1s2)σ(2s2)σ*(2s2) [π(2px2) = π(2py2)] σ(2pz1)\n")
printf("\n The Bond order of N2+, 1/2[Nb - Na] =%.1f", B_O)
|