defectpl.ks_analysis¶
extract_ksplot_data
¶
Process raw k-point eigenvalue metrics to build a complete plotting data model.
Extracts windows, maps degeneracy spacing matrices, updates offsets, and returns a serialized data model container.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
eigenval_data
|
dict
|
Raw unpacked dictionary generated via |
required |
vbm
|
float
|
Energy of the Valence Band Maximum (eV). |
required |
cbm
|
float
|
Energy of the Conduction Band Minimum (eV). |
required |
espan
|
float
|
Energy buffer width padding the VBM and CBM boundary fields (eV). |
1.0
|
sep
|
float
|
Lateral separation parameter adjusting near-degenerate points. |
0.1
|
lim
|
float
|
The maximum lateral geometric width limit. |
10.0
|
Returns:
| Type | Description |
|---|---|
KohnShamPlotData
|
A data container populated with processed levels and spatial coordinates. |
Source code in defectpl\ks_analysis.py
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 | |
plot_spin_resolved_levels
¶
Plot Kohn-Sham energy levels with separate spin-up and spin-down panels.
Renders energy levels alongside shaded regions for the valence and conduction bands, and marks state occupancy. Supports native Matplotlib Axes injection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
KohnShamPlotData
|
The processed data container containing the state properties and layout coordinates. |
required |
output_filename
|
str or Path
|
The path and file name where the final plot image will be saved if ax is None. |
"ks_plot.png"
|
style_file
|
str
|
An optional path to a matplotlib |
None
|
ax
|
Axes
|
An existing Matplotlib Axes object to paint the plot on. If None, a new standalone figure is instantiated and written to output_filename. |
None
|
Returns:
| Type | Description |
|---|---|
Axes or None
|
Returns the active axes object if an ax argument was injected; otherwise saves the figure to disk and returns None. |
Source code in defectpl\ks_analysis.py
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 | |
plot_ks_with_pr
¶
plot_ks_with_pr(
ks_data,
pr_result,
metric="p_ratio",
cmap="RdYlGn_r",
vmin=0.0,
vmax=1.0,
threshold=None,
kpt_idx=0,
title=None,
output_filename="ks_pr_plot.png",
figsize=(7, 6),
dpi=300,
style_file=None,
)
Plot Kohn-Sham energy levels colour-coded by participation ratio (P-ratio or IPR).
The layout follows :func:plot_spin_resolved_levels (spin-up on the left,
spin-down on the right with a dividing vertical dashed line) but each
horizontal level bar is coloured by the metric value fetched from
pr_result instead of being drawn in uniform black.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ks_data
|
KohnShamPlotData
|
Processed eigenvalue data container (from :func: |
required |
pr_result
|
dict
|
Nested participation-ratio result dict (loaded from
|
required |
metric
|
(p_ratio, ipr)
|
The localization metric used for coloring. Default |
"p_ratio"
|
cmap
|
str
|
Matplotlib colormap name. Default |
'RdYlGn_r'
|
vmin
|
float
|
Colormap lower bound. Default 0.0. |
0.0
|
vmax
|
float
|
Colormap upper bound. Default 1.0. |
1.0
|
threshold
|
float
|
If provided, draw a horizontal dashed line at this metric value to guide the eye — only meaningful when a dual-axis view is used. (Currently the colour already encodes the metric, so this is optional.) |
None
|
kpt_idx
|
int
|
0-based k-point index to use when looking up PR values. Default 0. |
0
|
title
|
str
|
Figure title. Defaults to the defect name stored in pr_result. |
None
|
output_filename
|
str or Path
|
Destination file path. Default |
'ks_pr_plot.png'
|
figsize
|
tuple of float
|
Figure size (width, height) in inches. |
(7, 6)
|
dpi
|
int
|
Image resolution. |
300
|
style_file
|
str
|
Optional matplotlib |
None
|
Returns:
| Type | Description |
|---|---|
None
|
Saves the figure to output_filename. |
Source code in defectpl\ks_analysis.py
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 | |
get_homo_lumo_idx
¶
Locate the Highest Occupied and Lowest Unoccupied Molecular Orbital boundaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
eigenval
|
list of list of float
|
A list of [energy, occupancy] state arrays targeting a single spin channel. |
required |
thr
|
float
|
The occupancy threshold demarcating occupied from empty electronic levels. |
0.6
|
Returns:
| Name | Type | Description |
|---|---|---|
homo_idx |
int
|
The index coordinate marking the HOMO band horizon. |
lumo_idx |
int
|
The index coordinate marking the LUMO band horizon. |