Open In Colab

We have a strange but very interesting question. It would appear to have a trivial answer, but look again. The question:

Is Bohr's planetary model of the hydrogen atom $[+1, -1]$ really more probable than Sansbury-Weber's model of $[[+2, -1], [+1, -2]]$?

Ultimately we are comparing the Bohr and Sansbury models for hydrogen, helium, lithium, etc., but we must begin with the simplest case, namely hydrogen.

Notation: $[+n]$ refers to $n$-particle system of $n$ equal $[+1]$ charges and having sufficient energy to break through the critical radius, and therefore $[+n]$ represents an $n$-body molecule of identical electric particles.

For example the system $[-1, -1]$ is naturally repulsive in isolated environment, but becomes a system $[-2]$ only if sufficient work is done by the environment on the system. We have written on this elsewhere, namely Weber's amazing prediction that electrons are attractive within the critical radius and an energy $E=\mu c^2$ is required, where $\mu$ is the reduced inertial mass of the system.

All these questions appear to lead to thermodynamics. Why?

The question of which states or models are more probable is effectively an energy and statistical question. It's generally understood from thermodynamics that more probable states are those with lower potential energies (i.e. with less capacity for work). There is urgent need for precise statements.

Thermodynamics is the question relating the changes in potential $\Delta U$ with changes in "capacity for work" and "heat flux with the environment". It's a complicated question and we are cautious against unwitting import of false ideas. Somehow what's lacking is the amazing idea that heat and temperature represents average random kinetic.

Which states are we going to observe?

Truly if the states are isolated, then they are not observable at all, at least not by energy radiation. For if they were radiating they would be transferring some energy from the system to the environment.

Abstractly we need to study the energy landscapes of all these systems. The potential energy in our study is Weber's electrodynamic potential and which satisfies a conservation of energy with respect to both isolated and non-isolated systems in a form.

The system will use it's own potential energy, to do work on itself to morphologically change it's state. And the environment is here necessary to absorb this energy. The system will relax to a lower state, but the environment will have absorbed and gained to a higher state. It seems natural enough to assume that this dynamic process will continue until we have achieved an energy balance and no more net radiation.

We are repeating to ourselves the idea of "spontaneous reduction to ground states" as some natural principle of least action, or least internal energy. In otherwords, a system reacts to its environment to minimize the internal potential energy. Both states will have attained minimal internal potential energy.

It's necessary to consider the environment, because if we look at unconstrained negative energy gradient $-\nabla E$ on the isolated system, then the gradient might descend to zero or negative infinity and radiate away all its energy. System collapses.

Instead we remember the environment $X$ and the idea that all energy is conserved and there is radiation until an energy balance is achieved between $S$ and $X$. If the environment itself has a capacity (a ceiling) possibly infinite of how much energy it can absorb, then the system $S$ need not radiate away to zero.

In our calculations between Bohr and Sansbury, it's possible that studying the isolated systems will not be sufficient. They each have their own energy landscapes. But without any environment interactions, is it possible to decide which configurations are more probable? Can the absolute energies really be compared to each other? And besides, for a given configuration, what is the most probable state?

In strict two-body system like $[+1, -1]$ there is no direct radiation from $[+1]$ to $[-1]$ because there is no energy balance necessary between $[+1]$ and $[-1]$ (single-particle systems do not have any relational energies -- the particles do have absolute vis viva kinetic energies relative to any coordinate system, but no pure relational kinetic energy!). Therefore there is no energy transfer between the states. When the particles begin interacting in the two-body system $[+1, -1]$ then there is exchange between potential and relative kinetic energies of the system. However this does not occur as radiation but rather a change of state.

In a system like $[[+2, -1], [+1, -2]]$, it's possible that the system have zero net radiation (effectively isolated and stable) whilst the subsystems $[+2, -1]$ and $[+1, -2]$ undergoes a continuous exchange of radiation while maintaining a total energy balance. This is Sansbury's insight.

Reduction to Ground State: What is the idea here?

Does it really pass that every system collapses and radiates away it's energy? No, this is the idea from Sansbury, that a system can have zero net radiation ! And this is what's happening inside the electrical molecules.

When two particles exist in a nonisolated system. Weber argues: if system $X$ has energy $A$, and from the outside environment some amount $a$ of kinetic energy is transferred to the system, then once the system is again considered isolated, it would seem evident that the total energy becomes $A+a$.

