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

⟦648e8822e⟧ TextFile

    Length: 271 (0x10f)
    Types: TextFile
    Names: »KAST.MOD«

Derivation

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

TextFile

// model : kast
 v := SQR(vx^2 + vy^2)
Gnx:= -fr * vx * v
Gny:= -fr * vy * v
Fx := Gnx
Fy := -m * g + Gny
ax := Fx / m
ay := Fy / m
vx := vx + ax * dt
vy := vy + ay * dt
 x :=  x + vx * dt
 y :=  y + vy * dt
 t :=  t + dt
IF (x > 0) AND (y < 0) THEN STOP