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

⟦5c67dfb17⟧ TextFile

    Length: 268 (0x10c)
    Types: TextFile
    Names: »KAST1.MOD«

Derivation

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

TextFile

// Model : Kast1

v   := sqr(vx*vx+vy*vy)
Fx  := -fr*vx*v
Fy  := -m*g - fr*xy*v
ax  := Fx / m
ay  := Fy / m
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