about summary refs log tree commit diff
path: root/forces/forces.go
Commit message (Collapse)AuthorAge
* wrote tests for the forces package, code-coverage: 100% :Dhanemile2018-11-16
|
* added a TODO: generate an Octreehanemile2018-11-02
|
* Replaced the filthy relatives imports through glorious absolute onesemile2018-10-19
|
* Rephrasing commentsemile2018-10-17
|
* added useful comments and renamed weird variables (a -> acceleratonStructure)emile2018-10-17
|
* for detailed information about the changes, see ↵emile2018-10-15
| | | | https://git.darknebu.la/GalaxySimulator/Source/pulls/1
* refactored the Star type to Star2Demile2018-10-15
|
* The size of the stars is now proportional to its massemile2018-10-15
|
* Added the z value for use in 3D visualizations.emile2018-10-13
|
* Simplify codeemile2018-10-12
|
* removed CalcAllForcesOld, for calculating using 1 thread, use CalcAllForces ↵emile2018-10-12
| | | | from now on!
* formatting + loggingemile2018-10-11
|
* removed some debug codeemile2018-10-10
|
* CalcAllFores calculates the forces inbeween all the stars in the galaxy ↵emile2018-10-10
| | | | utilizing go-threading, error-handing, syncing, progress-bar
* converted snake_case variables to camelCaseemile2018-10-10
|
* added forcesThread function working as a go worker in gothreadsemile2018-10-10
|
* Added a progress bar :Demile2018-10-08
|
* Not exporting the forces function anymore, because the CalcAllForces ↵emile2018-10-08
| | | | | | function is accessing it. The CalcAllFucntion calculates all the forces acting in between the stars in the given Slice and returns the slice with the forces stored in the star structs.
* Exporting the Forces functionemile2018-10-08
|
* Added a function calculating the forces in between a star and all the stas ↵emile2018-10-08
| | | | in the given slice.
* added function force_acting that is used to calculate the force acting in ↵emile2018-10-08
between two given stars.