about summary refs log tree commit diff
path: root/main.go
blob: 7424965ac4d491116f7fef6024c750e4b43f6841 (plain)
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
package main

import (
	"git.darknebu.la/GalaxySimulator/Source/csv"
	"git.darknebu.la/GalaxySimulator/Source/draw"
	"git.darknebu.la/GalaxySimulator/Source/forces"
	"git.darknebu.la/GalaxySimulator/Source/structs"
	"fmt"
	"git.darknebu.la/bit/logplus"
	"math"
)

func main() {
	logplus.SetLogLevel(logplus.LevelAll)
	var threads int = 8
	var frames int = 1
	var rangeStart int = 0
	var rangeEnd int = 50000

	// the slice starsSlice stores the star structures
	starsSlice := []structs.Star2D{}

	logplus.LogNeutral("Opening the csv")
	starsSlice = csv.Import("data/U_ALL.csv", rangeStart, rangeEnd, starsSlice)

	// Simulate frames
	for i := 0; i < frames; i++ {
		logplus.LogPositive("--- --- --- --- ---")
		logplus.LogPositive(fmt.Sprintf("Frames %d/%d", i, frames))

		logplus.LogNeutral("Calculate the new Star positions")
		starsSlice = forces.NextTimestep(starsSlice, 25*math.Pow(10, 4+7))

		logplus.LogNeutral("Calculate the acting accelerations")
		starsSlice = forces.CalcAllAccelerations(starsSlice, threads)

		outputName := fmt.Sprintf("out_%d.png", i+3)
		logplus.LogNeutral(fmt.Sprintf("draw the slice and save it to %s\n", outputName))
		draw.Slice(starsSlice, outputName)

	}
}