-
Notifications
You must be signed in to change notification settings - Fork 2
Feature&Refactor: support SCF restarts from given density matrices and several minor fixes #11
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
4cafd9f
refactor(lead_property): 移除重复数据集的警告日志
kirk0830 85bd435
fix(argcheck): 增加可选的介电区域数量从5到6个
kirk0830 46520f9
fix: 将lead的temp参数从固定值改为使用ele_T变量
kirk0830 61878e3
feat(NEGF): 支持从外部传入Poisson接口进行计算并返回结果
kirk0830 aac5ded
docs(poisson_init): 完善Interface3D类的参数和属性文档
kirk0830 eae6290
feat(NEGF): 添加日志以指示使用给定的Poisson条件进行NEGF-Poisson SCF
AsymmetryChou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
write_to_hdf5no longer guards against an existing dataset name. Withh5py.File(..., "a"), reruns/resumes can hit the same (E,k) andgrp.create_dataset(...)will raise (dataset already exists), aborting the self-energy workflow. If the goal is to silence warnings, keep the existence check but skip (or explicitly overwrite viadel grp[dset_name]/ userequire_dataset).