CSSL
1 program
Added 2026-02-07T15:12:53Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Continuous System Simulation Language
Provenance: commit da5cab6b51 · authored 2026-02-07T16:13:43+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Simple Harmonic Oscillator
Provenance: commit da5cab6b51 · authored 2026-02-07T16:13:43+01:00 · agent claude-code · model sonnet · WebSearch disabled
TITLE Simple Harmonic Oscillator
CONSTANT K = 1.0, M = 1.0
INITIAL
X = 1.0
V = 0.0
END
DYNAMIC
A = -K * X / M
V = INTEG(A, 0.0)
X = INTEG(V, 1.0)
END
TERMINAL T .GE. 10.0
METHOD RKSFX
TIMER DELT = 0.01, FINTIM = 10.0, PRDEL = 0.1
PRINT X, V
END