QSpaceLanczos Module¶
tdscha.QSpaceLanczos
¶
Q-Space Lanczos Module¶
This module implements the Lanczos algorithm in q-space (Bloch basis) to exploit momentum conservation and block structure from Bloch's theorem. This gives a speedup of ~N_cell over the real-space implementation.
Key differences from the real-space DynamicalLanczos.Lanczos: - Psi vector is complex128 (Hermitian Lanczos with sesquilinear inner product) - Two-phonon sector uses (q1, q2) pairs constrained by q1+q2 = q_pert + G - Symmetries are point-group only (translations handled by Fourier transform) - Requires Julia extension (tdscha_qspace.jl)
References: Implementation plan: implementation_plan.md Parent class: DynamicalLanczos.py
QSpaceLanczos(ensemble, lo_to_split=None, **kwargs)
¶
Bases: Lanczos
Q-space Lanczos for spectral calculations exploiting Bloch's theorem.
This class works in the q-space mode basis to exploit momentum conservation, reducing the psi vector size by ~N_cell and the anharmonic computation by ~N_cell.
Only Wigner formalism is supported. Requires Julia extension.
Initialize the Q-Space Lanczos.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ensemble
|
Ensemble
|
The SSCHA ensemble. |
required |
lo_to_split
|
string, ndarray, or None
|
LO-TO splitting mode. If None (default), LO-TO splitting correction is neglected. If "random", a random direction is used. If an ndarray, it specifies the q-direction for the LO-TO splitting correction. |
None
|
**kwargs
|
Additional keyword arguments passed to the parent Lanczos class. |
{}
|
Source code in tdscha/QSpaceLanczos.py
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | |
build_q_pair_map(iq_pert)
¶
Find all (iq1, iq2) pairs satisfying q1 + q2 = q_pert + G.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
iq_pert
|
int
|
Index of the perturbation q-point. |
required |
Source code in tdscha/QSpaceLanczos.py
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 | |
get_psi_size()
¶
Return the total size of the psi vector.
Source code in tdscha/QSpaceLanczos.py
344 345 346 347 348 | |
get_static_psi_size()
¶
Return psi size for the static layout: [R, one W sector].
This equals the end of the a' sector, i.e. the start of b'.
Source code in tdscha/QSpaceLanczos.py
350 351 352 353 354 355 | |
get_block_offset(pair_idx, sector='a')
¶
Get the offset into psi for a given pair index.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pair_idx
|
int
|
Index into self.unique_pairs. |
required |
sector
|
str
|
'a' for a' sector, 'b' for b' sector. |
'a'
|
Source code in tdscha/QSpaceLanczos.py
357 358 359 360 361 362 363 364 365 366 367 368 369 370 | |
get_block_size(pair_idx)
¶
Get the number of entries for this pair.
Source code in tdscha/QSpaceLanczos.py
372 373 374 | |
get_R1_q()
¶
Extract R^(1) from psi (n_bands complex entries at q_pert).
Source code in tdscha/QSpaceLanczos.py
376 377 378 | |
get_block(pair_idx, sector='a', source=None)
¶
Reconstruct full (n_bands, n_bands) matrix from psi storage.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pair_idx
|
int
|
Index into self.unique_pairs. |
required |
sector
|
str
|
'a' or 'b'. |
'a'
|
source
|
ndarray or None
|
If provided, read from this array instead of self.psi. |
None
|
Returns:
| Type | Description |
|---|---|
(ndarray(n_bands, n_bands), complex128)
|
|
Source code in tdscha/QSpaceLanczos.py
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | |
get_a1_block(pair_idx)
¶
Get the a'(1) block for pair_idx.
Source code in tdscha/QSpaceLanczos.py
439 440 441 | |
get_b1_block(pair_idx)
¶
Get the b'(1) block for pair_idx.
Source code in tdscha/QSpaceLanczos.py
443 444 445 | |
set_block_in_psi(pair_idx, matrix, sector, target_psi)
¶
Write a (n_bands, n_bands) block into the target psi vector.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pair_idx
|
int
|
|
required |
matrix
|
ndarray(n_bands, n_bands)
|
|
required |
sector
|
str(a or b)
|
|
required |
target_psi
|
ndarray — the psi vector to write into
|
|
required |
Source code in tdscha/QSpaceLanczos.py
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 | |
mask_dot_wigner(debug=False)
¶
Build the mask for Hermitian inner product with upper-triangle storage.
For full blocks (iq1 < iq2): factor 2 for the conjugate block (iq2, iq1). For diagonal blocks (iq1 == iq2): off-diagonal factor 2, diagonal factor 1.
Returns:
| Type | Description |
|---|---|
(ndarray(psi_size), float64)
|
|
Source code in tdscha/QSpaceLanczos.py
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 | |
apply_L1_FT(transpose=False)
¶
Apply the harmonic part of L in q-space (Wigner formalism).
L_harm is block-diagonal: R sector: -(w_q_pert[nu])^2 * R[nu] a' sector: -(w1 - w2)^2 * a' b' sector: -(w1 + w2)^2 * b'
Returns:
| Type | Description |
|---|---|
(ndarray(psi_size), complex128)
|
|
Source code in tdscha/QSpaceLanczos.py
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 551 552 553 554 555 | |
get_chi_minus_q()
¶
Get chi^- for each unique pair as a list of (n_bands, n_bands) matrices.
chi^-_{nu1, nu2} = (w1 - w2)(n1 - n2) / (2 * w1 * w2) Entries involving acoustic modes (w < acoustic_eps) are set to 0.
Source code in tdscha/QSpaceLanczos.py
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 | |
get_chi_plus_q()
¶
Get chi^+ for each unique pair as a list of (n_bands, n_bands) matrices.
chi^+_{nu1, nu2} = (w1 + w2)(1 + n1 + n2) / (2 * w1 * w2) Entries involving acoustic modes (w < acoustic_eps) are set to 0.
Source code in tdscha/QSpaceLanczos.py
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 | |
get_alpha1_beta1_wigner_q(get_alpha=True)
¶
Get the perturbation on alpha (Upsilon) from the q-space psi.
Transforms a'/b' blocks back to the alpha1 perturbation that the Julia code needs.
alpha1[iq1, iq2] = (w1w2/X) * [sqrt(-0.5chi_minus)a' - sqrt(0.5chi_plus)*b']
Returns:
| Type | Description |
|---|---|
list of ndarray(n_bands, n_bands) — one per unique pair
|
|
Source code in tdscha/QSpaceLanczos.py
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 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 | |
apply_anharmonic_FT(transpose=False, **kwargs)
¶
Apply the anharmonic part of L in q-space (Wigner formalism).
Calls the Julia q-space extension to compute the perturbed averages, then assembles the output psi vector.
Returns:
| Type | Description |
|---|---|
(ndarray(psi_size), complex128)
|
|
Source code in tdscha/QSpaceLanczos.py
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 | |
apply_full_L(target=None, force_t_0=False, force_FT=True, transpose=False, fast_lanczos=True)
¶
Apply the full L operator in q-space.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
ndarray or None
|
If provided, copy into self.psi first. |
None
|
transpose
|
bool
|
Not used for Hermitian Lanczos. |
False
|
Returns:
| Type | Description |
|---|---|
(ndarray(psi_size), complex128)
|
|
Source code in tdscha/QSpaceLanczos.py
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 | |
run_FT(n_iter, save_dir=None, save_each=5, verbose=True, n_rep_orth=0, n_ortho=10, flush_output=True, debug=False, prefix='LANCZOS', run_simm=None, optimized=False)
¶
Run the Hermitian Lanczos algorithm for q-space.
This is the same structure as the parent run_FT but with: 1. Forced run_simm = True (Hermitian) 2. Hermitian dot products: psi.conj().dot(psi * mask).real 3. Complex128 psi 4. Real coefficients (guaranteed by Hermitian L)
Source code in tdscha/QSpaceLanczos.py
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 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 | |
prepare_mode_q(iq, band_index)
¶
Prepare perturbation for mode (q, nu).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
iq
|
int
|
Index of the q-point. |
required |
band_index
|
int
|
Band index (0-based). |
required |
Source code in tdscha/QSpaceLanczos.py
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 | |
prepare_ir(effective_charges=None, pol_vec=np.array([1.0, 0.0, 0.0]))
¶
PREPARE LANCZOS FOR INFRARED SPECTRUM COMPUTATION¶
In this subroutine we prepare the lanczos algorithm for the computation of the infrared spectrum signal.
Source code in tdscha/QSpaceLanczos.py
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 | |
prepare_raman(pol_vec_in=np.array([1.0, 0.0, 0.0]), pol_vec_out=np.array([1.0, 0.0, 0.0]), mixed=False, pol_in_2=None, pol_out_2=None, unpolarized=None)
¶
PREPARE LANCZOS FOR RAMAN SPECTRUM COMPUTATION¶
In this subroutine we prepare the lanczos algorithm for the computation of the Raman spectrum signal.
Source code in tdscha/QSpaceLanczos.py
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 | |
prepare_unpolarized_raman(index=0, debug=False)
¶
PREPARE UNPOLARIZED RAMAN SIGNAL¶
The raman tensor is read from the dynamical matrix provided by the original ensemble.
The perturbations are prepared according to the formula (see https://doi.org/10.1021/jp5125266)
..math:
I_unpol = 45/9 (xx + yy + zz)^2
+ 7/2 [(xx-yy)^2 + (xx-zz)^2 + (yy-zz)^2]
+ 7 * 3 [(xy)^2 + (yz)^2 + (xz)^2]
Note: This method prepares the raw components WITHOUT prefactors. Use get_prefactors_unpolarized_raman() to get the correct prefactors.
Source code in tdscha/QSpaceLanczos.py
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 | |
prepare_perturbation_q(iq, vector, add=False)
¶
Prepare perturbation at q from a real-space vector (3*n_at_uc,).
Projects the vector onto q-space eigenmodes at iq.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
iq
|
int
|
Index of the q-point. |
required |
vector
|
ndarray(3 * n_at_uc)
|
Perturbation vector in Cartesian real space. |
required |
add
|
bool
|
If true, the perturbation is added on top of the one already setup. Calling add does not cause a reset of the Lanczos. |
False
|
Source code in tdscha/QSpaceLanczos.py
1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 | |
reset_q()
¶
Reset the Lanczos state for q-space.
Source code in tdscha/QSpaceLanczos.py
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 | |
prepare_symmetrization(no_sym=False, verbose=True, symmetries=None)
¶
Build q-space symmetry matrices and cache them in Julia.
Overrides the parent to build sparse complex symmetry matrices in the q-space mode basis.
Uses spglib on the unit cell (not supercell) to get correct fractional-coordinate rotations and translations, then converts to Cartesian for the representation matrices.
Source code in tdscha/QSpaceLanczos.py
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 | |
init(use_symmetries=True)
¶
Initialize the q-space Lanczos calculation.
Source code in tdscha/QSpaceLanczos.py
1498 1499 1500 1501 | |
find_q_index(q_target, q_points, bg, tol=1e-06)
¶
Find the index of q_target in q_points up to a reciprocal lattice vector.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
q_target
|
ndarray(3)
|
The q-point to find (Cartesian coordinates). |
required |
q_points
|
ndarray(n_q, 3)
|
Array of q-points. |
required |
bg
|
ndarray(3, 3)
|
Reciprocal lattice vectors / (2*pi), rows are vectors. |
required |
tol
|
float
|
Tolerance for matching. |
1e-06
|
Returns:
| Type | Description |
|---|---|
int
|
Index of the matching q-point. |
Source code in tdscha/QSpaceLanczos.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |
QSpaceLanczos Class¶
tdscha.QSpaceLanczos.QSpaceLanczos(ensemble, lo_to_split=None, **kwargs)
¶
Bases: Lanczos
Q-space Lanczos for spectral calculations exploiting Bloch's theorem.
This class works in the q-space mode basis to exploit momentum conservation, reducing the psi vector size by ~N_cell and the anharmonic computation by ~N_cell.
Only Wigner formalism is supported. Requires Julia extension.
Initialize the Q-Space Lanczos.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ensemble
|
Ensemble
|
The SSCHA ensemble. |
required |
lo_to_split
|
string, ndarray, or None
|
LO-TO splitting mode. If None (default), LO-TO splitting correction is neglected. If "random", a random direction is used. If an ndarray, it specifies the q-direction for the LO-TO splitting correction. |
None
|
**kwargs
|
Additional keyword arguments passed to the parent Lanczos class. |
{}
|
Source code in tdscha/QSpaceLanczos.py
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | |
build_q_pair_map(iq_pert)
¶
Find all (iq1, iq2) pairs satisfying q1 + q2 = q_pert + G.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
iq_pert
|
int
|
Index of the perturbation q-point. |
required |
Source code in tdscha/QSpaceLanczos.py
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 | |
get_psi_size()
¶
Return the total size of the psi vector.
Source code in tdscha/QSpaceLanczos.py
344 345 346 347 348 | |
get_static_psi_size()
¶
Return psi size for the static layout: [R, one W sector].
This equals the end of the a' sector, i.e. the start of b'.
Source code in tdscha/QSpaceLanczos.py
350 351 352 353 354 355 | |
get_block_offset(pair_idx, sector='a')
¶
Get the offset into psi for a given pair index.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pair_idx
|
int
|
Index into self.unique_pairs. |
required |
sector
|
str
|
'a' for a' sector, 'b' for b' sector. |
'a'
|
Source code in tdscha/QSpaceLanczos.py
357 358 359 360 361 362 363 364 365 366 367 368 369 370 | |
get_block_size(pair_idx)
¶
Get the number of entries for this pair.
Source code in tdscha/QSpaceLanczos.py
372 373 374 | |
get_R1_q()
¶
Extract R^(1) from psi (n_bands complex entries at q_pert).
Source code in tdscha/QSpaceLanczos.py
376 377 378 | |
get_block(pair_idx, sector='a', source=None)
¶
Reconstruct full (n_bands, n_bands) matrix from psi storage.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pair_idx
|
int
|
Index into self.unique_pairs. |
required |
sector
|
str
|
'a' or 'b'. |
'a'
|
source
|
ndarray or None
|
If provided, read from this array instead of self.psi. |
None
|
Returns:
| Type | Description |
|---|---|
(ndarray(n_bands, n_bands), complex128)
|
|
Source code in tdscha/QSpaceLanczos.py
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | |
get_a1_block(pair_idx)
¶
Get the a'(1) block for pair_idx.
Source code in tdscha/QSpaceLanczos.py
439 440 441 | |
get_b1_block(pair_idx)
¶
Get the b'(1) block for pair_idx.
Source code in tdscha/QSpaceLanczos.py
443 444 445 | |
set_block_in_psi(pair_idx, matrix, sector, target_psi)
¶
Write a (n_bands, n_bands) block into the target psi vector.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pair_idx
|
int
|
|
required |
matrix
|
ndarray(n_bands, n_bands)
|
|
required |
sector
|
str(a or b)
|
|
required |
target_psi
|
ndarray — the psi vector to write into
|
|
required |
Source code in tdscha/QSpaceLanczos.py
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 | |
mask_dot_wigner(debug=False)
¶
Build the mask for Hermitian inner product with upper-triangle storage.
For full blocks (iq1 < iq2): factor 2 for the conjugate block (iq2, iq1). For diagonal blocks (iq1 == iq2): off-diagonal factor 2, diagonal factor 1.
Returns:
| Type | Description |
|---|---|
(ndarray(psi_size), float64)
|
|
Source code in tdscha/QSpaceLanczos.py
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 | |
apply_L1_FT(transpose=False)
¶
Apply the harmonic part of L in q-space (Wigner formalism).
L_harm is block-diagonal: R sector: -(w_q_pert[nu])^2 * R[nu] a' sector: -(w1 - w2)^2 * a' b' sector: -(w1 + w2)^2 * b'
Returns:
| Type | Description |
|---|---|
(ndarray(psi_size), complex128)
|
|
Source code in tdscha/QSpaceLanczos.py
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 551 552 553 554 555 | |
get_chi_minus_q()
¶
Get chi^- for each unique pair as a list of (n_bands, n_bands) matrices.
chi^-_{nu1, nu2} = (w1 - w2)(n1 - n2) / (2 * w1 * w2) Entries involving acoustic modes (w < acoustic_eps) are set to 0.
Source code in tdscha/QSpaceLanczos.py
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 | |
get_chi_plus_q()
¶
Get chi^+ for each unique pair as a list of (n_bands, n_bands) matrices.
chi^+_{nu1, nu2} = (w1 + w2)(1 + n1 + n2) / (2 * w1 * w2) Entries involving acoustic modes (w < acoustic_eps) are set to 0.
Source code in tdscha/QSpaceLanczos.py
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 | |
get_alpha1_beta1_wigner_q(get_alpha=True)
¶
Get the perturbation on alpha (Upsilon) from the q-space psi.
Transforms a'/b' blocks back to the alpha1 perturbation that the Julia code needs.
alpha1[iq1, iq2] = (w1w2/X) * [sqrt(-0.5chi_minus)a' - sqrt(0.5chi_plus)*b']
Returns:
| Type | Description |
|---|---|
list of ndarray(n_bands, n_bands) — one per unique pair
|
|
Source code in tdscha/QSpaceLanczos.py
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 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 | |
apply_anharmonic_FT(transpose=False, **kwargs)
¶
Apply the anharmonic part of L in q-space (Wigner formalism).
Calls the Julia q-space extension to compute the perturbed averages, then assembles the output psi vector.
Returns:
| Type | Description |
|---|---|
(ndarray(psi_size), complex128)
|
|
Source code in tdscha/QSpaceLanczos.py
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 | |
apply_full_L(target=None, force_t_0=False, force_FT=True, transpose=False, fast_lanczos=True)
¶
Apply the full L operator in q-space.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
ndarray or None
|
If provided, copy into self.psi first. |
None
|
transpose
|
bool
|
Not used for Hermitian Lanczos. |
False
|
Returns:
| Type | Description |
|---|---|
(ndarray(psi_size), complex128)
|
|
Source code in tdscha/QSpaceLanczos.py
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 | |
run_FT(n_iter, save_dir=None, save_each=5, verbose=True, n_rep_orth=0, n_ortho=10, flush_output=True, debug=False, prefix='LANCZOS', run_simm=None, optimized=False)
¶
Run the Hermitian Lanczos algorithm for q-space.
This is the same structure as the parent run_FT but with: 1. Forced run_simm = True (Hermitian) 2. Hermitian dot products: psi.conj().dot(psi * mask).real 3. Complex128 psi 4. Real coefficients (guaranteed by Hermitian L)
Source code in tdscha/QSpaceLanczos.py
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 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 | |
prepare_mode_q(iq, band_index)
¶
Prepare perturbation for mode (q, nu).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
iq
|
int
|
Index of the q-point. |
required |
band_index
|
int
|
Band index (0-based). |
required |
Source code in tdscha/QSpaceLanczos.py
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 | |
prepare_ir(effective_charges=None, pol_vec=np.array([1.0, 0.0, 0.0]))
¶
PREPARE LANCZOS FOR INFRARED SPECTRUM COMPUTATION¶
In this subroutine we prepare the lanczos algorithm for the computation of the infrared spectrum signal.
Source code in tdscha/QSpaceLanczos.py
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 | |
prepare_raman(pol_vec_in=np.array([1.0, 0.0, 0.0]), pol_vec_out=np.array([1.0, 0.0, 0.0]), mixed=False, pol_in_2=None, pol_out_2=None, unpolarized=None)
¶
PREPARE LANCZOS FOR RAMAN SPECTRUM COMPUTATION¶
In this subroutine we prepare the lanczos algorithm for the computation of the Raman spectrum signal.
Source code in tdscha/QSpaceLanczos.py
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 | |
prepare_unpolarized_raman(index=0, debug=False)
¶
PREPARE UNPOLARIZED RAMAN SIGNAL¶
The raman tensor is read from the dynamical matrix provided by the original ensemble.
The perturbations are prepared according to the formula (see https://doi.org/10.1021/jp5125266)
..math:
I_unpol = 45/9 (xx + yy + zz)^2
+ 7/2 [(xx-yy)^2 + (xx-zz)^2 + (yy-zz)^2]
+ 7 * 3 [(xy)^2 + (yz)^2 + (xz)^2]
Note: This method prepares the raw components WITHOUT prefactors. Use get_prefactors_unpolarized_raman() to get the correct prefactors.
Source code in tdscha/QSpaceLanczos.py
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 | |
prepare_perturbation_q(iq, vector, add=False)
¶
Prepare perturbation at q from a real-space vector (3*n_at_uc,).
Projects the vector onto q-space eigenmodes at iq.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
iq
|
int
|
Index of the q-point. |
required |
vector
|
ndarray(3 * n_at_uc)
|
Perturbation vector in Cartesian real space. |
required |
add
|
bool
|
If true, the perturbation is added on top of the one already setup. Calling add does not cause a reset of the Lanczos. |
False
|
Source code in tdscha/QSpaceLanczos.py
1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 | |
reset_q()
¶
Reset the Lanczos state for q-space.
Source code in tdscha/QSpaceLanczos.py
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 | |
prepare_symmetrization(no_sym=False, verbose=True, symmetries=None)
¶
Build q-space symmetry matrices and cache them in Julia.
Overrides the parent to build sparse complex symmetry matrices in the q-space mode basis.
Uses spglib on the unit cell (not supercell) to get correct fractional-coordinate rotations and translations, then converts to Cartesian for the representation matrices.
Source code in tdscha/QSpaceLanczos.py
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 | |
init(use_symmetries=True)
¶
Initialize the q-space Lanczos calculation.
Source code in tdscha/QSpaceLanczos.py
1498 1499 1500 1501 | |
Key Differences from Lanczos¶
| Feature | Lanczos (real-space) |
QSpaceLanczos (q-space) |
|---|---|---|
| Psi vector | Real (float64) |
Complex (complex128) |
| Inner product | Standard dot product | Hermitian: $\langle p |
| Lanczos type | Bi-conjugate or symmetric | Hermitian symmetric (\(b = c\), real coefficients) |
| Two-phonon pairs | All supercell mode pairs | \((q_1, q_2)\) pairs with \(q_1 + q_2 = q_\text{pert}\) |
| Symmetries | Full space group | Point group only (translations analytic) |
| Backend | C / MPI / Julia | Julia only |
Utility Functions¶
tdscha.QSpaceLanczos.find_q_index(q_target, q_points, bg, tol=1e-06)
¶
Find the index of q_target in q_points up to a reciprocal lattice vector.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
q_target
|
ndarray(3)
|
The q-point to find (Cartesian coordinates). |
required |
q_points
|
ndarray(n_q, 3)
|
Array of q-points. |
required |
bg
|
ndarray(3, 3)
|
Reciprocal lattice vectors / (2*pi), rows are vectors. |
required |
tol
|
float
|
Tolerance for matching. |
1e-06
|
Returns:
| Type | Description |
|---|---|
int
|
Index of the matching q-point. |
Source code in tdscha/QSpaceLanczos.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |