DataMuseum.dk

Presents historical artifacts from the history of:

RegneCentralen RC759 "Piccoline"

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about RegneCentralen RC759 "Piccoline"

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦928753e36⟧ TextFile

    Length: 221 (0xdd)
    Types: TextFile
    Names: »COULOMB.MOD«

Derivation

└─⟦37cf4f704⟧ Bits:30003051 Dymos II - Modeller
    └─⟦this⟧ »DYMOS1\COULOMB.MOD« 

TextFile

// model : coulomb
x :=  x + vx * dt
y :=  y + vy * dt
r := SQR(x^2 + y^2)
a :=  k * q1 * q2 / m / r^2
ax:=  a * x / r
ay:=  a * y / r
vx:= vx + ax * dt
vy:= vy + ay * dt
t := t + dt
IF r > 2.1E-10 THEN STOP