1: Boltzmann Last updated Mar 26, 2025 Save as PDF Licensing 2: Boltzmann Statistics Page ID206298 ( \newcommand{\kernel}{\mathrm{null}\,}\) xxxxxxxxxx from matplotlib import pyplot as pltimport numpy as npk=0.695 #In wavenumbers/K. We can change it to other units if we want to use $\varepsilon$ in other units such as 1.38x10^-23 J/KNa=6.022045*10**23h=6.262e-34c=2.9979e10def q(eps,T): sum=0 for i in range(0,len(eps)): sum+=np.exp(-eps[i]/k/T) return sumT=np.arange(1,1500,1)#@title Default title textupperlevelenergy = 500#@param {type:"integer"}eps1=[0,upperlevelenergy] #energy levels at 0 and 50 cm^-1plt.plot(T,q(eps1,T))plt.ylim(1,2)runrestartrestart & run all Code 1.1 (Python): xxxxxxxxxx y=3print(y)runrestartrestart & run all