1 ! Copyright (C) 2008, 2009 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: accessors specialized-arrays.double fry kernel locals math
4 math.constants math.functions math.vectors prettyprint combinators.smart
5 sequences hints arrays ;
8 : solar-mass ( -- x ) 4 pi sq * ; inline
9 : days-per-year 365.24 ; inline
12 { location double-array }
13 { velocity double-array }
14 { mass float read-only } ;
16 : <body> ( location velocity mass -- body )
17 [ days-per-year v*n ] [ solar-mass * ] bi* body boa ; inline
19 : <jupiter> ( -- body )
20 double-array{ 4.84143144246472090e+00 -1.16032004402742839e+00 -1.03622044471123109e-01 }
21 double-array{ 1.66007664274403694e-03 7.69901118419740425e-03 -6.90460016972063023e-05 }
22 9.54791938424326609e-04
25 : <saturn> ( -- body )
26 double-array{ 8.34336671824457987e+00 4.12479856412430479e+00 -4.03523417114321381e-01 }
27 double-array{ -2.76742510726862411e-03 4.99852801234917238e-03 2.30417297573763929e-05 }
28 2.85885980666130812e-04
31 : <uranus> ( -- body )
32 double-array{ 1.28943695621391310e+01 -1.51111514016986312e+01 -2.23307578892655734e-01 }
33 double-array{ 2.96460137564761618e-03 2.37847173959480950e-03 -2.96589568540237556e-05 }
34 4.36624404335156298e-05
37 : <neptune> ( -- body )
38 double-array{ 1.53796971148509165e+01 -2.59193146099879641e+01 1.79258772950371181e-01 }
39 double-array{ 2.68067772490389322e-03 1.62824170038242295e-03 -9.51592254519715870e-05 }
40 5.15138902046611451e-05
44 double-array{ 0 0 0 } double-array{ 0 0 0 } 1 <body> ;
46 : offset-momentum ( body offset -- body )
47 vneg solar-mass v/n >>velocity ; inline
49 TUPLE: nbody-system { bodies array read-only } ;
51 : init-bodies ( bodies -- )
52 [ first ] [ double-array{ 0 0 0 } [ [ velocity>> ] [ mass>> ] bi v*n v+ ] reduce ] bi
53 offset-momentum drop ; inline
55 : <nbody-system> ( -- system )
56 [ <sun> <jupiter> <saturn> <uranus> <neptune> ] output>array nbody-system boa
57 dup bodies>> init-bodies ; inline
59 :: each-pair ( bodies pair-quot: ( other-body body -- ) each-quot: ( body -- ) -- )
62 bodies i 1+ tail-slice [
67 : update-position ( body dt -- )
68 [ dup velocity>> ] dip '[ _ _ v*n v+ ] change-location drop ;
70 : mag ( dt body other-body -- mag d )
71 [ location>> ] bi@ v- [ norm-sq dup sqrt * / ] keep ; inline
73 :: update-velocity ( other-body body dt -- )
74 dt body other-body mag
75 [ [ body ] 2dip '[ other-body mass>> _ * _ n*v v- ] change-velocity drop ]
76 [ [ other-body ] 2dip '[ body mass>> _ * _ n*v v+ ] change-velocity drop ] 2bi ;
78 : advance ( system dt -- )
80 [ '[ _ update-velocity ] [ drop ] each-pair ]
81 [ '[ _ update-position ] each ]
84 : inertia ( body -- e )
85 [ mass>> ] [ velocity>> norm-sq ] bi * 0.5 * ;
87 : newton's-law ( other-body body -- e )
88 [ [ mass>> ] bi@ * ] [ [ location>> ] bi@ distance ] 2bi / ;
90 : energy ( system -- x )
91 [ 0.0 ] dip bodies>> [ newton's-law - ] [ inertia + ] each-pair ; inline
95 [ energy . ] [ '[ _ 0.01 advance ] times ] [ energy . ] tri ;
97 HINTS: update-position body float ;
98 HINTS: update-velocity body body float ;
100 HINTS: newton's-law body body ;
101 HINTS: nbody fixnum ;
103 : nbody-main ( -- ) 1000000 nbody ;