-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnbody2.jl
More file actions
161 lines (130 loc) · 4.51 KB
/
nbody2.jl
File metadata and controls
161 lines (130 loc) · 4.51 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# N-body simulation
# Based off of the Computer Language Benchmarks Game
__precompile__()
module nbody2
using Printf
using LinearAlgebra
using StaticArrays
using BenchmarkTools
# Constants
const SOLAR_MASS = 4*pi*pi
const DAYS_PER_YEAR = 365.24
# Body type
mutable struct Body
x::MVector{3,Float64}
fill::Float64
v::MVector{3,Float64}
mass::Float64
end
# Define each of the body initial values
# Pre-define some arrays and values globally to reduce the amount of copying
# dx = zeros(3)
"""
Not sure exactly what this is supposed to be doing
"""
function offset_momentum!(bodies)
for i = 1:length(bodies)
@. bodies[1].v -= bodies[i].v * (bodies[i].mass / SOLAR_MASS)
end
end
"""
Advance the positions and velocities
"""
function bodies_advance!(bodies,dt::Float64)
dx = @MVector zeros(3)
dsq = 0.
distance = 0.
mag = 0.
for i = 1:length(bodies)
for j = (i+1):length(bodies)
@. dx = bodies[i].x - bodies[j].x
dsq = dot(dx, dx)
distance = sqrt(dsq)
mag = dt / (dsq * distance)
@. bodies[i].v -= dx * bodies[j].mass * mag
@. bodies[j].v += dx * bodies[i].mass * mag
end
end
for k = 1:length(bodies)
@. bodies[k].x += dt * bodies[k].v
end
end
"""
Compute the overall energy in the system
"""
function bodies_energy(bodies)
dx = @MVector zeros(3)
distance = 0.
energy = 0.
for i = 1:length(bodies)
energy += bodies[i].mass * dot(bodies[i].v, bodies[i].v) / 2.0
for j = (i+1):length(bodies)
@. dx = bodies[i].x - bodies[j].x
distance = norm(dx)
energy -= (bodies[i].mass * bodies[j].mass) / distance
end
end
return energy
end
function main_loop(bodies,N::Int64)
offset_momentum!(bodies)
@printf "%.9f\n" bodies_energy(bodies)
for i = 1:N; bodies_advance!(bodies,0.01); end
@printf "%.9f\n" bodies_energy(bodies)
end
# N = 10000
N = 5000000
if length(ARGS) >= 1
N = parse(Int64, ARGS[1])
end
function myrun()
_bodies = MVector(
# Sun
Body(MVector(0.0, 0.0, 0.0),
0.0,
MVector(0.0, 0.0, 0.0),
SOLAR_MASS),
# Jupiter
Body(MVector(4.84143144246472090e+00,
-1.16032004402742839e+00,
-1.03622044471123109e-01),
0.0,
MVector(1.66007664274403694e-03 * DAYS_PER_YEAR,
7.69901118419740425e-03 * DAYS_PER_YEAR,
-6.90460016972063023e-05 * DAYS_PER_YEAR),
9.54791938424326609e-04 * SOLAR_MASS),
# Saturn
Body(MVector(8.34336671824457987e+00,
4.12479856412430479e+00,
-4.03523417114321381e-01),
0.0,
MVector(-2.76742510726862411e-03 * DAYS_PER_YEAR,
4.99852801234917238e-03 * DAYS_PER_YEAR,
2.30417297573763929e-05 * DAYS_PER_YEAR),
2.85885980666130812e-04 * SOLAR_MASS),
# Uranus
Body(MVector(1.28943695621391310e+01,
-1.51111514016986312e+01,
-2.23307578892655734e-01),
0.0,
MVector(2.96460137564761618e-03 * DAYS_PER_YEAR,
2.37847173959480950e-03 * DAYS_PER_YEAR,
-2.96589568540237556e-05 * DAYS_PER_YEAR),
4.36624404335156298e-05 * SOLAR_MASS),
# Neptune
Body(MVector(1.53796971148509165e+01,
-2.59193146099879641e+01,
1.79258772950371181e-01),
0.0,
MVector(2.68067772490389322e-03 * DAYS_PER_YEAR,
1.62824170038242295e-03 * DAYS_PER_YEAR,
-9.51592254519715870e-05 * DAYS_PER_YEAR),
5.15138902046611451e-05 * SOLAR_MASS),
)
main_loop(_bodies,N)
end
end
# @profile main_loop(_bodies,N)
# @benchmark main_loop(_bodies,N)
# main_loop(_bodies,N-1)
# Profile.print()