forked from TheAlgorithms/JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEulerMethod.manual-test.js
69 lines (59 loc) · 1.82 KB
/
EulerMethod.manual-test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { eulerFull } from '../EulerMethod'
function plotLine(label, points, width, height) {
// utility function to plot the results
// container needed to control the size of the canvas
const container = document.createElement('div')
container.style.width = width + 'px'
container.style.height = height + 'px'
document.body.append(container)
// the canvas for plotting
const canvas = document.createElement('canvas')
container.append(canvas)
// Chart-class from chartjs
const chart = new Chart(canvas, {
// eslint-disable-line
type: 'scatter',
data: {
datasets: [
{
label,
data: points,
showLine: true,
fill: false,
tension: 0,
borderColor: 'black'
}
]
},
options: {
maintainAspectRatio: false,
responsive: true
}
})
}
function exampleEquation1(x, y) {
return x
}
// example from https://en.wikipedia.org/wiki/Euler_method
function exampleEquation2(x, y) {
return y
}
// example from https://www.geeksforgeeks.org/euler-method-solving-differential-equation/
function exampleEquation3(x, y) {
return x + y + x * y
}
// plot the results if the script is executed in a browser with a window-object
if (typeof window !== 'undefined') {
const points1 = eulerFull(0, 4, 0.1, 0, exampleEquation1)
const points2 = eulerFull(0, 4, 0.1, 1, exampleEquation2)
const points3 = eulerFull(0, 0.1, 0.025, 1, exampleEquation3)
const script = document.createElement('script')
// using chartjs
script.src = 'https://www.chartjs.org/dist/2.9.4/Chart.min.js'
script.onload = function () {
plotLine('example 1: dy/dx = x', points1, 600, 400)
plotLine('example 2: dy/dx = y', points2, 600, 400)
plotLine('example 3: dy/dx = x + y + x * y', points3, 600, 400)
}
document.body.append(script)
}