-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add charge and uhf information into setup #960
Conversation
Signed-off-by: albert <[email protected]>
src/scf_module.F90
Outdated
@@ -479,6 +479,8 @@ subroutine scf(env, mol, wfn, basis, pcem, xtbData, solvation, & | |||
write(env%unit,scifmt) "-> SCF convergence ",scfconv, "Eh " | |||
write(env%unit,scifmt) "-> wf. convergence ",qconv, "e " | |||
write(env%unit,dblfmt) "Broyden damping ",set%broydamp," " | |||
write(env%unit,intfmt) "net charge ",set%ichrg |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this or mol%chrg actually used?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, in principle mol%chrg
is set based on the set%ichrg
value, but it might be more logical to retrieve this information from mol
directly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the suggestion; I've updated the PR accordingly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how about the uhf information?
Signed-off-by: albert <[email protected]>
* Add charge and uhf information into setup Signed-off-by: albert <[email protected]> * change set to mol Signed-off-by: albert <[email protected]> --------- Signed-off-by: albert <[email protected]> Signed-off-by: Johannes Gorges <[email protected]>
No description provided.