You are now ready to start your first music simulation. Before you start your simulation, you must tell MUSIC where to look for the atom and molecule files:
>source [environment file]
Now start the simulation:
>./[map executable link] [map control file]
#!/bin/sh # #PBS -l nodes=1:ppn=1 #PBS -l cput=10:00:00 See ** below #PBS -j oe #PBS -m bea requests an email at the start and the end of your job. For security reasons, this function is disabled at the moment. #PBS -M [email address] email address (The next 3 lines tells the processor what to do) cd /home/[Pmap folder] Go to the directory with the files in it. source ./[environment file] Source your other files ./[map executable link] [map control file] > logfile.meta Run the simulation**This is the amount of time that you want the cluster to give to your simulation, the longer the time the lower priority it gets in the queue but if not enough time the simulation will be cut off and will have to be started from where it stopped. 10 hrs is more than enough for basic Pmap creation. If you have over your limit of submitted jobs they will be put in another queue until one of your jobs are done.
to submit it, type in the shell window:
>qsub [above filename]