This is an experimental program, merely
written to aid conversion and show that NEMO and STARLAB code can be linked
together, albeit with some caveats and boundary conditions.
Parameters
The
following parameters are recognized in any order if the keyword is also
given:
% mkplummer - 2 | stod - "mkplummer test" label=t
(Particle
N = 2
(Log
mkplummer test
### This is still an experimental conversion ###
===> Fri Jul 16 11:53:57 1993
Starlab 1.0 (beta) : "stod - mkplummer test label=t 1.0" "mkplummer
- 2 VERSION=2.5a"
)Log
(Dynamics
m = 1
r = 0 0 0
v = 0 0 0
)Dynamics
(Hydro
)Hydro
(Star
)Star
(Particle
i = 1
N = 1
(Log
)Log
(Dynamics
m = 0.5
r = 0.337823 0.0637204 -0.0639563
v = 0.222878 -0.544599 0.272201
)Dynamics
(Hydro
)Hydro
(Star
)Star
)Particle
(Particle
i = 2
N = 1
(Log
)Log
(Dynamics
m = 0.5
r = -0.337823 -0.0637204 0.0639563
v = -0.222878 0.544599 -0.272201
)Dynamics
(Hydro
)Hydro
(Star
)Star
)Particle
)Particle
The reverse operation, conversion from a dyn to a snapshot can also be achieved using a small number of existing tools (although the NEMO program dtos(1NEMO) would be easier to use).
First the dyn is printed in a ‘‘dumb’’
table format (which can also be used by NBODY1-5). For example, to convert
a dyn file run1.dyn to a snapshot file run1.snap we can use a temporary (ascii)
table, or directly convert using a pipe:
dumbp < run1.dyn > run1.tab
tabtos run1.tab run1.snap "" mass,pos,vel
rm run1.tab
dumbp < run1.dyn | tabtos - run1.snap \
block1=mass,pos,vel nbody=9999 error=1
Note that in the second example the number of bodies cannot be obtained
directly from the pipe, and some arbitrarely large number must be given
for the keyword nobody=, and the risky error=1 must be used to bypass an
‘‘unexpected EOF’’ fatal error to properly close the file with the actually
encountered number of particles.
src/nbody/io/starlab stod.C stod_stubs.c See Alsodtos(1NEMO), snapshot(5NEMO), dumbp(1starlab), tabtos(1NEMO) AuthorPeter Teuben Update History 16-Jul-93 V0.1 Created PJT 30-Jul-96 documented the reverse conversion PJT 6-aug-96 V1.1a handle multiple snapshots on input PJT