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

⟦294bfe6a9⟧ TextFile

    Length: 266 (0x10a)
    Types: TextFile
    Names: »COULOMB1.MOD«

Derivation

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

TextFile

// Model : Coulomb1

r  := sqr(x*x+y*y)
a  := k * q1 * q2 / m / r / r
ax := a * x / r
ay := a * y / r
dvx:= ax * dt
dvy:= ay * dt
vx := vx + dvx
vy := vy + dvy
dx := vx * dt
dy := vy * dt
x  := x + dx
y  := y + dy
t  := t + dt