IMPORT Draw, Math, Strings, Forms;
width = 420; height = 600;
dissipationTitle = "рассеяние энергии";
Particle = RECORD x, y, vx, vy: REAL END;
time, force, dissipation: REAL;
sliderForce, sliderDis: Forms.Slider;
BEGIN force := sliderForce.value; dissipation := sliderDis.value
PROCEDURE R (e: Particle): REAL;
BEGIN RETURN Math.Sqrt(Math.IntPower(e.x, 2) + Math.IntPower(e.y, 2))
PROCEDURE Dist2 (e1, e2: Particle): REAL;
BEGIN RETURN Math.IntPower(e1.x - e2.x, 2) + Math.IntPower(e1.y - e2.y, 2)
VAR i, j: INTEGER; fx, fy, dr, r, d: REAL;
e[i].x := e[i].x + e[i].vx * dt;
e[i].y := e[i].y + e[i].vy * dt;
IF d < er * er * 100.0 THEN
fx := fx + eq / d * Math.Sign(e[i].x - e[j].x);
fy := fy + eq / d * Math.Sign(e[i].y - e[j].y);
IF (e[i].x > 0.0) & (e[i].y > - 20.0) & (e[i].y < 20.0) THEN
fx := fx - e[i].vx * dissipation;
fy := fy - e[i].vy * dissipation;
e[i].vx := e[i].vx + fx / em * dt;
e[i].vy := e[i].vy + fy / em * dt;
VAR d: REAL; i: INTEGER; label: ARRAY 32 OF CHAR;
time := time + dt * FLT(compCycles);
FOR i := 0 TO compCycles - 1 DO Move END;
Draw.SetBackgroundRGB(255, 255, 255);
Draw.FillRGB(50, 50, 250);
Draw.RectRounded(350.0, 180.0, 60.0, 40.0, 4.0);
Draw.StrokeRGB(50, 50, 50);
Draw.Ellipse(cx, cy, r1 * 2.0, r1 * 2.0);
Draw.Ellipse(cx, cy, r2 * 2.0, r2 * 2.0);
Draw.Ellipse(cx + e[i].x, cy + e[i].y, d, d)
Strings.RealToStringFixed(time, label, 1);
Strings.Append(" s", label);
Draw.String(label, 340.0, 40.0, 16);
PROCEDURE ParticlesDisposition;
e[i].x := Math.Sin(FLT(i) * 6.0 / 180.0 * Math.Pi()) * 180.0;
e[i].y := Math.Cos(FLT(i) * 6.0 / 180.0 * Math.Pi()) * 180.0;
END ParticlesDisposition;
Draw.SetSize(width, height);
sliderForce := Forms.NewSlider(20, 420, 380, 44, forceTitle, 0., 300., 1., SetFD);
sliderDis := Forms.NewSlider(20, 490, 380, 44, dissipationTitle, 0.1, 1.0, 0.05, SetFD);
Forms.SetReal(sliderForce, force);
Forms.SetReal(sliderDis, dissipation);
Draw.SetSetupProc(Setup);
Draw.SetDrawProc(Restore);