Plot Planck's law for Black Body radiation and compare it with Wein's Law and Raleigh-Jeans Law at high temperature (room temperature) and low temperature using Python
INPUT :- #SAYANTAN DATTA / 6TH SEM / ROLL-074 #DATE - 08-04-2022 import numpy as np import matplotlib.pyplot as plt h=6.626e-34 k=1.38e-23 pi=3.14159 c=3e8 l1=float(input("Enter the value of lower wavelength = ")) l2=float(input("Enter the value of higher wavelength = ")) lw0=float(input("Give an upper limit of wavelength value for Wiens = ")) lr0=float(input("Give the lower limit of wavelength value for Rayleigh Jeans = ")) T1=float(input("Give the first value of temperature in Kelvin = ")) T2=float(input("Give the second value of temperature in Kelvin = ")) T3=float(input("Give the third value of temperature in Kelvin = ")) l=np.linspace(l1,l2,1000) lw=np.linspace(l1,lw0,1000) lr=np.linspace(lr0,l2,1000) def p(l,T): y=h*c/(l*k*T) x=np.exp(y) return (8*pi*h*c)/((l**5)*(x-1)) def w(lw,T): y=h*c/(lw*k*T) x=np.exp(y)...