-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlorenz.js
41 lines (38 loc) · 875 Bytes
/
lorenz.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
class Lorenz {
constructor() {
this.name = 'Lorenz';
this.iterations = 8000;
this.multiplier = 1.0;
this.type = 'line';
this.reset();
}
reset(random = false) {
if (random === false) {
this.x = 0.1;
this.y = 0;
this.z = 0;
this.a = 10.0;
this.b = 28.0;
this.c = 8.0 / 3.0;
} else {
this.x = 0.1;
this.y = 0;
this.z = 0;
this.a = 5.0 + Math.random()*5;
this.b = 14.0 + Math.random()*14;
this.c = 8.0 / 3.0;
}
}
getPosition() {
return { x: this.x, y: this.y, z: this.z };
}
next() {
const t = 0.01;
const xt = t * this.a * (this.y - this.x);
const yt = t * (this.x * (this.b - this.z) - this.y);
const zt = t * (this.x * this.y - this.c * this.z);
this.x = this.x + xt;
this.y = this.y + yt;
this.z = this.z + zt;
}
}