Příkaz NVyresitODE

NVyresitODE( <Seznam derivací>, <Počáteční souřadnice x>, <Seznam počátečních souřadnic y>, <Koncová souřadnice x> )

Řeší (numericky) soustavu diferenciálních rovnic.

f'(t, f, g, h) = g

g'(t, f, g, h) = h

h'(t, f, g, h) = -t h + 3t g + 2f + t

NVyresitODE({f', g', h'}, 0, {1,2,-2}, 10)

NVyresitODE({f', g', h'}, 0, {1,2,-2}, -5) (řeší soustavu zpětně v čase).

x1'(t, x1, x2, x3, x4) = x2

x2'(t, x1, x2, x3, x4) = x3

x3'(t, x1, x2, x3, x4) = x4

x4'(t, x1, x2, x3, x4) = -8x1 + sin(t) x2 - 3x3 + t^2

x10 = -0.4

x20 = -0.3

x30 = 1.8

x40 = -1.5

NVyresitODE({x1', x2', x3', x4'}, 0, {x10, x20, x30, x40}, 20)

Kyvadlo:

g = 9.8

l = 2

a = 5 (počáteční poloha)

b = 3 (počáteční síla)

y1'(t, y1, y2) = y2

y2'(t, y1, y2) = (-g) / l sin(y1)

NVyresitODE({y1', y2'}, 0, {a, b}, 20)

del = Delka(numerickyIntegral1)

c = Posuvnik(0, 1, 1 / del, 1, 100, false, true, true, false)

x1 = l sin(y(Bod(numerickyIntegral1, c)))

y1 = -l cos(y(Bod(numerickyIntegral1, c)))

A = (x1, y1)

Usecka((0, 0), A)

StartAnimace()