|
|
|
|
|
by al2o3cr
178 days ago
|
|
You mention the "uncharged case", but ordinary matter is not mathematically neutral.
YOUR CODE assumes that it is, when it passes "q": 0 for four of the six objects.For the other two, it passes "q": 1. Let's look at what it does then: L_src is much much smaller than Le, by roughly a factor of (mass / mPL)^2
The calculation of lambda_a uses the electron mass even when calculating for a proton
For the given objects, metric_factor is negligible.
ai_unified = c^2 * (alpha * hbar / (me_kg * c)) / r^2 = alpha * (hbar * c) / (me_kg * r^2)
but alpha = k*e^2 / (hbar * c)
so ai_unified = k * e^2 / (me_kg * r^2) + small correction of O((mass / mPL)^2)
That's exactly the formula used for acc_coloumb in the code. Also interesting to note the "Coulomb acceleration" for a proton is calculated by dividing the electric force by the mass of the ELECTRON somehow.As for "Phase 2"? The program's output doesn't even agree with the implementation about the formula being used. |
|