Repository to share code among the members of the SHM Working Group.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
679 B

  1. #!/bin/bash
  2. ###################################################
  3. # A script to run a single event of MUSIC Hydro #
  4. # argument $1: eventnumber #
  5. ###################################################
  6. number=$1
  7. origDir=$(pwd)
  8. targetDir=/lustre/alice/users/jcrkovsk/IPGlasmaEvents/Event$number
  9. cd $targetDir
  10. ## the following runs simus starting at t0=0.6 f
  11. mkdir Hydro06
  12. cd Hydro06
  13. cp ../epsilon-u-Hydro-t0.6-0.dat .
  14. ln -s /lustre/alice/users/jcrkovsk/music_hydro/EOS EOS ## create a symlink to the EOS folder
  15. /lustre/alice/users/jcrkovsk/music_hydro/MUSIChydro /lustre/alice/users/jcrkovsk/IPGlasmaEvents/inputfiles/music_inputIPGlasma06_mode_2
  16. cd $origDir