Search
- https://chem.libretexts.org/Courses/University_of_California_Davis/UCD_Chem_110A%3A_Physical_Chemistry__I/UCD_Chem_110A%3A_Physical_Chemistry_I_(Larsen)/Text/03%3A_The_Schrodinger_Equation_and_the_Particle-in-a-Box_Model/3.I%3A_Interactive_Worksheets
- https://chem.libretexts.org/Courses/University_of_California_Davis/UCD_Chem_110A%3A_Physical_Chemistry__I/UCD_Chem_110A%3A_Physical_Chemistry_I_(Larsen)/Text/03%3A_The_Schrodinger_Equation_and_the_Particle-in-a-Box_Model/3.I%3A_Interactive_Worksheets/3.I.3%3A_Particle_in_a_Finite_Potential_Box_(Python_Notebook)print ("\nThe bound Probability Densities are shown below \nwith the areas shaded in green showing the regions where the particle can tunnel outside the box") fig, ax = plt.subplots(figsize=(12,9)) ax...print ("\nThe bound Probability Densities are shown below \nwith the areas shaded in green showing the regions where the particle can tunnel outside the box") fig, ax = plt.subplots(figsize=(12,9)) ax.spines['right'].set_color('none') ax.xaxis.tick_bottom() ax.spines['left'].set_color('none') ax.axes.get_yaxis().set_visible(False) ax.spines['top'].set_color('none') X_lef = np.linspace(-L, -L/2.0, 900,endpoint=True) X_mid = np.linspace(-L/2.0, L/2.0, 900,endpoint=True) X_rig = np.linspace(L/2.0,…
- https://chem.libretexts.org/Courses/University_of_California_Davis/UCD_Chem_110A%3A_Physical_Chemistry__I/UCD_Chem_110A%3A_Physical_Chemistry_I_(Larsen)/Text/03%3A_The_Schrodinger_Equation_and_the_Particle-in-a-Box_Model/3.I%3A_Interactive_Worksheets/3.I.1%3A_Free_Particle_(Python_Notebook)We start by describing a free particle: a particle that is not under the influence of a potential.
- https://chem.libretexts.org/Ancillary_Materials/Interactive_Applications/Jupyter_Notebooks/Particle_in_a_Finite_Potential_Box_(Python_Notebook)print ("\nThe bound Probability Densities are shown below \nwith the areas shaded in green showing the regions where the particle can tunnel outside the box") fig, ax = plt.subplots(figsize=(12,9)) ax...print ("\nThe bound Probability Densities are shown below \nwith the areas shaded in green showing the regions where the particle can tunnel outside the box") fig, ax = plt.subplots(figsize=(12,9)) ax.spines['right'].set_color('none') ax.xaxis.tick_bottom() ax.spines['left'].set_color('none') ax.axes.get_yaxis().set_visible(False) ax.spines['top'].set_color('none') X_lef = np.linspace(-L, -L/2.0, 900,endpoint=True) X_mid = np.linspace(-L/2.0, L/2.0, 900,endpoint=True) X_rig = np.linspace(L/2.0,…
- https://chem.libretexts.org/Ancillary_Materials/Interactive_Applications/Jupyter_Notebooks/Free_Particle_(Python_Notebook)We start by describing a free particle: a particle that is not under the influence of a potential.
- https://chem.libretexts.org/Courses/University_of_California_Davis/UCD_Chem_110A%3A_Physical_Chemistry__I/UCD_Chem_110A%3A_Physical_Chemistry_I_(Larsen)/Text/03%3A_The_Schrodinger_Equation_and_the_Particle-in-a-Box_Model/3.I%3A_Interactive_Worksheets/3.I.2%3A_Particle_in_an_Infinite_Potential_Box_(Python_Notebook)# Reading the input variables from the user L = float(input(" Enter the value for L for both boxes (in Angstroms) = ")) m1 = float(input(" To see how the energy levels change for particles of differen...# Reading the input variables from the user L = float(input(" Enter the value for L for both boxes (in Angstroms) = ")) m1 = float(input(" To see how the energy levels change for particles of different mass, \nEnter the value of the mass for the first particle (in units of the mass of 1 electron) = ")) nmax1 = int(input("Enter the number of levels you want to plot for the first box = ")) m2 = float(input("Enter the value of the mass for the second particle (in units of the mass of 1 electron) =…
- https://chem.libretexts.org/Ancillary_Materials/Interactive_Applications/Jupyter_Notebooks/Particle_in_an_Infinite_Potential_Box_(Python_Notebook)# Reading the input variables from the user L = float(input(" Enter the value for L for both boxes (in Angstroms) = ")) m1 = float(input(" To see how the energy levels change for particles of differen...# Reading the input variables from the user L = float(input(" Enter the value for L for both boxes (in Angstroms) = ")) m1 = float(input(" To see how the energy levels change for particles of different mass, \nEnter the value of the mass for the first particle (in units of the mass of 1 electron) = ")) nmax1 = int(input("Enter the number of levels you want to plot for the first box = ")) m2 = float(input("Enter the value of the mass for the second particle (in units of the mass of 1 electron) =…