-
Notifications
You must be signed in to change notification settings - Fork 10
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
Are magnetic host simulations properly parsed? #46
Comments
yes, I realized this as well and I have just pushed a fix in masci-tools which I had already in my working directory. Since I change the capitalization in some keywords in masci-tools I also had to update aiida-kkr (although this is not properly tested yet) in commit 37329e0. |
The 'traditional way' to activate this was to set |
Thanks @PhilippRue, I guess that then I should for the time being use a local installation of |
yes that should work for now |
@PhilippRue I think the modification to
will result in
and the check later
Only checks for a
|
Oh yes, you are right, feel free to push a quick fix to the develop. |
Sure thing I'll make it as soon as I have a free moment |
@PhilippRue, @broeder-j I was testing bcc Fe to see the SCF when magnetism is considered (
NSPIN=2
,mag_init: True
in thewf_parameters
). And the calculation is failing with the current errorFinished [302] KKR parser retuned an error
, when I do some checking I find that what is happening is that the parser is giving the errorError parsing output of KKR: orbital moment'
.When I see the
output.2.txt
I see that no orbital moment is printed, i.e. I'm running withoutNEWSOSOL
, for what I can see in masci_tools it should not even reach this point to get the failure state.I think that what is happening is that the
use_newsosol
function inmatsci_tools
is incorrectly identifyingNEWSOSOL
to be active (oruse_chebychev
) even when it is not. (I tried to parse them manually and I get this error) even when the line in question isI think that in the previous
inputcard
as the presence of the line was all that was necessary theuse_newsosol
just looks if a line containingNEWSOSOL
is larger than 0, case which would not work here. One could perhaps replace it by something like this:P.S. How does one activate
NEWSOSOL
in thekkr_params
?The text was updated successfully, but these errors were encountered: