After I got the tests to run, I started working my way through the tutorial. Specifically, I am trying part 4. I managed to get to step 18 before I ran into problems. In step 18, we are trying to generate the inital conditions for NewtonX to use. To do this you run a line of code:
$NX/initcond.pl >initcond.log &
This line of code immediately spits out a message which is a number in brackets followed by another number. The numbers change each time. It then prints a message saying initcond.pl is dying now. At this point, the console freezes and does not respond until you abort with ctrl-c. It then spits out an exit code, “Exit 255.” (Which I have been unable to find more information on).
To try to figure out what was wrong, I examined the initcond.log file. So far I have gotten two different messages which seem to alternate with no real reason. The first occurs early in the run and says:
Cheking input files
Cheking geometry lines
Searching for qvector...
qvector does not exist
Creating qvector...
It appears to die while trying to make the missing qvector. The qvector it is referring to used to be a file in version 1.1 that contained the quantum vibrational number, but it isn’t referenced at all in 1.4.
The second error happens later in the run and says:
Starting run_g09_initcond.pl at Tue Nov 22 08:21:30 PST 2016
Vertical energies with Gaussian 09
Starting . $g09root/g09/bsd/g09.profile;$g09root/g09/g09 gaussian.com at Tue Nov 22 08:21:30 PST 2016
Finished . $g09root/g09/bsd/g09.profile;$g09root/g09/g09 gaussian.com with ERROR at Tue Nov 22 08:21:30 PST 2016
Finished run_g09_initcond.pl with ERROR at Tue Nov 22 08:21:30 PST 2016
This error seems to be referring to the same issue with NewtonX inserting an extra /g09/ which we were seeing earlier. However, when I tried using the same set of variable definitions which worked in the tests, it did not change anything. Also, I poked around in the file and found the same qvector error as earlier but instead of crashing after creating the qvector, it continued successfully. So it seems like that error is one that it can sometimes get past.
So far I haven’t been able to figure out when one error occurs versus the other. There doesn’t seem to be any particular logic to it.
-Kristine