Looking at the nwchem code in src/driver/opt_drv.F
First printing is turned off after the first point:
84 c
85 c Disable printing to ecce of movecs after first point
86 c
87 call movecs_ecce_print_off()
but it looks like it should print on convergence:
246 driver=converged
247 if (converged) then
248 call ecce_print_module_exit('driver', 'ok')
249 else
250 call ecce_print_module_exit('driver', 'failed')
251 endif
252 c
253 call movecs_ecce_print_on() ! Restore MO printing
254 call util_print_pop
|