This is a file from the Wikimedia Commons
From Wikipedia, the free encyclopedia

RutherfordConcentrated.png(640 × 480 pixels, file size: 30 KB, MIME type: image/png)

Summary

Description
English: Simple potential energy diagram for Rutherford atomic model illustrating concentration at nucleus.
Date
Source Own work
Author Johnjbarton
PNG development
InfoField
 
This plot was created with Matplotlib.
Source code
InfoField

Python code

import matplotlib.pyplot as plt
import numpy as np

# Potential energy from Rutherford's 1911 paper.
# V(r) = Ne(1/r - 3/2R + r^2/2R^3)
# Note:
# V(R) = Ne(1/R - 3/2R + 1/2R) = 0
# V(0) -> Ne (1/r) 

# Units of b = 2NeE/mv^2
b = 1
R = 10000*b
rs = np.linspace(R, b, 500)
nrs = np.linspace(-b, -R, 500)
rs = np.concatenate([rs,nrs])
Vs = [(1/np.absolute(r) - 3/(2*R) + r*r/(2*R*R*R)) for r in rs

fig, ax = plt.subplots()
ax.plot(rs, Vs)

t = ax.text(-R/2, 0.5, "Atomic radius",
            ha="center", va="center",  size=18,
            bbox=dict(boxstyle="darrow,pad=0.3",
                      fc="white", ec="steelblue", lw=2))
t2 = ax.text(R/2, 0.5, "Incoming kinetic energy",
            ha="center", va="center",  size=17,rotation=90,
            bbox=dict(boxstyle="darrow,pad=0.3",
                      fc="white", ec="steelblue", lw=2))

ax.set(xlabel='r/b', ylabel='$V(r)/E_{in}$',
       title='Highly concentrated Rutherford atom potential')
fig.savefig("RutherfordConcentrated.png")
plt.show()

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Information

Captions

Simple potential energy diagram for Rutherford atomic model illustrating concentration at nucleus.

Items portrayed in this file

depicts

24 June 2024

image/png

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current 23:01, 24 June 2024 Thumbnail for version as of 23:01, 24 June 2024640 × 480 (30 KB) JohnjbartonUploaded own work with UploadWizard
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Metadata