Title: SPH_1D Version: 1.0 (3/21/94) Purpose: This code was written originally as an experimental code and evolved into a teaching tool for use in the NASA/Goddard summer school on High Performance Computing in the Physical Sciences. THIS SOFTWARE IS PROVIDED TO YOU "AS IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF PERFORMANCE, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. USER BEARS ALL RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. The following files are needed to for the 1-d, Smooth Particle Hydro. code: 1) sph.f (the main program) 2) sph_mods.f (various subroutines which perform various tasks) 3) noh_int.f, sod_int.f, and sod_const.f set up the initial conditions for two test problems. The subroutine "double_shock_tube" mentioned in the main program can be found in sph_mods.f 4) r4_sort.f is a sorting routine. To compile in the MasPar: mpfortran -c -pesize=16 sph.f mpfortran -c -pesize=16 noh_int.f mpfortran -c -pesize=16 sod_int.f mpfortran -c -pesize=16 sod_const.f mpfortran -c -pesize=16 sph_mods.f mpfortran -c -pesize=16 r4_sort.f mpfortran sph.o noh_int.o sod_int.o sod_const.o sph_mods.o r4_sort.o -o sph To run type: sph If you find any bugs contact: Kevin Olson, olson@jeans.gsfc.nasa.gov