Our installation of gaussian resides in /cluster/bazaar/software/g03.
A typical gaussian command line: nohup g03l md.com &
This runs gaussian with linda (g03 is the uniprocessor binary) using the input file md.com. Running g03l with nohup allows gaussian to continue running even if you log off the machine. The stdout and stderr will go to nohup.out. The g03l output will placed in md.log. If you execute the top command and watch gaussian run, it will call specific binaries to perform the molecular dynamics. These binaries are named lxxx.exe where xxx is a number. A list of the calculations each binary performs can be found here.
Gaussian relies on environment variables for most configuration options. Gaussian is packaged with environment setting scripts that should be sourced before running g03l (g03/bsd/g03.profile; it is handy to put this in your .profile). These are set with the export command in bash (export VARIABLE_NAME="value") and setenv in csh (setenv VARIABLE_NAME 'value'). Here are several environment variables that are handy:
A suite of tests is included with gaussian (g03/tests/com). Running a set of these tests is a good way to test your gaussian environment. Keep in mind that the log file generated by gaussian is going to be placed in the same directory as the run configuration file (e.g. if you run "g03l $g03root/tests/com/test354.com" from your home directory, the test354.log file will be in $g03root/tests/com/).
Posted by mccoyjo at February 28, 2005 01:05 PM