Weber responds to Helmholtz' and Tait's criticisms coupled with Maxwell and Neumann's results. Weber has comprehensive philosophical approach. He reasons that interactions are the equivalent to loss or gain of vis viva, and these energies are in fact dependant on one another. Thereby we find the dependance of the interaction force on the vis viva of the bodies, in contrast to Coulomb-Poisson which has no such dependance.

Early arguments formulating tentative forms of the conservation of energy hindered the acceptance of Weber's work, especially because of Helmholtz' erroneous critiques [ref]. But all these criticisms led to Weber devising an argument which demonstrates the effective equivalence and necessity of:

  • Coulomb-Poisson force law (electrostatics)
  • Conservation of Energy
  • Weber's force law (electrodynamics).

Weber proved that his dynamic force law is effectively the only extension of the Coulomb-Poisson electrostatic law which does indeed satisfy a conservation of energy principle. [Insert sketch]

END OF POST [JHM].

import numpy as np

c=1.0;

Q0 = [0. for j in range(6)]; q0 = q0 + [+1.0]; # positive 
Q1 = [1. for j in range(6)]; q1 = q1 + [-1.0]; # negative

Q2 = [-1. for j in range(6)]; q2 = q2 + [1.0];
Q3 = [1.5, 0., 0., -0.3, 0., 0.]; q3 = q3 + [1.0];
QQ = [Q0, Q1, Q2, Q3]; #print(qq)

# approximate Bohr hydrogen state:
# approximate Sansbury hydrogen state:

def norm(x, epsilon=0.0):
  val = np.dot(x,x)**(0.5)
  return (val**2+epsilon**2)**(0.5) 

# pairwise Weber interaction energy
def U(q): 
  q1,q2 = q;
  dq = np.subtract(q2,q1)[0:6];
  dx = dq[0:3]; dv = dq[3:6]; rho = norm(dx);
  rhat=np.dot(1/rho, dx)  # unit vector

  charge_factor = q1[-1]*q2[-1];
  Weber_term = (np.dot(rhat, dv) / c)**2
  return (rho**-1)*(1-Weber_term/2)*charge_factor

# pairwise relative motion energy
def T(q):
  q1, q2 = q
  dq = np.subtract(q2,q1)[0:6];
  dx = dq[0:3]; dv = dq[3:6]; rho = norm(dx);
  rhat=np.dot(1/rho, dx)  # unit vector

  mu = 0.5 # reduced mass insert formula.
  return (0.5)*mu*np.dot(rhat, dv)**2

# array of pairwise evaluating T,U:
#Tij = [T([var0, var1]) for var0 in qq for var1 in qq if var0 != var1]; sumT = (0.5)*sum(Tij); print(sumT);
#Uij = [U([var0, var1]) for var0 in qq for var1 in qq if var0 != var1]; sumU = (0.5)*sum(Uij); print(sumU);

# what are Sansbury's metastable states quantitatively? 
# can we simulate the work required to draw two energy surfaces together??
# as we lower the energy via negative gradient flow...
# what is the critical radius? how to numerical test the critical radius region?

!pip install numdifftools

import numdifftools as nd
  
def weber(r):
  return (-1/r[0])*(1-(r[1]**2)/2)

def t(r):
  return (0.5)*(0.5)*r[1]**2

def e(r):
  return weber(r)+t(r)

r_sample = [0.7, 0.01]

grad_weber = nd.Gradient(weber)(r_sample)  
print("potential gradient direction to increase the capacity for work at (r, r') =",r_sample, "is", grad_weber)

grad_kinetic = nd.Gradient(t)(r_sample)
print("kinetic gradient is:", grad_kinetic)

grad_energy = nd.Gradient(e)(r_sample);
print("negative energy gradient is:", -grad_energy)
print("unit normalized negative energy gradient is:", np.dot(1/norm(grad_energy), - grad_energy) )

# Hydrogen state space:

# i prefer hexagon sample spaces, need efficient construction.
def cube(N=1):
  line = [x*(1/N) for x in range(-N, N+1)]
  prod = [[x,y,z] for x in line for y in line for z in line]
  return prod

def hex(N=7):
  e1 = [-1/2, np.sqrt(3)/2]
  e2 = [1.,0.]
  sample = [list(np.dot(n1,e1)+np.dot(n2,e2)) for n1 in range(-N, N+1) for n2 in range(-N, N+1)]
  return sample

statespace = [[[x1,v1],[x2,v2],[x3,v3]] for x1 in cube() for v1 in cube() for x2 in cube() for v2 in cube() for x3 in cube() for v3 in cube()];

print(len(statespace))
print(len(cube()))
print(27*27*27 == 3**9)