I think this system might converge if you give it more iterations, say 200.
However, you have another problem. Your parallel setup is not working properly, which you can see from the fact that each line in the log file appears 4 times (guessing you run mpiexec -n 4!).
The reason in obvious in fact from the first line: you are using OpenMPI, which is not supported by ATK. You must use MPICH2.
Well, you can run, as you are doing, it will not crash (yet), but you are not getting any benefit whatsoever from the parallelization (i.e. it's running on the same speed as in serial), and there's a risk of messing up the NC file when all the nodes think they are masters and try to write to the same file (at once).