-
Notifications
You must be signed in to change notification settings - Fork 9
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
FCSXML file #38
Comments
The force constant writer in the FCSXML format is implemented as a C++ function, and the python method I implemented another class 'Fcsxml' (still in the alpha stage), which can write force constants in the FCSXML format. Could you have a look at https://github.com/ttadano/ALM/blob/develop/python/alm/fcsxml.py? While this class still does not have a method like |
Thank you for you quick reply.
fc_indices is explained as
But I can't understand it. Could I ask you how to specify fc_indeces ? |
The
|
The preparation stage of AiiDA CalcJob does not allow direct use of file paths, which makes it difficult to create AiiDA scripts using ALM.
Python code is
and fname_fcs is used in anphon input as
But, AiiDA can't specify fname_fcs as far as I understand. AiiDA script must be something like
Is it possible to use the file hander instead of fname_fcs?
Probably
fc2 = alm.get_fc(1, mode='all')
can obtain all the harmonic force costants.
Though https://alm.readthedocs.io/en/develop/python-module.html?highlight=create_dataset intoduces
how can I make the FCSXML file from fc2?
The text was updated successfully, but these errors were encountered: