File size: 157,376 Bytes
da32f0b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 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 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 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 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 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 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 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 551 552 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 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 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 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 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 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 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 | \documentclass[%
reprint,%reprint,
superscriptaddress,
%groupedaddress,
%unsortedaddress,
%runinaddress,
%frontmatterverbose,
%preprint,
%showpacs,preprintnumbers,
%nofootinbib,
%nobibnotes,
%bibnotes,
amsmath,amssymb,
aps,
%pra,
prb,
%prl,
%rmp,
%prstab,
%prstper,
%floatfix,
]{revtex4-2}
%]{revtex4-1}
%\usepackage{graphics}
%\usepackage{graphicx}
%\usepackage{physics}
\usepackage{amsmath}
%\usepackage{amssymb}
%\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{siunitx}
\usepackage{xcolor}
\usepackage{natbib}
\usepackage{graphicx}
\usepackage{braket}
\usepackage{comment}
%\usepackage[square]{natbib}
\usepackage{bm}
\usepackage{epstopdf}
%\setcitestyle{super}
\usepackage{multirow}
\usepackage{array}
%\usepackage[utf8]{inputenc}
%\usepackage[T1]{fontenc}
%\usepackage{textcomp}
\usepackage[english]{babel}
\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
\usepackage{color}
\usepackage{todonotes}
\usepackage{physics}
%\usepackage{ulem}
\usepackage{calrsfs}
\DeclareMathAlphabet{\pazocal}{OMS}{zplm}{m}{n}
\newcommand{\CA}{\mathcal{A}}
\newcommand{\CH}{\mathcal{H}}
\newcommand{\CZ}{\mathcal{Z}}
\newcommand{\XO}{\hat{X}}
\newcommand{\cl}[1]{\textcolor[rgb]{0.85,0,0}{#1}}
\newcommand{\ct}[1]{\textcolor[rgb]{0,0.7,0}{#1}}
%\usepackage{abstract}
%\renewcommand{\abstract}[1]{}
%\renewcommand{\abstractname}{} % clear the title
%\renewcommand{\absnamepos}{empty} % originally center
\renewcommand\vec{\mathbf}
\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
\usepackage{comment}
%\usepackage{hyperref}% add hypertext capabilities
%\usepackage[mathlines]{lineno}% Enable numbering of text and display math
%\linenumbers\relax % Commence numbering lines
%\usepackage[showframe,%Uncomment any one of the following lines to test
%%scale=0.7, marginratio={1:1, 2:3}, ignoreall,% default settings
%%text={7in,10in},centering,
%%margin=1.5in,
%%total={6.5in,8.75in}, top=1.2in, left=0.9in, includefoot,
%%height=10in,a5paper,hmargin={3cm,0.8in},
%]{geometry}
\usepackage{braket}
\usepackage{color}
\usepackage{array}
\newcolumntype{?}{!{\vrule width 1pt}}
%\DeclareUnicodeCharacter{00A0}{~} % NBSP → nedělitelná mezera
%\DeclareUnicodeCharacter{202F}{\,} % úzká NBSP
%\DeclareUnicodeCharacter{2009}{\,} % thin space
%\DeclareUnicodeCharacter{2013}{--} % en–dash
%\DeclareUnicodeCharacter{2014}{---} % em—dash
%\DeclareUnicodeCharacter{2212}{$-$} % minus (matematický)
%\DeclareUnicodeCharacter{00B0}{\textdegree} % °
\begin{document}
%\title{GaAs quantum dots under quasi-uniaxial stress: experiment and theory}
%\title{Predictive theory of multi-particle states in GaAs/AlGaAs quantum dots: role of Coulomb exchange}
%\title{Role of Coulomb exchange in recombination of multi-particle complexes in GaAs/AlGaAs quantum dots}
%\title{Coulomb exchange role in recombination of quantum dot multi-particle complexes}
%\title{Role of Coulomb exchange in recombination of quantum dot multi-particle complexes}
%\title{Role of Coulomb exchange in recombination of multi-particle complexes}
%\title{Quantum dot multi-particle polarons}
% Title for PRL submission
%\title{Coulomb correlated multi-particle polarons}
%\title{Coulomb correlated multi-particle states of GaAs quantum dots}
%\title{{\color{black}Coulomb correlated multi-particle states of GaAs quantum dots}}
%\title{{\color{black}Coulomb correlated multi-particle states of weakly confined quantum dots}}
\title{{\color{black}Coulomb correlated multi-particle states of weakly confining GaAs quantum dots}}
\date{\today}
\author{Petr Klenovsk\'{y}}%
\email{klenovsky@physics.muni.cz}
\affiliation{Department of Condensed Matter Physics, Faculty of Science, Masaryk University, Kotl\'a\v{r}sk\'a~267/2, 61137~Brno, Czech~Republic}
\affiliation{Czech Metrology Institute, Okru\v{z}n\'i 31, 63800~Brno, Czech~Republic}
%\author{Armando Rastelli}
%\email{armando.rastelli@jku.at}
%\affiliation{Institute of Semiconductor and Solid State Physics, Johannes %Kepler University Linz, Altenbergerstra{\ss}e 69, A-4040 Linz, Austria}
\begin{abstract}
%
%ABSTRACT FILL
We compute the electronic and emission properties of Coulomb–correlated multi-particle states (X$^0$, X$^\pm$, XX) in weakly confining GaAs/AlGaAs quantum dots using an 8-band $\mathbf{k}\!\cdot\!\mathbf{p}$ model coupled to continuum elasticity and configuration interaction (CI). We evaluate polarization-resolved oscillator strengths and radiative rates both in the dipole approximation (DA) and in a quasi-electrostatic beyond-dipole (BDA) longitudinal formulation implemented via a Poisson reformulation exactly equivalent to the dyadic Green-tensor kernel. For the dots studied, BDA yields lifetimes in quantitative agreement with experiment, e.g., $\tau^X=0.279\,\mathrm{ns}$ vs $0.267\,\mathrm{ns}$ (exp.) and $\tau^{XX}=0.101\,\mathrm{ns}$ vs $0.115\,\mathrm{ns}$ (exp.). The framework also reproduces electric-field tuning of the multi-particle electronic structure and emission---including the indistinguishability inferred from $P=\tau^X/(\tau^X+\tau^{XX})$---and we assess sensitivity to CI-basis size and to electron–electron and hole–hole exchange.
%
%To our knowledge, this is the first quantitative application and validation of a nonlocal (BDA) radiative-rate theory for both exciton and biexciton transitions in bulk-like GaAs/AlGaAs quantum dots under a vertical electric field.
% corrected:
%The electronic and emission properties of Coulomb-correlated multi-particle states (X$^0$, X$^\pm$, XX) in weakly confining GaAs/AlGaAs quantum dots are calculated using an 8-band $\mathbf{k}\!\cdot\!\mathbf{p}$ model coupled to continuum elasticity and a configuration-interaction (CI) treatment of many-body states. We evaluate polarization-resolved oscillator strengths and radiative rates both in the dipole approximation (DA) and in a quasi-electrostatic beyond-dipole (BDA) longitudinal formulation. The BDA is implemented via an electrostatic Poisson reformulation that is exactly equivalent to the dyadic Green-tensor kernel. For the dots studied, the calculated transition energies and radiative lifetimes of exciton, trion, and biexciton complexes are in good agreement with independently measured values; we also assess the sensitivity to CI-basis size and to the treatment of electron–electron and hole–hole exchange. Furthermore, our model reproduces the multi-particle electronic structure and emission in a vertical electric field, achieving quantitative agreement with elsewhere published experiment, including photon indistinguishability.
\end{abstract}
%\pacs{Valid PACS appear here}
\maketitle
%\section{Introduction}
%
\section{Introduction}
\label{sec:intro}
%
Among the key components in quantum networks~\cite{Kimble2008}, quantum light sources are of dominant importance. As one of those, quantum dots (QDs) have been identified as
%
one of among the leading solid-state quantum light emitters~\cite{Aharonovich2016,Senellart2017,zhou2023epitaxial,Fox2025}.
%
Since their discovery~\cite{Ekimov1981,Ekimov1985,Leonard1993,Wegner2024} a considerable progress was obtained by improving the material quality to reduce charge noise~\cite{Kuhlmann2015,Lodahl2022}, by integrating QDs in photonic structures~\cite{Lodahl2015,Senellart2017,Liu2019,Wang2019b,Tomm2021}, by tailoring the QD properties through external electric~\cite{Bennett2010a}, magnetic~\cite{Bayer2002}, and elastic fields~\cite{Oyoko2001,seidl2006effect,Singh2010c,Gong2011e,Martin-Sanchez2018,Gaur2025}, and by implementing advanced excitation schemes~\cite{Wang2019b,Sbresny2022}.
Along the experimental development, theoretical computational models were also improved~\cite{brasken2000full,baer2005optical,Bester2006,tomic2009excitonic,Schliwa:09,Mittelstadt2022}, in order to capture the detailed physics of QDs and guide experimental efforts. In principle, such models could be used to design QDs with tailored properties without the need to perform many resource-intensive growth and measurements. If such models are quantitatively validated, they might enable the development of quantum light sources with increasing complexity.
One of the possibilities to prepare quantum light photons is the biexciton-exciton cascade~\cite{Winik2017,Kettler2016,He2016,Ozfidan2015,Huber2018a,Lehner2023}. Clearly, a model that would correctly predict the energy ordering of the biexciton (XX) with respect to the exciton (X) would be beneficial. It should also find the correct energies of the negative trions (X$^-$) and positive trions (X$^+$) relative to X, as well as the emission rates of all of the aforementioned complexes. Clearly, it is crucial to test such a theory with an experimentally reliably measured quantum system for which complete experimental data on multiple features of the system are available~\cite{yuan_xueyong_2023_7748664}. To this end, GaAs QDs in AlGaAs nanoholes~\cite{Rastelli2004,Wang2009,Plumhof2010,Plumhof2013,Huo2013a,Yuan2018a,Huang2021a,Heyn2010,Lobl2019} are chosen in this work. The reason is their high ensemble homogeneity~\cite{DaSilva2021,Keil2017a,Rastelli2004a}, negligible built-in strain, and limited intermixing between the GaAs core and AlGaAs barriers~\cite{Zaporski2023}.
In addition, these dots also exhibit the effect of weak confinement~\cite{Zhu2024,Stobbe2012,Tighineanu2016}, considerably decreasing the radiative emission lifetime of the emitted exciton and other complexes~\cite{Reindl2019}.
Although realistic models have been applied to this system in the past, such as for GaAs/AlGaAs QDs~\cite{Wang2009}, theoretical predictions have unfortunately not yet been able to faithfully reproduce the experimentally observed values. This holds even when realistic QD structural properties and advanced theoretical models were employed~\cite{Bester2006}.
In this work, we present correlated multi-particle calculations for large GaAs/AlGaAs QDs that successfully replicate the electronic and emission properties of the system. Our analysis demonstrates that, to achieve accurate agreement with the experimental data, it is essential to account for the weak confinement effects present in these QDs.
%\fi
% HERE BRIEF THEORY DESCRIPTION
%\section{Theory model for description of GaAs QD emission}
%\section{Theory model}
%\label{sec:theorDesc}
% THEORY BEGIN
\section{Theory model}
\label{sec:teorDesc}
%
\subsection{Single-particle states}
\label{subsec:kp}
%
In the calculations, we first implement the 3D QD model structure (size, shape, chemical composition). This is followed by the calculation of elastic strain by minimizing the total strain energy in the structure and subsequent evaluation of piezoelectricity up to non-linear terms~\cite{Bester:06,Beya-Wakata2011,Klenovsky2018}. The resulting strain and polarization fields then enter the eight-band $\mathbf{k}\!\cdot\!\mathbf{p}$ Hamiltonian~\cite{Bahder1990}.
In $\mathbf{k}\!\cdot\!\mathbf{p}$, implemented within the Nextnano++ computational suite~\cite{Birner2007}, we consider the single-particle states as linear combinations of $s$-orbital~like and $x$,~$y$,~$z$~$p$-orbital~like Bloch waves~\cite{Bahder1990,Birner2007} at $\Gamma$ point of the Brillouin zone,~i.e.,
%
\begin{equation}
\psi_{a_n}(\mathbf{r}) = \sum_{\nu\in\{s,x,y,z\}\otimes \{\uparrow,\downarrow\}} \chi_{a_n,\nu}(\mathbf{r})u^{\Gamma}_{\nu}\,,
\end{equation}
%
where $u^{\Gamma}_{\nu}$ is the Bloch wavefunction of $s$- and $p$-like conduction and valence bands at $\Gamma$ point, respectively, $\uparrow$/$\downarrow$ marks the spin, and $\chi_{a_n,\nu}$ is~the~envelope function for $a_n \in \{ e_n, h_n \}$ [$e$ ($h$) refers to electron (hole)] of the $n$-th single-particle state.
%
Thereafter, the following envelope-function $\mathbf{k}\!\cdot\!\mathbf{p}$ Schr\"{o}dinger equation is solved
%
%
\begin{equation}
\label{eq:EAkp}
\begin{split}
&\sum_{\nu\in\{s,x,y,z\}\otimes \{\uparrow,\downarrow\}}\Bigg(\Bigg[E_\nu^{\Gamma}-\frac{\hbar^2{\bf \nabla}^2}{2m_0}+V_{0}({\bf r})\Bigg]\delta_{\nu'\nu}+\\
&+\frac{\hbar}{2 m_0}\{\nabla,\mathbf p_{\nu'\nu}\}+ \hat{H}^{\rm str}_{\nu'\nu}({\bf r})+\hat{H}^{\rm so}_{\nu'\nu}({\bf r})\Bigg)\chi_{a_n,\nu'}({\bf r})=\\
&=\mathcal{E}^{k\cdot p}_n\cdot \chi_{a_n,\nu'}({\bf r}),
\end{split}
\end{equation}
%
%
where the term in round brackets on the left side of the equation is the envelope function $\mathbf{k}\!\cdot\!\mathbf{p}$ Hamiltonian $\hat{H}_0^{k\cdot p}$, and $\mathcal{E}^{k\cdot p}_n$ on the right side is the $n$-th single-particle eigenenergy. Note that we use in Eq.~\eqref{eq:EAkp} the symmetrized gradient–momentum operator $\frac{\hbar}{2m_0}\{\nabla,\mathbf p\}$, which guarantees a Hermitian $\mathbf{k}\!\cdot\!\mathbf{p}$ Hamiltonian. Furthermore, $E_\nu^{\Gamma}$ is the energy of bulk $\Gamma$-point Bloch band $\nu$, $V_0({\bf r})$ is the scalar potential (e.g. due to piezoelectricity), $\hat{H}^{\rm str}_{\nu'\nu}({\bf r})$ is the Pikus-Bir Hamiltonian introducing the effect of elastic strain~\cite{Bahder1990,Birner2007,t_zibold}, and $\hat{H}^{\rm so}_{\nu'\nu}({\bf r})$ is the spin-orbit Hamiltonian~\cite{Bahder1990,t_zibold}. Further, $\hbar$ is the reduced Planck's constant, $m_0$ the free electron mass, $\delta$ the Kronecker delta, and $\nabla := \left( \frac{\partial}{\partial x}, \frac{\partial}{\partial y}, \frac{\partial}{\partial z} \right)^T$.
Furthermore, in the eight-band $\mathbf{k}\!\cdot\!\mathbf{p}$ model, the spin–orbit interaction is explicitly included through the coupling between conduction and valence bands. In particular, the valence band states are described within the total angular momentum basis $\ket{J, m_J}$ with $J = 3/2$ (heavy and light holes) and $J = 1/2$ (split-off band), where $m_J$ combines both spin and orbital angular momentum. As a result, the single-particle states $\psi_k^{(e)}$ and $\psi_l^{(h)}$ obtained from the $\mathbf{k}\!\cdot\!\mathbf{p}$ Hamiltonian represent mixed spin–orbital character. Consequently, spin is not a good quantum number in this basis and cannot be unambiguously separated or assigned to the single-particle orbitals used in subsequent configuration interaction (CI) calculations.
The aforementioned Schr\"{o}dinger equation is then solved self-consistently with the Poisson equation to improve the spatial position of electron and hole wavefunctions~\cite{Birner2007}. Note that the Poisson equation solver used in the single-particle calculations does not include Coulomb exchange.
\subsection{Configuration interaction}
\label{subsec:CI}
The single-particle states computed by the aforementioned $\mathbf{k}\!\cdot\!\mathbf{p}$ are used as basis states for CI~\cite{Bryant1987,Schliwa:09,Klenovsky2017}. In CI we consider the multi-particle ($M$) $m$-th state as
%
%
\begin{equation}
\label{eq:SDgeneralForm}
\begin{aligned}
\Phi^{(e)}_{I}(x_1,\dots,x_{N_e})&=\frac{1}{\sqrt{N_e!}}\det[\psi_{e,i_a}(x_b)]_{a,b=1}^{N_e},\\
\Phi^{(h)}_{J}(y_1,\dots,y_{N_h})&=\frac{1}{\sqrt{N_h!}}\det[\psi_{h,j_a}(y_b)]_{a,b=1}^{N_h},\\
\ket{D_m^M} &= \Phi^{(e)}_{I}\Phi^{(h)}_{J}
\end{aligned}
\end{equation}
%
%where $N \equiv N_e + N_h$,
with $N_e$ ($N_h$) the number of electrons (holes) in the complex $M$ (e.g., $N_e = 2$, $N_h=1$ for the negative trion X$^-$). Due to spin orbit coupling the orbital and spin parts of $\psi$ cannot be separated, it is, thus, advantageous to write the multi-particle states considered in this work in compact form of second quantization. The multi-particle states are the neutral exciton X
%
%
\begin{equation}
\label{eq:suppl:CIWavefunctionX}
\bigl|X\bigr\rangle
=\sum^{n_e}_{i}\sum^{n_h}_{j} \eta^{X}_{ij}\;\hat c_i^\dagger\,\hat d_j^\dagger\,\bigl|\mathrm{GS}\bigr\rangle
\end{equation}
%
%
positive trion X$^+$
%
%
\begin{equation}
\label{eq:suppl:CIWavefunctionX+}
\bigl|X^+\bigr\rangle
=\sum^{n_e}_{i}\sum^{n_h}_{k<l} \eta^{X^+}_{i;k l}\;
\hat c_i^\dagger\,\hat d_k^\dagger\,\hat d_l^\dagger\,\bigl|\mathrm{GS}\bigr\rangle
\end{equation}
%
%
%
negative trion X$^-$
%
%
\begin{equation}
\label{eq:suppl:CIWavefunctionX-}
\bigl|X^-\bigr\rangle
=\sum^{n_e}_{i<j}\sum^{n_h}_{k} \eta^{X^-}_{ij;k}\;
\hat c_i^\dagger\,\hat c_j^\dagger\,\hat d_k^\dagger\,\bigl|\mathrm{GS}\bigr\rangle
\end{equation}
%
%
%
and the neutral biexciton XX
%
%
\begin{equation}
\label{eq:suppl:CIWavefunctionXX}
\bigl|XX\bigr\rangle
=\sum^{n_e}_{i<j}\sum^{n_h}_{k<l} \eta^{XX}_{ij;kl}\;
\hat c_i^\dagger\,\hat c_j^\dagger\,\hat d_k^\dagger\,\hat d_l^\dagger\,\bigl|\mathrm{GS}\bigr\rangle
\end{equation}
%
where $n_e$ and $n_h$ mark the number of single-particle states for electrons and holes in the CI basis, respectively. Moreover, $\hat c_i^\dagger$ creates an electron in conduction spinor orbital $i$, $\hat d_j^\dagger$ creates a hole in valence orbital $j$, and $|\mathrm{GS}\rangle$ marks the fully occupied valence band with electrons. The coefficients $\eta_{m}$ are normalized, i.e. $\sum_m |\eta_{m}|^2=1$.
Nevertheless, for numerical computational reasons, we still work in our algorithm using Eq.~\eqref{eq:SDgeneralForm} guarding the correct symmetries. Using the aforementioned $\left|D_m^{\rm M}\right>$ the multi-particle trial wavefunction reads
%
\begin{equation}
\Psi_i^{\rm M}(\mathbf{r}) = \sum_{\mathit m=1}^{n_{\rm SD}} \mathit \eta_{i,m} \left|D_m^{\rm M}\right>, \label{eq:CIwfSD}
\end{equation}
%
where $n_{\rm SD}$ is the number of Slater determinants $\left|D_m^{\rm M}\right>$, and $\eta_{i,m}$ is the $i$-th CI coefficient which is found along with the eigenenergy using the variational method by solving the Schr\"{o}dinger equation
%
\begin{equation}
\label{CISchrEq}
\hat{H}^{\rm{M}} \Psi_i^{\rm M}(\mathbf{r}) = E_i^{\rm{M}} \Psi_i^{\rm M}(\mathbf{r}),
\end{equation}
%
where $E_i^{\rm{M}}$ is the $i$-th eigenenergy of the multi-particle state $\Psi_i^{\rm M}(\mathbf{r})$, and~$\hat{H}^{\rm{M}}$ is the CI Hamiltonian which reads
%
\begin{equation}
\label{eq:CIHamiltonian}
\hat{H}^{\rm{M}}_{mn}=\delta_{mn}\left(\mathcal{E}_m^{{\rm M}(e)}-\mathcal{E}_m^{{\rm M}(h)}\right)+\left<D_m^{\rm M}\right| \hat{V}^{\rm{M}} \left|D_n^{\rm M}\right>,
\end{equation}
%
where $\delta_{mn}$ is the Kronecker delta and $\mathcal{E}_m^{{\rm M}(e)}$ $\left\{\mathcal{E}_m^{{\rm M}(h)}\right\}$ stands for sum of all single-particle electron (hole) eigenvalues corresponding to eigenstates contained in $\left|D_n^{\rm M}\right>$ for complex $M$. Furthermore, $\left<D_m^{\rm M}\right| \hat{V}^{\rm{M}} \left|D_n^{\rm M}\right>=\sum_{ijkl}V^{\rm{M}}_{ij,kl}$ for $i,j\in S_m$ and $k,l\in S_n$. The sets $S_m$ and $S_n$ contain indices of all single-particle wavefunctions in SDs $\left|D_m^{\rm M}\right>$ and $\left|D_n^{\rm M}\right>$, respectively. Furthermore, $V^{\rm{M}}_{ij,kl}$ is defined by
%
%
\begin{equation}
\label{eq:CoulombMatrElem}
\begin{split}
&V^{\rm{M}}_{ij,kl}\equiv(1-\delta_{ij})(1-\delta_{kl})\,q_iq_j\frac{e^2}{4\pi\varepsilon_0}\iint\left(\frac{{\rm d}{\bf r}_1{\rm d}{\bf r}_2}{\epsilon_r(\mathbf{r}_1,\mathbf{r}_2)|{\bf r}_1-{\bf r}_2|}\right)\\
&\times\left(\psi^*_i({\bf r}_1)\psi^*_j({\bf r}_2)\psi_k({\bf r}_1)\psi_l({\bf r}_2)
-\psi^*_i({\bf r}_1)\psi^*_j({\bf r}_2)\psi_l({\bf r}_1)\psi_k({\bf r}_2)\right)\\
&=(1-\delta_{ij})(1-\delta_{kl})\,q_iq_j\left(J^{\rm M}_{ij,kl} - K^{\rm M}_{ij,lk}\right),
\end{split}
\end{equation}
%
%
where $\varepsilon_0$ and $\epsilon_r(\mathbf{r}_1,\mathbf{r}_2)$ are the vacuum and spatially dependent relative permittivity, respectively, and $\delta_{ij}$ and $\delta_{kl}$ are the Kronecker deltas. Note that the terms in the first two brackets in Eq.~\eqref{eq:CoulombMatrElem} ensure that each single-particle state in SD occurs only once, thus preventing double counting. Furthermore, $q_i,q_j\in\{-1,1\}$ marks the sign of the charge of the quasiparticles in states with indices $i$ and $j$, respectively; $e$ is the elementary charge. The parameters $J^{\rm M}$ and $K^{\rm M}$ in Eq.~\eqref{eq:CoulombMatrElem} are direct and exchange Coulomb integrals.
%
%
Since the single-particle states are orthonormal, one finds that in Eq.~\eqref{eq:CIHamiltonian} there are only three possible kinds of matrix elements in CI,~i.e.
%
\begin{widetext}
\begin{equation}
\label{eq:CIHamiltonianSeparated}
\begin{split}
\hat{H}^M_{mn} &= \begin{cases}
\mathcal{E}_m^{{\rm M}(e)}-\mathcal{E}_m^{{\rm M}(h)}
+ \dfrac{1}{2}\sum\limits_{i,j\in S_n} &\left(J^{\rm M}_{ij,ij} - K^{\rm M}_{ij,ji}\right)
\text{ if $m = n$}\\
\dfrac{1}{2} \sum\limits_{j\in S_n} \left(J^{\rm M}_{ij,kj} - K^{\rm M}_{ij,jk}\right) & \text{if $D^M_m$ and $D^M_n$ differ by one single-particle state: $\ket{D^M_m} \propto c^\dagger_i c_k \ket{D^M_n}$ } \\
\dfrac{1}{2} \left(J^{\rm M}_{ij,kl} - K^{\rm M}_{ij,lk}\right) & \text{if $D^M_m$ and $D^M_n$ differ by two single-particle states: $\ket{D^M_m} \propto c^\dagger_i c^\dagger_j c_k c_l \ket{D^M_n}$ , $k<l$}.
\end{cases}
\end{split}
\end{equation}
\end{widetext}
\subsection{Method of calculation of configuration interaction}
\label{subsec:CIwaycalc}
%
The sixfold integral in Eq.~\eqref{eq:CoulombMatrElem} is evaluated using the~Green's function method~\cite{Schliwa:09,Klenovsky2017}. The integral in Eq.~\eqref{eq:CoulombMatrElem} is divided into a solution of Poisson's equation for one quasiparticle $a$ only, followed by a three-fold integral for the quasiparticle $b$ in the electrostatic potential generated by the particle $a$ and resulting from the previous step. That procedure, thus, makes the whole solution numerically more feasible and is described by
%
\begin{equation}
\begin{split}
\nabla\!\cdot\!\big[\varepsilon_0\,\varepsilon_r(\mathbf r_1)\,\nabla \hat{U}_{ajl}(\mathbf r_1)\big]
= -\,q_a e\, \Psi^*_{aj}(\mathbf r_1)\Psi_{al}(\mathbf r_1),\\
V^{M}_{ij,kl} = \int d^3 r_2\, \hat{U}_{ajl}(\mathbf r_2)\,(q_b e)\,\Psi^*_{bi}(\mathbf r_2)\Psi_{bk}(\mathbf r_2)\,.
\end{split}
\label{eq:GreenPoisson}
\end{equation}
%
where $a,b \in \{e,h\}$ and we have assumed that the spatial vectors $\mathbf{r}_1$ and $\mathbf{r}_2$ span the same space.
\subsection{Radiative rate \& lifetime}
\label{subsec:radiate}
%
Following Stobbe~{\sl et~al.} (see Ref.~\cite{Stobbe2012}, Eq.~(21) and App.~C), the spontaneous-emission rate of a many-body state $|i\rangle$
can be written as
%
\begin{equation}
\label{eq:Stobbe_master}
\Gamma_i(\omega)=\frac{2}{\hbar}\iint \mathbf J_i^*(\mathbf r)\cdot
\mathrm{Im}\,\mathbf G(\mathbf r,\mathbf r';\omega)\cdot \mathbf J_i(\mathbf r')\,d^3\mathbf r\,d^3\mathbf r',
\end{equation}
%
where the interband transition current is
%
\begin{equation}
\label{eq:Ji_CI_decomp}
\mathbf J_i(\mathbf r)=
\sum_{m=1}^{n_{\rm SD}} \eta_{i,m}
\sum_{(r,q)\in D_m^{\rm M}} \mathbf J^{(rq)}(\mathbf r),
\end{equation}
\begin{equation}
\label{eq:Jrq_env}
J^{(rq)}_{\alpha}(\mathbf r)=\frac{e}{m_0}
\sum_{\nu_v\in V}\sum_{\nu_c\in C}
\chi_{h_r,\nu_v}^{*}(\mathbf r)\,p_{\alpha,\nu_v\nu_c}\,\chi_{e_q,\nu_c}(\mathbf r),
\end{equation}
%
where $\alpha\in\{x,y,z\}$. In a homogeneous background Eq.~\eqref{eq:Stobbe_master} factorizes into a material local density of states (LDOS) prefactor and a transition amplitude,
%
\begin{equation}
\label{eq:GammaClasOsc}
\begin{aligned}
&\Gamma_{i,\mu}^{\rm M}(E_i)=\Gamma_{\rm cl}(E_i)\,f^{\rm M}_{i,\mu},\\
&\Gamma_{\rm cl}(E)=\frac{n(E)\,e^2 E^2}{6\pi m_0\varepsilon_0\hbar^2 c^3},\\
&E_i=\hbar\omega_i,
\end{aligned}
\end{equation}
%
where $\mu$ denotes the detected polarization and $n(E)$ is the dispersive refractive index. In Eq.~\eqref{eq:GammaClasOsc} we define $\Gamma_{\rm cl}(E)$ for a \emph{single} linear polarization.
The total radiative rate for transition $i$ is obtained by summing over the two transverse polarizations,
%
\begin{equation}
\label{eq:GammaSum}
\Gamma^{\rm M}_i(E) = \Gamma_{\rm cl}(E)\sum_{\mu \in \{x,y\}} f^{\rm M}_{i,\mu}\, .
\end{equation}
\emph{Dipole approximation (DA).} Approximating the extended current $\mathbf J$ by a point dipole yields the standard DA oscillator strength.
At the envelope-function level (spinor indices $\nu_v\in V$ for the valence block and $\nu_c\in C$ for the conduction block) we obtain
%
\begin{equation}
\label{eq:CIOscStrengthPol}
\begin{aligned}
f^{\rm M}_{i,\mu,{\rm DA}}
&=\frac{2}{m_0 E_i}\left|
\sum_{m=1}^{n_{\rm SD}}\eta_{i,m}
\sum_{(r,q)\in D_m^{\rm M}}
\sum_{\nu_v\in V}\sum_{\nu_c\in C}\times\right.\\
&\left.\times\int d^3\mathbf r\;
\chi_{h_r,\nu_v}^{*}(\mathbf r)\,
\big(\hat{\mathbf e}_\mu\!\cdot\!\mathbf p_{\nu_v\nu_c}\big)\,
\chi_{e_q,\nu_c}(\mathbf r)
\right|^2 ,
\end{aligned}
\end{equation}
%
with $\mathbf p_{\nu_v\nu_c}=\langle u^\Gamma_{\nu_v}|\hat{\mathbf p}|u^\Gamma_{\nu_c}\rangle$ (Kane $p$-form; $r/p$ gauge equivalence holds within the 8-band model).
\emph{Beyond-dipole approximation (BDA).} Retaining the finite emitter size corresponds to keeping the longitudinal projection of the current in Eq.~\eqref{eq:Stobbe_master}, yielding the BDA oscillator strength
%
\begin{equation}
\label{eq:CI_BDA_final}
\begin{aligned}
&f^{\rm M}_{i,\mu,{\rm BDA}}
=\frac{2}{m_0 E_i}\Bigg|
\sum_{m=1}^{n_{\rm SD}}\eta_{i,m}
\sum_{(r,q)\in D_m^{\rm M}}
\iint d^3\mathbf r\,d^3\mathbf r'\times\\
&\times\Big(\sum_{\nu_v\in V}\chi_{h_r,\nu_v}^{*}(\mathbf r)\Big)\,
\hat{\mathbf e}_\mu\!\cdot\!
\Big[\nabla_{\!r}\nabla_{\!r'}\,\frac{1}{4\pi\varepsilon_0\varepsilon_r|\mathbf r-\mathbf r'|}\Big]\!\cdot\!
\mathbf J^{(rq)}(\mathbf r')\Bigg|^2 .
\end{aligned}
\end{equation}
%
Equation~\eqref{eq:CI_BDA_final} reduces to \eqref{eq:CIOscStrengthPol} in the DA limit (local kernel). All beyond-dipole effects enter via the longitudinal projection acting on the extended current, while the LDOS prefactor remains homogeneous (transverse Im\,$\mathbf G_T$). Note, that Eq.~\eqref{eq:CI_BDA_final} is written for a homogeneous background permittivity. For spatially varying $\varepsilon_r(\mathbf r)$ we employ the equivalent Poisson formulation~\eqref{eq:CIOscStrengthPoissonWK}–\eqref{eq:CIOscStrengthPolWK} which we discuss in the following.
An equivalent Poisson form is obtained by introducing
%
\begin{equation}
\label{eq:OscStrPoissonSource}
\rho_{\rm eff}^{(rq)}(\mathbf r)=\frac{1}{i\omega_{rq}}\nabla\!\cdot\!\mathbf J^{(rq)}(\mathbf r),
\end{equation}
%
where $\omega_{rq}\equiv \omega_i$ and solving
%
\begin{equation}
\label{eq:CIOscStrengthPoissonWK}
\nabla\!\cdot[\varepsilon_0\varepsilon_r(\mathbf r)\nabla\Phi_{rq}(\mathbf r)]=-\,\rho_{\rm eff}^{(rq)}(\mathbf r),
\end{equation}
%
yielding
%
\begin{equation}
\label{eq:CIOscStrengthPolWK}
\begin{aligned}
f^{\rm M}_{i,\mu,{\rm BDA}}&=\frac{2}{m_0 E_i}\Bigg|\sum_{m,(r,q)}\eta_{i,m}\,\times\\
&\times\int d^3\mathbf r\Big(\sum_{\nu_v}\chi_{h_r,\nu_v}^{*}(\mathbf r)\Big)\,\hat{\mathbf e}_\mu\!\cdot\!\nabla\Phi_{rq}(\mathbf r)\Bigg|^2.
\end{aligned}
\end{equation}
%
Note, that in Eqs.~\eqref{eq:CI_BDA_final} and~\eqref{eq:CIOscStrengthPolWK} the hole spinor appears explicitly as the test function, whereas the electron spinor enters implicitly via the source Eq.~\eqref{eq:OscStrPoissonSource} and the potential $\Phi_{rq}$; an equivalent representation is obtained by interchanging the roles of conduction and valence spinors. The equations~\eqref{eq:CIOscStrengthPoissonWK}~and~\eqref{eq:CIOscStrengthPolWK} are solved in this work for BDA, while Eq.~\eqref{eq:CIOscStrengthPol} is solved in case of DA. The radiative lifetime is then computed from Eq.~\eqref{eq:GammaSum} as
%
\begin{equation}
\label{eq:lifetimeFromGamma}
\tau^{\rm M}_{i}=1/\Gamma^{\rm M}_{i}(E_i).
\end{equation}
\section{Results}
\label{sec:results}
%
\subsection{Exciton in GaAs/AlGaAs QDs}
\label{subsec:exciton}
%
\begin{figure}[htbp]
%\includegraphics[width=85mm]{AFM_sp_En.png}
\includegraphics[width=85mm]{AFM_sp_En_FSS_BD.png}
\caption{The simulated structure of GaAs ``QD1" with 2~nm GaAs wetting layer (WL) in Al$_{0.4}$Ga$_{0.6}$As is shown in panel (a) with marked QD and WL dimensions~\cite{Yuan2023,yuan_xueyong_2023_7748664}. Panel (b) gives the single-particle energies of the simulated QD for electrons (blue symbols) and holes (red symbols). For each kind of quasiparticle the energies of 42 states are shown in (b). The doubling of states for each energy level in (b) corresponds to the Kramers doublets of corresponding states. The black broken and green dotted vertical lines in (b) correspond to the largest CI bases used in this work for computations of ${\rm M}\in\{{\rm X}^-, {\rm X}^+, {\rm XX}\}$ and that for X$^0$, respectively. In panel (c) the ground state exciton energy (X$^0$) is shown (by green balls) as a function of symmetric CI basis size. The exciton energy reaches a value of X$^0$=1.5541~eV for a CI basis of 36 $\psi^{(e)}$ and 36 $\psi^{(h)}$ (36x36 CI basis). For comparison, the measured value of X$^0$ was~1.551152~eV~\cite{Yuan2023}. Panel (d) shows the evolution of bright (FSS\_B) and dark (FSS\_D) FSS of X$^0$ in blue and red balls, respectively, on symmetric CI basis size. That for the bright-dark (B-D) splitting of X$^0$ is given in (d) by violet balls. We see that computed bright FSS value of $7\pm0.5\,\mu$eV almost does not change with size of CI basis while B-D splitting ceases to change appreciably when reaching a value of 68~$\mu$eV. Note that a more detailed analysis of convergence of energies of X$^0$ and B-D splitting in panels (c) and (d) is given in Fig.~\ref{fig:Econv}~(a)~and~(b) in the Appendix~I.
}
\label{fig:AFMsp}
\end{figure}
%\end{figure*}
%As a test structure for the model
{\color{black}
In this work, we consider realistic GaAs/Al$_{0.4}$Ga$_{0.6}$As QD defined using AFM nanohole scan in Fig.~\ref{fig:AFMsp}~(a), being the same as ``QD1" in Refs.~\cite{Yuan2023,yuan_xueyong_2023_7748664}.
}
In Fig.~\ref{fig:AFMsp}~(b) 42 single-particle energies of electrons and holes for QD defined in (a) are given by blue and red balls, respectively. The computed energies of holes are much more closely spaced than those of electrons~\cite{Schliwa:09}. That is a consequence of the different effective masses being $0.067\,m_0$ and $0.51\,m_0$ for electrons and heavy holes in GaAs~\cite{Vurgaftman2001}, respectively.
In Fig.~\ref{fig:AFMsp}~(c) the evolution of the ground state exciton (X$^0$) energy with symmetric CI basis (i.e.~the same number of $\psi^{(e)}$ and $\psi^{(h)}$) is shown.
%
The decrease of X$^0$ energy change with nominal increase of CI basis size is observed (see Fig.~\ref{fig:Econv}~(a) in Appendix~I.). For CI basis of 36 $\psi^{(e)}$ and 36 $\psi^{(h)}$ that change is less than 8~$\mu$eV and a value of X$^0$ energy of 1.5541~eV is found. That value is larger by only 3~meV than the experimentally observed value of X$^0=1.551152$~eV~\cite{Yuan2023}.
Furthermore, in Fig.~\ref{fig:AFMsp}~(d) the CI basis convergence study is given also for bright and dark X$^0$ fine-structure splitting (FSS) by blue and red balls, respectively. Both quantities show negligible dependence on CI basis size, maintaining values of $7\pm0.5\,\mu$eV and $6\pm0.5\,\mu$eV for bright and dark FSS, respectively. Note that the experimental value of bright FSS was measured as 8.1~$\mu$eV~\cite{Yuan2023}. Moreover, in Fig.~\ref{fig:AFMsp}~(d) the variation of the energy separation between bright and dark X$^0$ doublet (B-D) is shown by violet balls. That energy separation increases with CI basis size, reaching a value of $\approx 68\,\mu$eV for 36x36 CI basis. At that point the nominal change in B-D splitting energy with CI basis increase is less than $0.05\,\mu$eV (see also Fig.~\ref{fig:Econv}~(b) in Appendix~I.). Sadly, the calculated value of B-D splitting does not reach the experimental value of $\approx 100\,\mu$eV~\cite{Yuan2023}. Nevertheless, taken together we can still conclude that the $\mathbf{k}\!\cdot\!\mathbf{p}$~+~CI calculations very well reproduce the experimental results on exciton published elsewhere~\cite{Yuan2023}.
%
\subsection{Multi-particle complexes in GaAs/AlGaAs QDs}
\label{subsec:multiparticle}
%
We now turn our attention to multi-particle complexes. For complexes consisting of more than one electron or one hole, the key numerical issue in CI implementation is related to the combinatorial complexity of generating all available SDs for a given number of single-particle CI basis states~\cite{Shumway2001,Rontani2006,Troparevsky2008,Schliwa:09}.
The convergence of CI is studied by increasing that number, leading to an exponential growth of the number of necessary SDs.
To limit that one can,~e.g., consider SDs that contain only one or two excited single-particle states, a method called singles-doubles CI (SDCI)~\cite{Sherrill1999,brasken2000full,Schliwa:09,Purvis1982}. Another possibility of reducing the number of SDs is to consider an asymmetric CI basis,~i.e., with different numbers of $\psi^{(e)}$ and $\psi^{(h)}$. That is verified by the fact that the energy densities of $\mathcal{E}^{(e)}$ and $\mathcal{E}^{(h)}$ are markedly different, see Fig.~\ref{fig:AFMsp}~(b). Note that in Fig.~\ref{fig:AFMsp}~(b) all computed $\mathcal{E}^{(e)}$ span 93~meV, while the same number of $\mathcal{E}^{(h)}$ spans only 16~meV.
\begin{figure*}[htbp]
\centering
%\includegraphics[width=170mm]{BindEXallEXnoEEHH.png}
\includegraphics[width=170mm]{BindEXallEXnoEEHHwkc.png}
\caption{Panels (a) and (b) show the sketches of the type of the Coulomb exchange considered in CI calculations for X$^-$, X$^+$, and XX. In (a) and (b) the red triangles mark the electron-hole ($K_{eh}$), blue boxes the electron-electron ($K_{ee}$), and balls hole-hole ($K_{hh}$) Coulomb exchange interaction. The empty symbols in (a) and (b) for XX mark $K_{eh}$ of one of the final states of the recombination of XX, i.e. X$^0$. The dimmed colored lines and symbols in (b) mark the exchange interactions omitted in the CI calculations in (d) (see text). In (c) and (d) the variations with respect to the number of single-particle states in CI basis for the binding energies of X$^-$, X$^+$, and XX relative to X$^0$ are shown. In correspondence to (a) and (b), in (c) all Coulomb direct and exchange integrals are considered, while in (d) $K_{ee}$ and $K_{hh}$, and partly $K_{eh}$ are omitted. The meaning of markers in (c) and (d) is the following: (i) full balls represent symmetric CI basis,~i.e., same number of $\psi^{(e)}$ and $\psi^{(h)}$; (ii) open squares represent the same but for SDCI approximation; (iii) open upward triangles give SDCI for asymmetric basis composed of twelve $\psi^{(e)}$ and varying number of $\psi^{(h)}$.
Note that there is a negligible energy offset $<100\,\mu$eV between the calculations performed using aforementioned methods, seen as steps for the overlapping CI bases \{e.g. CI bases of 10 and 18 in (c) and (d)\}.
The red horizontal broken line denotes experimental binding energy of X$^+$~\cite{Yuan2023}, blue of X$^-$~\cite{Huber2019}, and green of XX~\cite{DaSilva2021}. Notice that calculations reach very close to experimental values of binding energies in (d), i.e., for calculation with $K_{ee}$, $K_{hh}$ and partly $K_{eh}$ omitted [dimmed colored arrows in (b)], corresponding to the situation due to weak confinement effect, see also main text. Note that a more detailed analysis of convergence of binding energies of X$^+$, X$^-$ and XX is given in Fig.~\ref{fig:Econv}~(c) in the Appendix~I.
}
\label{fig:BindingEXnoEEHH}
%\end{figure}
\end{figure*}
%
In Fig.~\ref{fig:BindingEXnoEEHH} the evolution of binding energies of X$^-$, X$^+$, and XX with respect to X$^0$ with the number of CI basis states is shown. Due to the numerical complexity of the CI previously discussed, three levels of approximations are used with an increase of the CI basis size: (i) symmetric CI basis,~i.e., same number of $\psi^{(e)}$ and $\psi^{(h)}$; (ii) the same as for the previous point but for SDCI approximation; (iii) SDCI for the asymmetric CI basis composed of twelve $\psi^{(e)}$ and variable number of $\psi^{(h)}$. In all CI and SDCI calculations of the complexes in this work, the direct Coulomb integrals ($J$) between all quasiparticles are considered. However, two scenarios are discussed for the Coulomb exchange interaction ($K$) as indicated in Fig.~\ref{fig:BindingEXnoEEHH}~(a)~and~(b). In~(a), all Coulomb exchange is considered between all quasiparticles, while in~(b) the electron-electron ($K_{ee}$), hole-hole ($K_{hh}$) and part of the electron-hole ($K_{eh}$) Coulomb exchange interactions are neglected [neglected exchange interactions are marked by dimmed colored lines and arrows in~(b)].
In agreement with previous reports~\cite{Schliwa:09}, in Fig.~\ref{fig:BindingEXnoEEHH}~(c)~and~(d) without correlation X$^-$ is found to be binding while X$^+$ and XX are anti-binding. An increase in the size of the CI basis and associated correlation causes X$^+$ and XX to also become binding. The smallest increase in the binding energies of X$^-$, X$^+$, and XX is reached in Fig.~\ref{fig:BindingEXnoEEHH}~(c)~and~(d) for the SDCI with the basis consisting of 12 $\psi^{(e)}$ and 36 $\psi^{(h)}$ which is called the 12x36 SDCI basis in the following~\cite{supkptest}. Although in Fig.~\ref{fig:BindingEXnoEEHH}~(c) binding energy of X$^+$ increases towards the experimental value~\cite{Yuan2023}, that for X$^-$ reaches a magnitude somewhat smaller than reported in the measurements~\cite{Huber2019}. However, the calculations preserve at least the binding energy ordering of X$^+$ and X$^-$,~i.e. the magnitude of the former (X$^+$) being smaller. Sadly, calculations for binding energy of XX miss the experimental target by almost 2~meV. Note that a similar disagreement with experimental results as in Fig.~\ref{fig:BindingEXnoEEHH}~(c) was previously observed for smaller GaAs QDs~\cite{Wang2009}.
The convergence towards the experiment for the 12x36 SDCI basis is considerably improved for all complexes in Fig.~\ref{fig:BindingEXnoEEHH}~(d), where $K_{ee}$ and $K_{hh}$ and partly $K_{eh}$ are neglected~\cite{Honig2014}. The improvement is particularly striking for XX, the binding energy of which almost doubles between Fig.~\ref{fig:BindingEXnoEEHH}~(c)~and~(d) reaching very close to the measured value. Similarly as for X$^0$ in Fig.~\ref{fig:AFMsp} the convergences of the computed binding energies of X$^-$, X$^+$, and XX relative to X$^0$ are shown in more detail in Fig.~\ref{fig:Econv}~(c). There we can see that $|\Delta E/\Delta N|$, where $\Delta E$ marks the difference in binding energies for two consecutive CI basis state sizes and $N$ marks the number of CI basis states, is $<10\,\mu$eV for the 12x36 CI basis,~i.e. two orders of magnitude smaller than the absolute values of the binding energies for all studies complexes. We note that in all calculations for the 12x36 basis the energy of the correlated electron-hole exchange interaction $K_{eh}$ is 0.01~meV for trions and 0.18~meV for biexciton confirming that correlated direct Coulomb interaction $J$ mainly causes the large binding energy of complexes in Fig.~\ref{fig:BindingEXnoEEHH}~(c)~and~(d)~\cite{Schliwa:09}. The difference between Fig.~\ref{fig:BindingEXnoEEHH}~(c)~and~(d) is solely in the amount of correlated $K_{ee}$ and $K_{hh}$ (and partly $K_{eh}$, which however cannot account for the difference~\cite{supehexchange}), which naturally also depend on the complex $M$. Furthermore, note that by comparing the binding energies in Fig.~\ref{fig:BindingEXnoEEHH}~(c)~and~(d) it follows that the effect of correlated $K_{ee}$ and $K_{hh}$ on X$^-$ and XX is anti-binding, similar to that for the direct Coulomb interaction $J_{ee}$.
The suppression of exchange interactions $K_{ee}$ and $K_{hh}$ (and partly $K_{eh}$) in multi-excitonic complexes in GaAs/AlGaAs QDs can be understood by considering the asymmetry between direct and exchange Coulomb interactions, especially in large systems exhibiting weak confinement effects~\cite{Huber2019,Alshaikh2024}. For a QD with a base diameter of 60~nm and a height of 8~nm, as discussed in this work, the spatial extent of the electron and hole wavefunctions becomes comparable to or exceeds their correlation length. In such systems, the overlap of the fermionic orbitals becomes very sensitive to the distance between quasiparticles. Thus, even a rather small spatial separation due to direct Coulomb repulsion $J_{ee}$ or $J_{hh}$ between quasiparticles carrying the same charge in X$^-$, X$^+$ and XX might lead to severe suppression of the exchange integrals $K_{ee}$ and $K_{hh}$ which generally scale as $\sim1/r^3$~\cite{Takagahara2000,Huo2014,Krapek2015} where $r$ is the distance between quasiparticles. In contrast, the direct Coulomb interaction $J_{ee}$ (or $J_{hh}$) reduces with $r$ as $\sim 1/r$ and remains substantial because it depends primarily on the charge distribution and not on the overlap of the wavefunctions.
The aforementioned situation can naturally arise,~e.g., under quasi-resonant excitation conditions, where specific many-body states are selectively populated. For example, configurations with delocalized electron orbitals (due to their lower effective mass) but strongly confined holes may exhibit suppressed $K_{ee}$ and finite $K_{hh}$. Similarly, the mixed-spinor structure from spin–orbit coupling can suppress hole exchange in specific symmetry-adapted configurations. A key feature in the case of resonant excitation is the {\sl separation of charges}, which enhances the emission of particular complexes.
\subsection{Radiative lifetime of GaAs/AlGaAs QDs}
%
\begin{figure*}[htbp]
%\includegraphics[width=170mm]{QDdip_CIcomplex_lifetime_EXnoeehh_DAvsBDA.png}
\includegraphics[width=170mm]{QDdip_CIcomplex_lifetime_EXnoeehh_DAvsBDA_ns.png}
\caption{The evolution of the radiative lifetime of ground states of X, X$^+$, X$^-$, and XX as a function of the CI basis size when the overlap integrals are evaluated considering (a)~DA and (b) BDA~\cite{Stobbe2012}, see also main text. The meaning of markers in both panels is the same as that in Fig.~\ref{fig:BindingEXnoEEHH}~(c)~and~(d). The black (green) dotted horizontal line marks the measured values of exciton (biexciton) lifetime from Ref.~\cite{Schimpf2019}. Note that for both DA and BDA the calculations of lifetime do not change appreciably for CI bases larger than $14$ states. On the other hand, the calculations using BDA reproduce the experiments considerably better than those for DA.}
\label{fig:Lifetime}
\end{figure*}
%
We now discuss the calculations of radiative lifetime $\tau^{\rm M}$ of the complexes $M$ discussed in the previous section. The evolution of $\tau^{\rm M}$ with CI basis size for $M\in\left\{{\rm X}^0,\,{\rm X}^+,\,{\rm X}^-,\,{\rm XX}\right\}$ is shown in Fig.~\ref{fig:Lifetime}~(a)~and~(b) for the case of DA and BDA, respectively, see also Eqs.~\eqref{eq:CIOscStrengthPol}~and~~\eqref{eq:CIOscStrengthPolWK} in Sec.~\ref{subsec:radiate}. The multi-particle calculation for X$^+$, X$^-$, and XX in Fig.~\ref{fig:Lifetime} are performed with omitted exchange integrals $K_{ee}$, $K_{hh}$ and partly $K_{eh}$ similarly as in Fig.~\ref{fig:BindingEXnoEEHH}~(d)~\cite{Honig2014}.
Firstly, one can see in Fig.~\ref{fig:Lifetime} that lifetime $\tau^{\rm M}$ for all studied complexes converges already for a rather small ($<14$) CI basis size. Even the smallest CI basis of two electron and two hole single-particle states provides a very good estimation of the Coulomb correlated emission lifetime of complexes.
Secondly, in Fig.~\ref{fig:Lifetime}~(b) we see that for the case of BDA the lifetimes of X$^0$ and XX converge to values of $\tau^{\rm X}=0.279$~ns and $\tau^{\rm XX}=0.101$~ns, while for just DA in Fig.~\ref{fig:Lifetime}~(a), the corresponding values are $0.598$~ns and $0.217$~ns, respectively. The reported experimental values of X$^0$ and XX lifetimes are $0.267$~ns and $0.115$~ns~\cite{Schimpf2019}, respectively, and are marked by black and green broken horizontal lines in Fig.~\ref{fig:Lifetime}. Clearly, the computed results obtained for BDA are much closer to the experimental values than those for DA.
The ratio of the computed lifetimes in panel (b) relative to panel (a) of Fig.~\ref{fig:Lifetime} is $\approx 0.47$ and is approximately similar for all computed complexes. That lifetime reduction is connected with the size of the QD body and is associated with the weak confinement regime~\cite{Stobbe2010,Stobbe2012}. To confirm that, we have studied the size dependence of X$^0$ lifetime for another GaAs/Al$_0.4$Ga$_0.6$As QD and show the results in Fig.~\ref{fig:LifeVdep}~(b) in Appendix II. We can clearly see from that figure that while results for DA do not depend on QD size appreciably (except for the largest dots), the lifetime of X$^0$ computed using BDA progressively reduces with QD size. For consistency reasons, we discuss in Fig.~\ref{fig:LifeVdep}~(a) of Appendix II. also the QD size dependence of FSS and the B-D splitting of X$^0$, the latter showing considerable dependence on QD volume which might be one of the possible reasons for not completely fitting the value of B-D between theory and experiment in Fig.~\ref{fig:AFMsp}~(d).
\subsection{Electric field dependence of GaAs/AlGaAs QDs}
\label{subsec:elfield}
%
\begin{figure}[htbp]
%\includegraphics[width=85mm]{QDel_binding_lifetime.png}
\includegraphics[width=90mm]{QDel_fss_binding_lifetime.png}
%\includegraphics[width=85mm]{QDel_fss_binding_lifetime_zoom.png}
\caption{Panel (a) gives the vertical electric field dependence of X$^0$ energy (open squares, values on the right vertical axis), B-D splitting (full violet balls), bright FSS (full blue balls) and dark FSS (full red balls) of X$^0$. The values of latter three parameters are on the left vertical axis. In panel (b) we show the evolution of the binding energy of X$^+$ (red), X$^-$ (blue), and XX (green) relative to X$^0$ with vertically applied electric field on QD in Fig.~\ref{fig:AFMsp}~(a). The inset in (b) shows an enlarged part of the data corresponding to the band crossings. The meaning of axes in the inset are the same as for the whole panel (b). In (c) we give the radiative lifetime of X$^0$, X$^+$, X$^-$, and XX computed using BDA. In order to facilitate the comparison with Ref.~\cite{Undeutsch2025}, the electric field is given as a voltage applied on 300~nm thick layer, hence the label of horizontal axis of $U_{d300nm}$. The data coloring in (c) is the same as in (b) except for X$^0$ which is given in black. The curves in both panels are guides to the eye. The gray-shaded areas in all panels correspond to voltages not considered in Ref.~\cite{Undeutsch2025}. The calculations of X$^0$ were performed with the CI basis of 36 electron and 36 hole single-particle states while that for X$^+$, X$^-$ and XX using SDCI with basis of 12 electron and 36 hole states and with omitted $K_{ee}$, $K_{hh}$ and partly $K_{eh}$ exchange integrals see Fig.~\ref{fig:BindingEXnoEEHH}~(d).}
\label{fig:ELfldBindLife}
\end{figure}
%
In order to further test our previously discussed theory, we have computed the evolution of properties of X$^0$, binding energies of X$^+$, X$^-$, XX and the lifetime of those in vertical electric field, see Fig.~\ref{fig:ELfldBindLife}. Our aim was to compare our computed results with experiments discussed by Undeutsch~{\sl et~al.}~in Ref.~\cite{Undeutsch2025}. In our calculations the same GaAs/Al$_{0.4}$Ga$_{0.6}$As QD as that in Fig.~\ref{fig:AFMsp}~(a) was used (different from that studied in Ref.~\cite{Undeutsch2025}), but the vertically applied electric field with the same orientation and magnitudes was considered as in Ref.~\cite{Undeutsch2025}. In the following, we specify the magnitude of the electric field by providing the applied voltage $U_{d300nm}$ on a layer with a thickness of $d=300$~nm. The electric field magnitude is then clearly specified as $U_{d300nm}/d$ and consequently the voltage scale is the same as that used in Ref.~\cite{Undeutsch2025} to ease comparison.
In Fig.~\ref{fig:ELfldBindLife}~(a) the energy structure of X$^0$ in the vertical electric field is shown. We see a clear Stark shift of X$^0$ energy with maximum at 1.5548~eV occurring for the electric field corresponding to applied voltage of $U_{d300nm}=0.3$~V related to an electric field of 10~kV/cm. For the same value of $U_{d300nm}$ we observe in Fig.~\ref{fig:ELfldBindLife}~(a) the maximum B-D splitting of $69\,\mu$eV. Similarly as for X$^0$ energy, the B-D splitting follows the Stark curve and is reduced in magnitude for $U_{d300nm}=\pm4$~V to $30-40\,\mu$eV. The bright FSS first decreases with $U_{d300nm}>0$ to a negligible value of $\approx0.36\,\mu$eV at $U_{d300nm}=0.3$~V, i.e. field of 10~kV/cm, similar to Refs.~\cite{Ghali2012,Luo2012}. The crossing of minimal value of bright FSS is associated in our calculation with rotation of polarization axis of bright X$^0$. Further increase of $U_{d300nm}$ from the bright FSS minimum to positive or negative values results in increase of bright FSS magnitude. On the other hand, dark FSS is affected by electric field far less and has a mean value of $1.7\pm0.5\,\mu$eV.
In Fig.~\ref{fig:ELfldBindLife}~(b) the evolution of binding energy of X$^+$, X$^-$, and XX relative to X$^0$ with $U_{d300nm}$ is shown. The binding energy of XX reduces from its maximum again attained at $U_{d300nm}=0.3$~V with increase towards both positive and negative values of $U_{d300nm}$. Crossings with X$^0$ \{i.e. crossings of zero in Fig.~\ref{fig:ELfldBindLife}~(b)\} are obtained for $-1.1$~V and $1.8$~V, the former being close to experimental value of ca. $-1.5$~V in Ref.~\cite{Undeutsch2025}. The dependence of X$^+$ and X$^-$ binding energies on $U_{d300nm}$ is considerably asymmetric and different to that of XX. For negative values of $U_{d300nm}$ binding energy of X$^-$ first increase up to $4.2$~meV for $U_{d300nm}=-0.9$~V and then slowly decrease. On the other hand, for $U_{d300nm}>0$ the decrease in binding energy of X$^-$ is more rapid and is similar to that for XX. For the binding energy of X$^+$ a reversed scenario is observed. For that the increase of the binding energy occurs for $U_{d300nm}>0$ with maximum of $3.3$~meV attained at $U_{d300nm}=1.2$~V followed by further decrease of binding energy. However, the rapid decrease of X$^+$ binding energy occurs for $U_{d300nm}<0$. The rate of the decrease of binding energy of X$^-$ for $U_{d300nm}>0$ (X$^+$ for $U_{d300nm}<0$) is somewhat smaller than that of the binding energy of XX. That leads to the crossing of X$^-$ and XX (X$^+$ and XX) at $U_{d300nm}=4$~V ($U_{d300nm}=-4$~V).
Furthermore, in Fig.~\ref{fig:ELfldBindLife}~(c) the computed dependence of the radiative lifetime $\tau$ of X$^0$, X$^+$, X$^-$, and XX on $U_{d300nm}$ is shown. For the calculation of $\tau$ the BDA method of Eq.~\ref{eq:CIOscStrengthPolWK} was used since it was shown in Fig.~\ref{fig:Lifetime}~(b) that it provides results more faithfully reproducing the experimental values for the studied weakly confined GaAs/AlGaAs QD system. We see in Fig.~\ref{fig:ELfldBindLife}~(c) that $\tau^{X}$ depends on $U_{d300nm}$ almost quadratically, increasing for both $U_{d300nm}<0$ and $U_{d300nm}>0$. Similar dependence on $U_{d300nm}$ around zero is seen also for X$^-$, albeit the values of $\tau^{X-}$ are $\sim 0.5$ smaller. Contrary to that, $\tau^{X+}$ and $\tau^{XX}$ show considerably asymmetric though mutually similar dependence on $U_{d300nm}$. For $U_{d300nm}<0$ the values of $\tau^{XX}$ and $\tau^{X+}$ first slightly reduce to $\tau\approx0.1$~ns and then increase for further decreasing $U_{d300nm}$ up to $\tau\approx0.2$~ns followed by a rapid increase of $\tau$, crossing the value of $\tau^{X}$ for $U_{d300nm}=-2.4$~V. On the other hand, for $U_{d300nm}>0$ $\tau^{XX}$ and $\tau^{X+}$ rapidly increase, reaching maximal values of $\tau^{XX}=2$~ns and $\tau^{X+}=1.25$~ns at $U_{d300nm}=1.9$~V and $U_{d300nm}=1.2$~V, respectively. A further increase of $U_{d300nm}$ leads to the reduction of $\tau^{XX}$ and $\tau^{X+}$ magnitudes towards the values of $\tau^{X}$.
%
\begin{figure}[htbp]
%\includegraphics[width=85mm]{QDel_lifetime_ratio.png}
\includegraphics[width=85mm]{QDel_lifetime_ratio_indistinguishability.png}
\caption{The ratio of XX and X$^0$ lifetimes, $\tau^{XX}/\tau^X$ from Fig.~\ref{fig:ELfldBindLife}~(c) is shown by green open squares. The photon indistinguishability $\mathbb{P}$ from Eq.~\eqref{eq:GabrielIndisting} is given by full blue balls. Orange shaded area marks the interval of $\tau^{XX}/\tau^X$ measured in Fig.~2~(d) of Ref.~\cite{Undeutsch2025}. The gray-shaded area correspond to voltages not considered in Ref.~\cite{Undeutsch2025}. The gray horizontal line marks $\tau^{XX}/\tau^X=1$,~i.e. the situation when lifetimes of X and XX are the same. In order to facilitate the comparison with Ref.~\cite{Undeutsch2025}, the electric field is given as a voltage applied on 300~nm thick layer, hence the label of horizontal axis of $U_{d300nm}$.}
\label{fig:ELfldLifeRatio}
\end{figure}
The unusual behavior of XX and X$^+$ lifetimes can be explained by the different effective masses of electrons and holes, the former being much smaller than the latter as was discussed earlier. Since electrons are light, they do not feel the applied electric field that much as the holes which consist for all values of $U_{d300nm}$ of $>90$~\% of heavy holes. Hence, multi-particle complexes consisting of more than one hole, like XX and X$^+$ are influenced by $U_{d300nm}$ to larger extent. Conversely, in particular for X$^-$ the influence by $U_{d300nm}$ is rather timid.
The considerably smaller $\tau^{XX}$ than $\tau^{X}$ for $U_{d300nm}$ from $-2$~V to $0$~V was found advantageous in Ref.~\cite{Undeutsch2025} increasing the visibility of subsequently emitted photons by XX recombination in Hong-Ou-Mandel interference measurements. The indistinguishability of photons emitted in time domain is defined as~\cite{Undeutsch2025}
%
\begin{equation}
\label{eq:GabrielIndisting}
%\mathcal{P} = \frac{1}{\frac{\tau^{XX}}{\tau{X}}+1},
\mathbb{P} = \frac{1}{\frac{\tau^{XX}}{\tau^{X}}+1}.
\end{equation}
%
We show both $\frac{\tau^{XX}}{\tau^{X}}$ and $\mathbb{P}$ as a function of $U_{d300nm}$ in Fig.~\ref{fig:ELfldLifeRatio}. We compare our results of $\frac{\tau^{XX}}{\tau{X}}$, which we find for the interval of $U_{d300nm}$ from $-2$~V to $0$~V between $0.3$ and $0.45$, with measurements in Fig.2~d) of Ref.~\cite{Undeutsch2025} that are in the same voltage range between $0.3$ and $0.6$ (marked by orange shaded area in Fig.~\ref{fig:ELfldLifeRatio}). Thus, a surprisingly good agreement between theory and experiment is found. However, we note that for $U_{d300nm}$ in the range from $0$~V to $1$~V our results disagree with those in Ref.~\cite{Undeutsch2025} for the same interval. We attribute that disagreement to the fact that we used for our calculations a different QD than that which was measured in Ref.~\cite{Undeutsch2025} noting furthermore that in particular the emission properties of XX states are sensitive to QD properties and external perturbations~\cite{Bennett2005,Narvaez2005,Senellart2005,Alen2007,Undeutsch2025}.
Using Eq.~\eqref{eq:GabrielIndisting} we recalculate $\frac{\tau^{XX}}{\tau{X}}$ to indistinguishability $\mathbb{P}$ and show that by full blue balls in Fig.~\ref{fig:ELfldLifeRatio}. Clearly, the drop in $\tau^{XX}$ with respect to $\tau^{X}$ in the interval of $U_{d300nm}$ from $-2$~V to $0$~V is associated with $\mathbb{P}\approx0.75$ while for the rest of $U_{d300nm}$ we find $\mathbb{P}\approx0.2$ (except of the values of $U_{d300nm}$ from $3$~V to $4$~V when the electrons and holes are already considerably spatially separated by applied electric field and the emission of both types of complexes is fainter). Nevertheless, the calculations in this work confirm the large tunability of $\tau^{X}$ and $\tau^{XX}$ as well as their ratio.
\subsection{Role of preparation and detection of multi-particle states in GaAs/AlGaAs QDs}
\label{sec:Evgeny}
%
To further study the role of the omission of the electron-electron and hole-hole exchange integrals, we now turn our attention to the $\mathbf{k}\!\cdot\!\mathbf{p}$~+~CI calculation of the complexes of interacting electrons which were experimentally studied in Ref.~\cite{Millington-Hotze2025}. There, with the help of the nuclear spin relaxation (NSR) measurements, it was found that the magnetic field applied on very similar GaAs/AlGaAs QDs as in this work caused a crossing of singlet and triplet states for the ground state of the complex of four interacting electrons. It is important to stress that the calculations in Ref.~\cite{Millington-Hotze2025} were performed exactly in the same fashion as here (including considering AFM QD structure exactly corresponding to the QDs in that paper,~i.e. slightly different than here) and with the same $\mathbf{k}\!\cdot\!\mathbf{p}$ and CI codes as in this work. We now repeat in Fig.~\ref{fig:EC4eEn} the calculations~\cite{Millington-Hotze2025} for the Coulomb energies of the four-electron complex in vertical magnetic field. In particular, we focus here on the results obtained without and with the inclusion of the Coulomb exchange between electrons, see Fig.~\ref{fig:EC4eEn}~(a)~and~(b), respectively. Clearly, for the calculation without electron-electron Coulomb exchange \{Fig.~\ref{fig:EC4eEn}~(a)\} no singlet-triplet crossing, observed in experiment~\cite{Millington-Hotze2025}, is found contrary to the calculation with Coulomb exchange \{Fig.~\ref{fig:EC4eEn}~(b)\}. Hence, the electron-electron Coulomb exchange interactions must not be omitted in those CI calculations to faithfully reproduce the NSR experiments. However, that is in contradiction to the results presented in Fig.~\ref{fig:BindingEXnoEEHH}~(b)~and~(d) where the omission of the electron-electron Coulomb exchange integrals (which have the largest magnitudes in Fig.~\ref{fig:BindingEXnoEEHH}~(c), even larger than hole-hole exchange) led to better agreement with PL experiments.
Since the multi-particle physics of the GaAs/AlGaAs QDs as well as their states must be qualitatively the same for both kinds of experiments, we conclude that it is the difference between how the multi-particle states are initialized and detected that necessitates a different theoretical treatment of calculating states in those experiments.
%
%
\begin{figure}[htbp]
%\includegraphics[width=90mm]{QDEC_4eCIcomplex_energy_EXnoVSyes.png}
\includegraphics[width=85mm]{EC4eEn.png}
\caption{Computed Coulomb interaction energies of the four electron states in GaAs QD as a function of the magnetic field applied along vertical QD dimension~\cite{Millington-Hotze2025}. The calculations in (a) [(b)] were done without [with] considering the electron-electron Coulomb exchange interaction. The data in (b) show a crossing of the singlet and triplet state for magnetic field around 2.5~T as previously measured in Ref.~\cite{Millington-Hotze2025}. On the contrary, data in (a) show only anti-crossing of singlet and triplet states. The four electron states in this figure were computed by CI with CI basis of ten single-particle electron states.}
\label{fig:EC4eEn}
\end{figure}
%\end{figure*}
%
\section{Discussion}
\label{sec:discussion}
%
Finally, it is evident that the multi-particle calculations presented in this work, which involve omitting certain integrals to match the experimental results, lack elegance. However, even a fully self-consistent, correlated multi-particle solution would likely not fully capture the experimental observations in weakly confining QD systems. This is because, as demonstrated earlier, the theoretical description of results of multi-particle complexes observed in experiments depends on the specific conditions under which the system is prepared and measured. Concerning the former, whether the system is pumped using resonant~\cite{Undeutsch2025}, above-band excitation~\cite{Yuan2023}, or other methods (e.g. electric pumping~\cite{Millington-Hotze2025}). With respect to the latter, it is also important how the multi-particle states are probed, if it is by measuring their radiative emission~\cite{Yuan2023,Undeutsch2025} or interacting electrons and holes are studied via an interaction with some other system, like,~e.g., spins of atomic nuclei~\cite{Millington-Hotze2025}. We note that our XX calculations are compared to experiments in which XX was prepared by resonant two-photon excitation (TPE)~\cite{Schimpf2019,Undeutsch2025}, while the reference value from~\cite{DaSilva2021} originates from a perspective article that compiles results obtained under different excitation regimes.
%
%We note that our calculations of XX in this work were compared to experimental measurements of that~\cite{Schimpf2019,DaSilva2021,Undeutsch2025} performed under quasi-resonant pumping conditions.
In summary, this underscores the fact that a comprehensive theoretical model describing the correlated multi-particle electronic structure of QDs would also need to properly account for the entire experimental setup, including the nature and effects of the excitation, followed by theory description of the time evolution of the multi-particle states including their possible interaction with environment (e.g.~phonons), and finally taking into account the properties of the detection setup.
%\section{Conclusions and outlook}
%\section{Discussion and conclusions}
%
\section{Conclusions}
\label{sec:conclusion}
%
We combined 8-band $\mathbf{k}\!\cdot\!\mathbf{p}$ model coupled to continuum elasticity with CI and a Poisson-based implementation of nonlocal (BDA) radiative rates to predict polarization-resolved oscillator strengths and lifetimes of X$^0$, X$^\pm$, and XX in weakly confining GaAs/AlGaAs quantum dots. The BDA calculation quantitatively matches independent lifetimes (e.g., $\tau^X\!\approx\!0.279\,\mathrm{ns}$, $\tau^{XX}\!\approx\!0.101\,\mathrm{ns}$) and reproduces electric-field trends, including the $\tau^{XX}/\tau^X$ controlled indistinguishability. We quantified sensitivity to CI basis and to exchange; in weak confinement, selectively omitting electron–electron and hole–hole exchange for specific complexes can improve agreement for PL observables, whereas other probes (e.g., nuclear spin relaxation spin spectroscopy) require exchange to recover level crossings. The workflow provides a reproducible route that connects realistic many-body wavefunctions with nonlocal light–matter coupling, and it can be extended to include preparation- and detection-specific kinetics (e.g., phonons, pure dephasing) relevant for device operation.
% corrected
%In this work we theoretically investigate the electronic and emission properties of Coulomb-correlated multi-particle states in weakly confining GaAs/AlGaAs quantum dots using an 8-band $\mathbf{k}\!\cdot\!\mathbf{p}$ model coupled to continuum elasticity and a configuration-interaction (CI) treatment. Polarization-resolved oscillator strengths and radiative rates are evaluated both in the dipole approximation (DA) and in a quasi-electrostatic beyond-dipole (BDA) longitudinal formulation implemented via an electrostatic Poisson reformulation (exactly equivalent to the dyadic Green-tensor kernel).
%For the studied dots, calculated transition energies and radiative lifetimes of exciton, trion, and biexciton complexes are in good agreement with independently measured values. We benchmark the model also in a vertical electric field and including calculations of photon indistinguishability obtain quantitative agreement with experimental values published elsewhere. We further assess the sensitivity to CI-basis size and to the treatment of electron–electron and hole–hole exchange; in weak confinement, omitting exchange can improve agreement for selected observables, and we discuss the associated limitations.
\section{Acknowledgements}
\label{sec:acknowledgments}
%
% AR PLEASE ADD ACKNOWLEDGMENTS OF JKU
%The authors thank A. Haliovic and U. Kainz for technical assistance.
The author thanks G.~Undeutsch, E.A.~Chekhovich, X.~Yuan, A.~Rastelli
%, and J.~Huml\'i\v{c}ek
for fruitful discussions and providing the experimental data.
%
%
The author acknowledges funding from the European Innovation Council Pathfinder program under grant agreement No 101185617 (QCEED),
support by the project Quantum materials for applications in sustainable technologies, CZ.02.01.01/00/22\_008/0004572, and partly funding by Institutional Subsidy for Long-Term Conceptual Development of a Research Organization granted to the Czech Metrology Institute by the Ministry of Industry and Trade of the Czech Republic.
% HERE IS PAPER BIBLIOGRAPHY
%\bibliography{library}
%\bibliography{library.bib}
%apsrev4-2.bst 2019-01-14 (MD) hand-edited version of apsrev4-1.bst
%Control: key (0)
%Control: author (8) initials jnrlst
%Control: editor formatted (1) identically to author
%Control: production of article title (0) allowed
%Control: page (0) single
%Control: year (1) truncated
%Control: production of eprint (0) enabled
\begin{thebibliography}{87}%
\makeatletter
\providecommand \@ifxundefined [1]{%
\@ifx{#1\undefined}
}%
\providecommand \@ifnum [1]{%
\ifnum #1\expandafter \@firstoftwo
\else \expandafter \@secondoftwo
\fi
}%
\providecommand \@ifx [1]{%
\ifx #1\expandafter \@firstoftwo
\else \expandafter \@secondoftwo
\fi
}%
\providecommand \natexlab [1]{#1}%
\providecommand \enquote [1]{``#1''}%
\providecommand \bibnamefont [1]{#1}%
\providecommand \bibfnamefont [1]{#1}%
\providecommand \citenamefont [1]{#1}%
\providecommand \href@noop [0]{\@secondoftwo}%
\providecommand \href [0]{\begingroup \@sanitize@url \@href}%
\providecommand \@href[1]{\@@startlink{#1}\@@href}%
\providecommand \@@href[1]{\endgroup#1\@@endlink}%
\providecommand \@sanitize@url [0]{\catcode `\\12\catcode `\$12\catcode `\&12\catcode `\#12\catcode `\^12\catcode `\_12\catcode `\%12\relax}%
\providecommand \@@startlink[1]{}%
\providecommand \@@endlink[0]{}%
\providecommand \url [0]{\begingroup\@sanitize@url \@url }%
\providecommand \@url [1]{\endgroup\@href {#1}{\urlprefix }}%
\providecommand \urlprefix [0]{URL }%
\providecommand \Eprint [0]{\href }%
\providecommand \doibase [0]{https://doi.org/}%
\providecommand \selectlanguage [0]{\@gobble}%
\providecommand \bibinfo [0]{\@secondoftwo}%
\providecommand \bibfield [0]{\@secondoftwo}%
\providecommand \translation [1]{[#1]}%
\providecommand \BibitemOpen [0]{}%
\providecommand \bibitemStop [0]{}%
\providecommand \bibitemNoStop [0]{.\EOS\space}%
\providecommand \EOS [0]{\spacefactor3000\relax}%
\providecommand \BibitemShut [1]{\csname bibitem#1\endcsname}%
\let\auto@bib@innerbib\@empty
%</preamble>
\bibitem [{\citenamefont {Kimble}(2008)}]{Kimble2008}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {H.~J.}\ \bibnamefont {Kimble}},\ }\bibfield {title} {\bibinfo {title} {{The quantum internet}},\ }\href {http://www.qubitapplications.com} {\bibfield {journal} {\bibinfo {journal} {Nature}\ }\textbf {\bibinfo {volume} {453}},\ \bibinfo {pages} {1023} (\bibinfo {year} {2008})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Aharonovich}\ \emph {et~al.}(2016)\citenamefont {Aharonovich}, \citenamefont {Englund},\ and\ \citenamefont {Toth}}]{Aharonovich2016}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {I.}~\bibnamefont {Aharonovich}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Englund}},\ and\ \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Toth}},\ }\bibfield {title} {\bibinfo {title} {Solid-state single-photon emitters},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Nat. Photonics}\ }\textbf {\bibinfo {volume} {10}},\ \bibinfo {pages} {631} (\bibinfo {year} {2016})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Senellart}\ \emph {et~al.}(2017)\citenamefont {Senellart}, \citenamefont {Solomon},\ and\ \citenamefont {White}}]{Senellart2017}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Senellart}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Solomon}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {White}},\ }\bibfield {title} {\bibinfo {title} {High-performance semiconductor quantum-dot single-photon sources},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Nat. Nanotechnol.}\ }\textbf {\bibinfo {volume} {12}},\ \bibinfo {pages} {1026} (\bibinfo {year} {2017})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Zhou}\ \emph {et~al.}(2023)\citenamefont {Zhou}, \citenamefont {Zhai},\ and\ \citenamefont {Liu}}]{zhou2023epitaxial}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {X.}~\bibnamefont {Zhou}}, \bibinfo {author} {\bibfnamefont {L.}~\bibnamefont {Zhai}},\ and\ \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Liu}},\ }\bibfield {title} {\bibinfo {title} {Epitaxial quantum dots: a semiconductor launchpad for photonic quantum technologies},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Photonics Insights}\ }\textbf {\bibinfo {volume} {1}},\ \bibinfo {pages} {R07} (\bibinfo {year} {2023})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Fox}(2025)}]{Fox2025}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.~M.}\ \bibnamefont {Fox}},\ }\bibfield {title} {\bibinfo {title} {Solid-state quantum emitters},\ }\href {https://doi.org/https://doi.org/10.1002/qute.202300390} {\bibfield {journal} {\bibinfo {journal} {Adv. Quantum Technol.}\ }\textbf {\bibinfo {volume} {8}},\ \bibinfo {pages} {2300390} (\bibinfo {year} {2025})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Ekimov}\ and\ \citenamefont {Onushchenko}(1981)}]{Ekimov1981}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.~I.}\ \bibnamefont {Ekimov}}\ and\ \bibinfo {author} {\bibfnamefont {A.~A.}\ \bibnamefont {Onushchenko}},\ }\bibfield {title} {\bibinfo {title} {Quantum size effect in three-dimensional microscopic semiconductor crystals},\ }\href {http://jetpletters.ru/ps/0/article_23187.shtml} {\bibfield {journal} {\bibinfo {journal} {JETP Letters}\ }\textbf {\bibinfo {volume} {34}},\ \bibinfo {pages} {363} (\bibinfo {year} {1981})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Ekimov}\ \emph {et~al.}(1985)\citenamefont {Ekimov}, \citenamefont {Efros},\ and\ \citenamefont {Onushchenko}}]{Ekimov1985}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.~I.}\ \bibnamefont {Ekimov}}, \bibinfo {author} {\bibfnamefont {A.~L.}\ \bibnamefont {Efros}},\ and\ \bibinfo {author} {\bibfnamefont {A.~A.}\ \bibnamefont {Onushchenko}},\ }\bibfield {title} {\bibinfo {title} {Quantum size effect in semiconductor microcrystals},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Solid State Commun.}\ }\textbf {\bibinfo {volume} {56}},\ \bibinfo {pages} {921} (\bibinfo {year} {1985})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Leonard}\ \emph {et~al.}(1993)\citenamefont {Leonard}, \citenamefont {Krishnamurthy}, \citenamefont {Reaves}, \citenamefont {Denbaars},\ and\ \citenamefont {Petroff}}]{Leonard1993}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Leonard}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Krishnamurthy}}, \bibinfo {author} {\bibfnamefont {C.~M.}\ \bibnamefont {Reaves}}, \bibinfo {author} {\bibfnamefont {S.~P.}\ \bibnamefont {Denbaars}},\ and\ \bibinfo {author} {\bibfnamefont {P.~M.}\ \bibnamefont {Petroff}},\ }\bibfield {title} {\bibinfo {title} {{Direct formation of quantum-sized dots from uniform coherent islands of InGaAs on GaAs surfaces}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Appl. Phys. Lett.}\ }\textbf {\bibinfo {volume} {63}},\ \bibinfo {pages} {3203} (\bibinfo {year} {1993})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Wegner}\ and\ \citenamefont {Resch-Genger}(2024)}]{Wegner2024}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {K.~D.}\ \bibnamefont {Wegner}}\ and\ \bibinfo {author} {\bibfnamefont {U.}~\bibnamefont {Resch-Genger}},\ }\bibfield {title} {\bibinfo {title} {The 2023 nobel prize in chemistry: Quantum dots},\ }\href {http://dx.ddoi.org/10.1007/s00216-024-05225-9} {\bibfield {journal} {\bibinfo {journal} {Analytical and Bioanalytical Chemistry}\ }\textbf {\bibinfo {volume} {416}},\ \bibinfo {pages} {3283–3293} (\bibinfo {year} {2024})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Kuhlmann}\ \emph {et~al.}(2015)\citenamefont {Kuhlmann}, \citenamefont {Prechtel}, \citenamefont {Houel}, \citenamefont {Ludwig}, \citenamefont {Reuter}, \citenamefont {Wieck},\ and\ \citenamefont {Warburton}}]{Kuhlmann2015}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.~V.}\ \bibnamefont {Kuhlmann}}, \bibinfo {author} {\bibfnamefont {J.~H.}\ \bibnamefont {Prechtel}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Houel}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Ludwig}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Reuter}}, \bibinfo {author} {\bibfnamefont {A.~D.}\ \bibnamefont {Wieck}},\ and\ \bibinfo {author} {\bibfnamefont {R.~J.}\ \bibnamefont {Warburton}},\ }\bibfield {title} {\bibinfo {title} {{Transform-limited single photons from a single quantum dot}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Nat. Commun.}\ }\textbf {\bibinfo {volume} {6}},\ \bibinfo {pages} {8204} (\bibinfo {year} {2015})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Lodahl}\ \emph {et~al.}(2022)\citenamefont {Lodahl}, \citenamefont {Ludwig},\ and\ \citenamefont {Warburton}}]{Lodahl2022}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Lodahl}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Ludwig}},\ and\ \bibinfo {author} {\bibfnamefont {R.~J.}\ \bibnamefont {Warburton}},\ }\bibfield {title} {\bibinfo {title} {{A deterministic source of single photons}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Today}\ }\textbf {\bibinfo {volume} {75}},\ \bibinfo {pages} {44} (\bibinfo {year} {2022})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Lodahl}\ \emph {et~al.}(2015)\citenamefont {Lodahl}, \citenamefont {Mahmoodian},\ and\ \citenamefont {Stobbe}}]{Lodahl2015}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Lodahl}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Mahmoodian}},\ and\ \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Stobbe}},\ }\bibfield {title} {\bibinfo {title} {{Interfacing single photons and single quantum dots with photonic nanostructures}},\ }\href {https://journals.aps.org/rmp/abstract/10.1103/RevModPhys.87.347} {\bibfield {journal} {\bibinfo {journal} {Rev. Mod. Phys.}\ }\textbf {\bibinfo {volume} {87}},\ \bibinfo {pages} {347} (\bibinfo {year} {2015})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Liu}\ \emph {et~al.}(2019)\citenamefont {Liu}, \citenamefont {Su}, \citenamefont {Wei}, \citenamefont {Yao}, \citenamefont {da~Silva}, \citenamefont {Yu}, \citenamefont {Iles-Smith}, \citenamefont {Srinivasan}, \citenamefont {Rastelli}, \citenamefont {Li},\ and\ \citenamefont {Wang}}]{Liu2019}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Liu}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Su}}, \bibinfo {author} {\bibfnamefont {Y.}~\bibnamefont {Wei}}, \bibinfo {author} {\bibfnamefont {B.}~\bibnamefont {Yao}}, \bibinfo {author} {\bibfnamefont {S.~F.~C.}\ \bibnamefont {da~Silva}}, \bibinfo {author} {\bibfnamefont {Y.}~\bibnamefont {Yu}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Iles-Smith}}, \bibinfo {author} {\bibfnamefont {K.}~\bibnamefont {Srinivasan}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Li}},\ and\ \bibinfo {author} {\bibfnamefont {X.}~\bibnamefont {Wang}},\ }\bibfield {title} {\bibinfo {title} {{A solid-state source of strongly entangled photon pairs with high brightness and indistinguishability}},\ }\href {https://www.nature.com/articles/s41565-019-0435-9} {\bibfield {journal} {\bibinfo {journal} {Nat. Nanotechnol.}\ }\textbf {\bibinfo {volume} {14}},\ \bibinfo
{pages} {586} (\bibinfo {year} {2019})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Wang}\ \emph {et~al.}(2019)\citenamefont {Wang}, \citenamefont {He}, \citenamefont {Chung}, \citenamefont {Hu}, \citenamefont {Yu}, \citenamefont {Chen}, \citenamefont {Ding}, \citenamefont {Chen}, \citenamefont {Qin}, \citenamefont {Yang}, \citenamefont {Liu}, \citenamefont {Duan}, \citenamefont {Li}, \citenamefont {Gerhardt}, \citenamefont {Winkler}, \citenamefont {Jurkat}, \citenamefont {Wang}, \citenamefont {Gregersen}, \citenamefont {Huo}, \citenamefont {Dai}, \citenamefont {Yu}, \citenamefont {H{\"{o}}fling}, \citenamefont {Lu},\ and\ \citenamefont {Pan}}]{Wang2019b}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {H.}~\bibnamefont {Wang}}, \bibinfo {author} {\bibfnamefont {Y.-M.}\ \bibnamefont {He}}, \bibinfo {author} {\bibfnamefont {T.-H.}\ \bibnamefont {Chung}}, \bibinfo {author} {\bibfnamefont {H.}~\bibnamefont {Hu}}, \bibinfo {author} {\bibfnamefont {Y.}~\bibnamefont {Yu}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Chen}}, \bibinfo {author} {\bibfnamefont {X.}~\bibnamefont {Ding}}, \bibinfo {author} {\bibfnamefont {M.-C.}\ \bibnamefont {Chen}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Qin}}, \bibinfo {author} {\bibfnamefont {X.}~\bibnamefont {Yang}}, \bibinfo {author} {\bibfnamefont {R.-Z.}\ \bibnamefont {Liu}}, \bibinfo {author} {\bibfnamefont {Z.-C.}\ \bibnamefont {Duan}}, \bibinfo {author} {\bibfnamefont {J.-P.}\ \bibnamefont {Li}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Gerhardt}}, \bibinfo {author} {\bibfnamefont {K.}~\bibnamefont {Winkler}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Jurkat}}, \bibinfo {author}
{\bibfnamefont {L.-J.}\ \bibnamefont {Wang}}, \bibinfo {author} {\bibfnamefont {N.}~\bibnamefont {Gregersen}}, \bibinfo {author} {\bibfnamefont {Y.-H.}\ \bibnamefont {Huo}}, \bibinfo {author} {\bibfnamefont {Q.}~\bibnamefont {Dai}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Yu}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {H{\"{o}}fling}}, \bibinfo {author} {\bibfnamefont {C.-Y.}\ \bibnamefont {Lu}},\ and\ \bibinfo {author} {\bibfnamefont {J.-W.}\ \bibnamefont {Pan}},\ }\bibfield {title} {\bibinfo {title} {{Towards optimal single-photon sources from polarized microcavities}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Nat. Photonics}\ }\textbf {\bibinfo {volume} {13}},\ \bibinfo {pages} {770} (\bibinfo {year} {2019})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Tomm}\ \emph {et~al.}(2021)\citenamefont {Tomm}, \citenamefont {Javadi}, \citenamefont {Antoniadis}, \citenamefont {Najer}, \citenamefont {L{\"{o}}bl}, \citenamefont {Korsch}, \citenamefont {Schott}, \citenamefont {Valentin}, \citenamefont {Wieck}, \citenamefont {Ludwig},\ and\ \citenamefont {Warburton}}]{Tomm2021}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {N.}~\bibnamefont {Tomm}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Javadi}}, \bibinfo {author} {\bibfnamefont {N.~O.}\ \bibnamefont {Antoniadis}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Najer}}, \bibinfo {author} {\bibfnamefont {M.~C.}\ \bibnamefont {L{\"{o}}bl}}, \bibinfo {author} {\bibfnamefont {A.~R.}\ \bibnamefont {Korsch}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Schott}}, \bibinfo {author} {\bibfnamefont {S.~R.}\ \bibnamefont {Valentin}}, \bibinfo {author} {\bibfnamefont {A.~D.}\ \bibnamefont {Wieck}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Ludwig}},\ and\ \bibinfo {author} {\bibfnamefont {R.~J.}\ \bibnamefont {Warburton}},\ }\bibfield {title} {\bibinfo {title} {{A bright and fast source of coherent single photons}},\ }\href {https://ddoi.org/10.1038/s41565-020-00831-x} {\bibfield {journal} {\bibinfo {journal} {Nat. Nanotechnol.}\ }\textbf {\bibinfo {volume} {16}},\ \bibinfo {pages} {399}
(\bibinfo {year} {2021})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Bennett}\ \emph {et~al.}(2010)\citenamefont {Bennett}, \citenamefont {Pooley}, \citenamefont {Stevenson}, \citenamefont {Ward}, \citenamefont {Patel}, \citenamefont {{De La Giroday}}, \citenamefont {Sk{\"{o}}d}, \citenamefont {Farrer}, \citenamefont {Nicoll}, \citenamefont {Ritchie},\ and\ \citenamefont {Shields}}]{Bennett2010a}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.~J.}\ \bibnamefont {Bennett}}, \bibinfo {author} {\bibfnamefont {M.~A.}\ \bibnamefont {Pooley}}, \bibinfo {author} {\bibfnamefont {R.~M.}\ \bibnamefont {Stevenson}}, \bibinfo {author} {\bibfnamefont {M.~B.}\ \bibnamefont {Ward}}, \bibinfo {author} {\bibfnamefont {R.~B.}\ \bibnamefont {Patel}}, \bibinfo {author} {\bibfnamefont {A.~B.}\ \bibnamefont {{De La Giroday}}}, \bibinfo {author} {\bibfnamefont {N.}~\bibnamefont {Sk{\"{o}}d}}, \bibinfo {author} {\bibfnamefont {I.}~\bibnamefont {Farrer}}, \bibinfo {author} {\bibfnamefont {C.~A.}\ \bibnamefont {Nicoll}}, \bibinfo {author} {\bibfnamefont {D.~A.}\ \bibnamefont {Ritchie}},\ and\ \bibinfo {author} {\bibfnamefont {A.~J.}\ \bibnamefont {Shields}},\ }\bibfield {title} {\bibinfo {title} {{Electric-field-induced coherent coupling of the exciton states in a single quantum dot}},\ }\href {www.nature.com/naturephysics} {\bibfield {journal} {\bibinfo {journal} {Nat. Phys.}\ }\textbf {\bibinfo {volume} {6}},\
\bibinfo {pages} {947} (\bibinfo {year} {2010})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Bayer}\ \emph {et~al.}(2002)\citenamefont {Bayer}, \citenamefont {Ortner}, \citenamefont {Stern}, \citenamefont {Kuther}, \citenamefont {Gorbunov}, \citenamefont {Forchel}, \citenamefont {Hawrylak}, \citenamefont {Fafard}, \citenamefont {Hinzer}, \citenamefont {Reinecke}, \citenamefont {Walck}, \citenamefont {Reithmaier}, \citenamefont {Klopf},\ and\ \citenamefont {Sch{\"{a}}fer}}]{Bayer2002}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Bayer}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Ortner}}, \bibinfo {author} {\bibfnamefont {O.}~\bibnamefont {Stern}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Kuther}}, \bibinfo {author} {\bibfnamefont {A.~A.}\ \bibnamefont {Gorbunov}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Forchel}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Hawrylak}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Fafard}}, \bibinfo {author} {\bibfnamefont {K.}~\bibnamefont {Hinzer}}, \bibinfo {author} {\bibfnamefont {T.~L.}\ \bibnamefont {Reinecke}}, \bibinfo {author} {\bibfnamefont {S.~N.}\ \bibnamefont {Walck}}, \bibinfo {author} {\bibfnamefont {J.~P.}\ \bibnamefont {Reithmaier}}, \bibinfo {author} {\bibfnamefont {F.}~\bibnamefont {Klopf}},\ and\ \bibinfo {author} {\bibfnamefont {F.}~\bibnamefont {Sch{\"{a}}fer}},\ }\bibfield {title} {\bibinfo {title} {{Fine structure of neutral and charged excitons in
self-assembled In(Ga)As/(Al) GaAs quantum dots}},\ }\href {https://journals.aps.org/prb/abstract/10.1103/PhysRevB.65.195315} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {65}},\ \bibinfo {pages} {1953151} (\bibinfo {year} {2002})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Oyoko}\ \emph {et~al.}(2001)\citenamefont {Oyoko}, \citenamefont {Duque},\ and\ \citenamefont {Porras-Montenegro}}]{Oyoko2001}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {H.~O.}\ \bibnamefont {Oyoko}}, \bibinfo {author} {\bibfnamefont {C.~A.}\ \bibnamefont {Duque}},\ and\ \bibinfo {author} {\bibfnamefont {N.}~\bibnamefont {Porras-Montenegro}},\ }\bibfield {title} {\bibinfo {title} {Uniaxial stress dependence of the binding energy of shallow donor impurities in {GaAs-(Ga,AI)As} quantum dots},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {J. Appl. Phys.}\ }\textbf {\bibinfo {volume} {90}} (\bibinfo {year} {2001})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Seidl}\ \emph {et~al.}(2006)\citenamefont {Seidl}, \citenamefont {Kroner}, \citenamefont {H{\"o}gele}, \citenamefont {Karrai}, \citenamefont {Warburton}, \citenamefont {Badolato},\ and\ \citenamefont {Petroff}}]{seidl2006effect}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Seidl}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Kroner}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {H{\"o}gele}}, \bibinfo {author} {\bibfnamefont {K.}~\bibnamefont {Karrai}}, \bibinfo {author} {\bibfnamefont {R.~J.}\ \bibnamefont {Warburton}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Badolato}},\ and\ \bibinfo {author} {\bibfnamefont {P.~M.}\ \bibnamefont {Petroff}},\ }\bibfield {title} {\bibinfo {title} {Effect of uniaxial stress on excitons in a self-assembled quantum dot},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Appl. Phys. Lett.}\ }\textbf {\bibinfo {volume} {88}},\ \bibinfo {pages} {203113} (\bibinfo {year} {2006})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Singh}\ and\ \citenamefont {Bester}(2010)}]{Singh2010c}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Singh}}\ and\ \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Bester}},\ }\bibfield {title} {\bibinfo {title} {{Lower bound for the excitonic fine structure splitting in self-assembled quantum dots}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. Lett.}\ }\textbf {\bibinfo {volume} {104}},\ \bibinfo {pages} {196803} (\bibinfo {year} {2010})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Gong}\ \emph {et~al.}(2011)\citenamefont {Gong}, \citenamefont {Zhang}, \citenamefont {Guo},\ and\ \citenamefont {He}}]{Gong2011e}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Gong}}, \bibinfo {author} {\bibfnamefont {W.}~\bibnamefont {Zhang}}, \bibinfo {author} {\bibfnamefont {G.~C.}\ \bibnamefont {Guo}},\ and\ \bibinfo {author} {\bibfnamefont {L.}~\bibnamefont {He}},\ }\bibfield {title} {\bibinfo {title} {{Exciton polarization, Fine-structure splitting, and the asymmetry of quantum dots under uniaxial stress}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. Lett.}\ }\textbf {\bibinfo {volume} {106}},\ \bibinfo {pages} {227401} (\bibinfo {year} {2011})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Mart{\'{i}}n-S{\'{a}}nchez}\ \emph {et~al.}(2018)\citenamefont {Mart{\'{i}}n-S{\'{a}}nchez}, \citenamefont {Trotta}, \citenamefont {Mariscal}, \citenamefont {Serna}, \citenamefont {Piredda}, \citenamefont {Stroj}, \citenamefont {Edlinger}, \citenamefont {Schimpf}, \citenamefont {Aberl}, \citenamefont {Lettner}, \citenamefont {Wildmann}, \citenamefont {Huang}, \citenamefont {Yuan}, \citenamefont {Ziss}, \citenamefont {Stangl},\ and\ \citenamefont {Rastelli}}]{Martin-Sanchez2018}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Mart{\'{i}}n-S{\'{a}}nchez}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Trotta}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Mariscal}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Serna}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Piredda}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Stroj}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Edlinger}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Schimpf}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Aberl}}, \bibinfo {author} {\bibfnamefont {T.}~\bibnamefont {Lettner}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Wildmann}}, \bibinfo {author} {\bibfnamefont {H.}~\bibnamefont {Huang}}, \bibinfo {author} {\bibfnamefont {X.}~\bibnamefont {Yuan}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Ziss}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Stangl}},\ and\ \bibinfo {author} {\bibfnamefont
{A.}~\bibnamefont {Rastelli}},\ }\bibfield {title} {\bibinfo {title} {{Strain-tuning of the optical properties of semiconductor nanomaterials by integration onto piezoelectric actuators}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Semicond. Sci. Technol.}\ }\textbf {\bibinfo {volume} {33}},\ \bibinfo {pages} {013001} (\bibinfo {year} {2018})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Gaur}\ \emph {et~al.}(2025)\citenamefont {Gaur}, \citenamefont {Mudi}, \citenamefont {Klenovsky},\ and\ \citenamefont {Reitzenstein}}]{Gaur2025}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {K.}~\bibnamefont {Gaur}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Mudi}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Klenovsky}},\ and\ \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Reitzenstein}},\ }\bibfield {title} {\bibinfo {title} {Buried-stressor technology for the epitaxial growth and device integration of site-controlled quantum dots},\ }\href {https://doi.org/10.1088/2633-4356/ADD3AD} {\bibfield {journal} {\bibinfo {journal} {Mater. Quantum Technol.}\ }\textbf {\bibinfo {volume} {5}},\ \bibinfo {pages} {022002} (\bibinfo {year} {2025})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Sbresny}\ \emph {et~al.}(2022)\citenamefont {Sbresny}, \citenamefont {Hanschke}, \citenamefont {Sch{\"{o}}ll}, \citenamefont {Rauhaus}, \citenamefont {Scaparra}, \citenamefont {Boos}, \citenamefont {{Zubizarreta Casalengua}}, \citenamefont {Riedl}, \citenamefont {del Valle}, \citenamefont {Finley}, \citenamefont {J{\"{o}}ns},\ and\ \citenamefont {M{\"{u}}ller}}]{Sbresny2022}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {F.}~\bibnamefont {Sbresny}}, \bibinfo {author} {\bibfnamefont {L.}~\bibnamefont {Hanschke}}, \bibinfo {author} {\bibfnamefont {E.}~\bibnamefont {Sch{\"{o}}ll}}, \bibinfo {author} {\bibfnamefont {W.}~\bibnamefont {Rauhaus}}, \bibinfo {author} {\bibfnamefont {B.}~\bibnamefont {Scaparra}}, \bibinfo {author} {\bibfnamefont {K.}~\bibnamefont {Boos}}, \bibinfo {author} {\bibfnamefont {E.}~\bibnamefont {{Zubizarreta Casalengua}}}, \bibinfo {author} {\bibfnamefont {H.}~\bibnamefont {Riedl}}, \bibinfo {author} {\bibfnamefont {E.}~\bibnamefont {del Valle}}, \bibinfo {author} {\bibfnamefont {J.~J.}\ \bibnamefont {Finley}}, \bibinfo {author} {\bibfnamefont {K.~D.}\ \bibnamefont {J{\"{o}}ns}},\ and\ \bibinfo {author} {\bibfnamefont {K.}~\bibnamefont {M{\"{u}}ller}},\ }\bibfield {title} {\bibinfo {title} {{Stimulated Generation of Indistinguishable Single Photons from a Quantum Ladder System}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev.
Lett.}\ }\textbf {\bibinfo {volume} {128}},\ \bibinfo {pages} {093603} (\bibinfo {year} {2022})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Brask{\'e}n}\ \emph {et~al.}(2000)\citenamefont {Brask{\'e}n}, \citenamefont {Lindberg}, \citenamefont {Sundholm},\ and\ \citenamefont {Olsen}}]{brasken2000full}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Brask{\'e}n}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Lindberg}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Sundholm}},\ and\ \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Olsen}},\ }\bibfield {title} {\bibinfo {title} {Full configuration interaction calculations of electron-hole correlation effects in strain-induced quantum dots},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {61}},\ \bibinfo {pages} {7652} (\bibinfo {year} {2000})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Baer}\ \emph {et~al.}(2005)\citenamefont {Baer}, \citenamefont {Schulz}, \citenamefont {Schumacher}, \citenamefont {Gartner}, \citenamefont {Czycholl},\ and\ \citenamefont {Jahnke}}]{baer2005optical}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {N.}~\bibnamefont {Baer}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Schulz}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Schumacher}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Gartner}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Czycholl}},\ and\ \bibinfo {author} {\bibfnamefont {F.}~\bibnamefont {Jahnke}},\ }\bibfield {title} {\bibinfo {title} {Optical properties of self-organized wurtzite {InN/GaN} quantum dots: A combined atomistic tight-binding and full configuration interaction calculation},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Appl. Phys. Lett.}\ }\textbf {\bibinfo {volume} {87}},\ \bibinfo {pages} {231114} (\bibinfo {year} {2005})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Bester}\ \emph {et~al.}(2006{\natexlab{a}})\citenamefont {Bester}, \citenamefont {Zunger}, \citenamefont {Wu},\ and\ \citenamefont {Vanderbilt}}]{Bester2006}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Bester}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Zunger}}, \bibinfo {author} {\bibfnamefont {X.}~\bibnamefont {Wu}},\ and\ \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Vanderbilt}},\ }\bibfield {title} {\bibinfo {title} {{Effects of linear and nonlinear piezoelectricity on the electronic properties of InAsGaAs quantum dots}},\ }\href {https://journals.aps.org/prb/abstract/10.1103/PhysRevB.74.081305} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {74}},\ \bibinfo {pages} {081305(R)} (\bibinfo {year} {2006}{\natexlab{a}})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Tomi{\'c}}\ and\ \citenamefont {Vukmirovi{\'c}}(2009)}]{tomic2009excitonic}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Tomi{\'c}}}\ and\ \bibinfo {author} {\bibfnamefont {N.}~\bibnamefont {Vukmirovi{\'c}}},\ }\bibfield {title} {\bibinfo {title} {Excitonic and biexcitonic properties of single gan quantum dots modeled by 8-band k.p theory and configuration-interaction method},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {79}},\ \bibinfo {pages} {245330} (\bibinfo {year} {2009})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Schliwa}\ \emph {et~al.}(2009)\citenamefont {Schliwa}, \citenamefont {Winkelnkemper},\ and\ \citenamefont {Bimberg}}]{Schliwa:09}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Schliwa}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Winkelnkemper}},\ and\ \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Bimberg}},\ }\bibfield {title} {\bibinfo {title} {Few-particle energies versus geometry and composition of {${\text{In}}_{x}{\text{Ga}}_{1\ensuremath{-}x}\text{As}/\text{GaAs}$} self-organized quantum dots},\ }\href {http://link.aps.org/ddoi/10.1103/PhysRevB.79.075443} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {79}},\ \bibinfo {pages} {075443} (\bibinfo {year} {2009})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Mittelst{\"{a}}dt}\ \emph {et~al.}(2022)\citenamefont {Mittelst{\"{a}}dt}, \citenamefont {Schliwa},\ and\ \citenamefont {Klenovsk{\'{y}}}}]{Mittelstadt2022}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Mittelst{\"{a}}dt}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Schliwa}},\ and\ \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Klenovsk{\'{y}}}},\ }\bibfield {title} {\bibinfo {title} {{Modeling electronic and optical properties of III–V quantum dots—selected recent developments}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Light: Sci. Appl.}\ }\textbf {\bibinfo {volume} {11}},\ \bibinfo {pages} {17} (\bibinfo {year} {2022})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Winik}\ \emph {et~al.}(2017)\citenamefont {Winik}, \citenamefont {Cogan}, \citenamefont {Don}, \citenamefont {Schwartz}, \citenamefont {Gantz}, \citenamefont {Schmidgall}, \citenamefont {Livneh}, \citenamefont {Rapaport}, \citenamefont {Buks},\ and\ \citenamefont {Gershoni}}]{Winik2017}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Winik}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Cogan}}, \bibinfo {author} {\bibfnamefont {Y.}~\bibnamefont {Don}}, \bibinfo {author} {\bibfnamefont {I.}~\bibnamefont {Schwartz}}, \bibinfo {author} {\bibfnamefont {L.}~\bibnamefont {Gantz}}, \bibinfo {author} {\bibfnamefont {E.~R.}\ \bibnamefont {Schmidgall}}, \bibinfo {author} {\bibfnamefont {N.}~\bibnamefont {Livneh}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Rapaport}}, \bibinfo {author} {\bibfnamefont {E.}~\bibnamefont {Buks}},\ and\ \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Gershoni}},\ }\bibfield {title} {\bibinfo {title} {On-demand source of maximally entangled photon pairs using the biexciton-exciton radiative cascade},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {95}} (\bibinfo {year} {2017})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Kettler}\ \emph {et~al.}(2016)\citenamefont {Kettler}, \citenamefont {Paul}, \citenamefont {Olbrich}, \citenamefont {Zeuner}, \citenamefont {Jetter}, \citenamefont {Michler}, \citenamefont {Florian}, \citenamefont {Carmesin},\ and\ \citenamefont {Jahnke}}]{Kettler2016}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Kettler}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Paul}}, \bibinfo {author} {\bibfnamefont {F.}~\bibnamefont {Olbrich}}, \bibinfo {author} {\bibfnamefont {K.}~\bibnamefont {Zeuner}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Jetter}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Michler}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Florian}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Carmesin}},\ and\ \bibinfo {author} {\bibfnamefont {F.}~\bibnamefont {Jahnke}},\ }\bibfield {title} {\bibinfo {title} {Neutral and charged biexciton-exciton cascade in near-telecom-wavelength quantum dots},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {94}},\ \bibinfo {pages} {045303} (\bibinfo {year} {2016})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {He}\ \emph {et~al.}(2016)\citenamefont {He}, \citenamefont {Iff}, \citenamefont {Lundt}, \citenamefont {Baumann}, \citenamefont {Davanco}, \citenamefont {Srinivasan}, \citenamefont {Höfling},\ and\ \citenamefont {Schneider}}]{He2016}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {Y.~M.}\ \bibnamefont {He}}, \bibinfo {author} {\bibfnamefont {O.}~\bibnamefont {Iff}}, \bibinfo {author} {\bibfnamefont {N.}~\bibnamefont {Lundt}}, \bibinfo {author} {\bibfnamefont {V.}~\bibnamefont {Baumann}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Davanco}}, \bibinfo {author} {\bibfnamefont {K.}~\bibnamefont {Srinivasan}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Höfling}},\ and\ \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Schneider}},\ }\bibfield {title} {\bibinfo {title} {Cascaded emission of single photons from the biexciton in monolayered wse2},\ }\href {https://www.nature.com/articles/ncomms13409} {\bibfield {journal} {\bibinfo {journal} {Nat. Commun.}\ }\textbf {\bibinfo {volume} {7}},\ \bibinfo {pages} {1} (\bibinfo {year} {2016})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Ozfidan}\ \emph {et~al.}(2015)\citenamefont {Ozfidan}, \citenamefont {Korkusinski},\ and\ \citenamefont {Hawrylak}}]{Ozfidan2015}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {I.}~\bibnamefont {Ozfidan}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Korkusinski}},\ and\ \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Hawrylak}},\ }\bibfield {title} {\bibinfo {title} {Theory of biexcitons and biexciton-exciton cascade in graphene quantum dots},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {91}} (\bibinfo {year} {2015})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Huber}\ \emph {et~al.}(2018)\citenamefont {Huber}, \citenamefont {Reindl}, \citenamefont {Aberl}, \citenamefont {Rastelli},\ and\ \citenamefont {Trotta}}]{Huber2018a}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Huber}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Reindl}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Aberl}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ and\ \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Trotta}},\ }\bibfield {title} {\bibinfo {title} {{Semiconductor quantum dots as an ideal source of polarization-entangled photon pairs on-demand: A review}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {J. Opt.}\ }\textbf {\bibinfo {volume} {20}},\ \bibinfo {pages} {073002} (\bibinfo {year} {2018})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Lehner}\ \emph {et~al.}(2023)\citenamefont {Lehner}, \citenamefont {Seidelmann}, \citenamefont {Undeutsch}, \citenamefont {Schimpf}, \citenamefont {Manna}, \citenamefont {Gawełczyk}, \citenamefont {da~Silva}, \citenamefont {Yuan}, \citenamefont {Stroj}, \citenamefont {Reiter}, \citenamefont {Axt},\ and\ \citenamefont {Rastelli}}]{Lehner2023}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {B.~U.}\ \bibnamefont {Lehner}}, \bibinfo {author} {\bibfnamefont {T.}~\bibnamefont {Seidelmann}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Undeutsch}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Schimpf}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Manna}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Gawełczyk}}, \bibinfo {author} {\bibfnamefont {S.~F.~C.}\ \bibnamefont {da~Silva}}, \bibinfo {author} {\bibfnamefont {X.}~\bibnamefont {Yuan}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Stroj}}, \bibinfo {author} {\bibfnamefont {D.~E.}\ \bibnamefont {Reiter}}, \bibinfo {author} {\bibfnamefont {V.~M.}\ \bibnamefont {Axt}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ }\bibfield {title} {\bibinfo {title} {Beyond the four-level model: Dark and hot states in quantum dots degrade photonic entanglement},\ }\href {https://pubs.acs.org/ddoi/full/10.1021/acs.nanolett.2c04734} {\bibfield
{journal} {\bibinfo {journal} {Nano Lett.}\ }\textbf {\bibinfo {volume} {23}},\ \bibinfo {pages} {1409} (\bibinfo {year} {2023})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Yuan}\ \emph {et~al.}(2023{\natexlab{a}})\citenamefont {Yuan}, \citenamefont {Klenovsky},\ and\ \citenamefont {Rastelli}}]{yuan_xueyong_2023_7748664}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {X.}~\bibnamefont {Yuan}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Klenovsky}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ }\bibfield {title} {\bibinfo {title} {{GaAs quantum dots under quasi-uniaxial stress: experiment and theory (raw data)}},\ }\href {https://ddoi.org/10.5281/zenodo.7748664} {\ (\bibinfo {year} {2023}{\natexlab{a}})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Rastelli}\ \emph {et~al.}(2004{\natexlab{a}})\citenamefont {Rastelli}, \citenamefont {Stufler}, \citenamefont {Schliwa}, \citenamefont {Songmuang}, \citenamefont {Manzano}, \citenamefont {Costantini}, \citenamefont {Kern}, \citenamefont {Zrenner}, \citenamefont {Bimberg},\ and\ \citenamefont {Schmidt}}]{Rastelli2004}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Stufler}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Schliwa}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Songmuang}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Manzano}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Costantini}}, \bibinfo {author} {\bibfnamefont {K.}~\bibnamefont {Kern}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Zrenner}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Bimberg}},\ and\ \bibinfo {author} {\bibfnamefont {O.~G.}\ \bibnamefont {Schmidt}},\ }\bibfield {title} {\bibinfo {title} {{Hierarchical self-assembly of GaAs/AlGaAs quantum dots}},\ }\href {https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.92.166104} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. Lett.}\ }\textbf {\bibinfo {volume} {92}},\ \bibinfo {pages} {166104} (\bibinfo {year} {2004}{\natexlab{a}})}\BibitemShut
{NoStop}%
\bibitem [{\citenamefont {Wang}\ \emph {et~al.}(2009)\citenamefont {Wang}, \citenamefont {Kř{\'{a}}pek}, \citenamefont {Ding}, \citenamefont {Horton}, \citenamefont {Schliwa}, \citenamefont {Bimberg}, \citenamefont {Rastelli},\ and\ \citenamefont {Schmidt}}]{Wang2009}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {L.}~\bibnamefont {Wang}}, \bibinfo {author} {\bibfnamefont {V.}~\bibnamefont {Kř{\'{a}}pek}}, \bibinfo {author} {\bibfnamefont {F.}~\bibnamefont {Ding}}, \bibinfo {author} {\bibfnamefont {F.}~\bibnamefont {Horton}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Schliwa}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Bimberg}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ and\ \bibinfo {author} {\bibfnamefont {O.~G.}\ \bibnamefont {Schmidt}},\ }\bibfield {title} {\bibinfo {title} {{Self-assembled quantum dots with tunable thickness of the wetting layer: Role of vertical confinement on interlevel spacing}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {80}},\ \bibinfo {pages} {085309} (\bibinfo {year} {2009})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Plumhof}\ \emph {et~al.}(2010)\citenamefont {Plumhof}, \citenamefont {Kř{\'{a}}pek}, \citenamefont {Wang}, \citenamefont {Schliwa}, \citenamefont {Bimberg}, \citenamefont {Rastelli},\ and\ \citenamefont {Schmidt}}]{Plumhof2010}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {J.~D.}\ \bibnamefont {Plumhof}}, \bibinfo {author} {\bibfnamefont {V.}~\bibnamefont {Kř{\'{a}}pek}}, \bibinfo {author} {\bibfnamefont {L.}~\bibnamefont {Wang}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Schliwa}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Bimberg}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ and\ \bibinfo {author} {\bibfnamefont {O.~G.}\ \bibnamefont {Schmidt}},\ }\bibfield {title} {\bibinfo {title} {{Experimental investigation and modeling of the fine structure splitting of neutral excitons in strain-free {GaAs/AlxGa1-xAs} quantum dots}},\ }\href {https://journals.aps.org/prb/abstract/10.1103/PhysRevB.81.121309} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {81}},\ \bibinfo {pages} {121309} (\bibinfo {year} {2010})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Plumhof}\ \emph {et~al.}(2013)\citenamefont {Plumhof}, \citenamefont {Trotta}, \citenamefont {Křápek}, \citenamefont {Zallo}, \citenamefont {Atkinson}, \citenamefont {Kumar}, \citenamefont {Rastelli},\ and\ \citenamefont {Schmidt}}]{Plumhof2013}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {J.~D.}\ \bibnamefont {Plumhof}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Trotta}}, \bibinfo {author} {\bibfnamefont {V.}~\bibnamefont {Křápek}}, \bibinfo {author} {\bibfnamefont {E.}~\bibnamefont {Zallo}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Atkinson}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Kumar}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ and\ \bibinfo {author} {\bibfnamefont {O.~G.}\ \bibnamefont {Schmidt}},\ }\bibfield {title} {\bibinfo {title} {Tuning of the valence band mixing of excitons confined in {GaAs/AlGaAs} quantum dots via piezoelectric-induced anisotropic strain},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {87}},\ \bibinfo {pages} {075311} (\bibinfo {year} {2013})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Huo}\ \emph {et~al.}(2013)\citenamefont {Huo}, \citenamefont {Witek}, \citenamefont {Kumar}, \citenamefont {Cardenas}, \citenamefont {Zhang}, \citenamefont {Akopian}, \citenamefont {Singh}, \citenamefont {Zallo}, \citenamefont {Grifone}, \citenamefont {Kriegner}, \citenamefont {Trotta}, \citenamefont {Ding}, \citenamefont {Stangl}, \citenamefont {Zwiller}, \citenamefont {Bester}, \citenamefont {Rastelli},\ and\ \citenamefont {Schmidt}}]{Huo2013a}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {Y.~H.}\ \bibnamefont {Huo}}, \bibinfo {author} {\bibfnamefont {B.~J.}\ \bibnamefont {Witek}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Kumar}}, \bibinfo {author} {\bibfnamefont {J.~R.}\ \bibnamefont {Cardenas}}, \bibinfo {author} {\bibfnamefont {J.~X.}\ \bibnamefont {Zhang}}, \bibinfo {author} {\bibfnamefont {N.}~\bibnamefont {Akopian}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Singh}}, \bibinfo {author} {\bibfnamefont {E.}~\bibnamefont {Zallo}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Grifone}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Kriegner}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Trotta}}, \bibinfo {author} {\bibfnamefont {F.}~\bibnamefont {Ding}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Stangl}}, \bibinfo {author} {\bibfnamefont {V.}~\bibnamefont {Zwiller}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Bester}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont
{Rastelli}},\ and\ \bibinfo {author} {\bibfnamefont {O.~G.}\ \bibnamefont {Schmidt}},\ }\bibfield {title} {\bibinfo {title} {{A light-hole exciton in a quantum dot}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Nat. Phys.}\ }\textbf {\bibinfo {volume} {10}},\ \bibinfo {pages} {46} (\bibinfo {year} {2013})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Yuan}\ \emph {et~al.}(2018)\citenamefont {Yuan}, \citenamefont {Weyhausen-Brinkmann}, \citenamefont {Mart{\'{i}}n-S{\'{a}}nchez}, \citenamefont {Piredda}, \citenamefont {Kř{\'{a}}pek}, \citenamefont {Huo}, \citenamefont {Huang}, \citenamefont {Schimpf}, \citenamefont {Schmidt}, \citenamefont {Edlinger}, \citenamefont {Bester}, \citenamefont {Trotta},\ and\ \citenamefont {Rastelli}}]{Yuan2018a}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {X.}~\bibnamefont {Yuan}}, \bibinfo {author} {\bibfnamefont {F.}~\bibnamefont {Weyhausen-Brinkmann}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Mart{\'{i}}n-S{\'{a}}nchez}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Piredda}}, \bibinfo {author} {\bibfnamefont {V.}~\bibnamefont {Kř{\'{a}}pek}}, \bibinfo {author} {\bibfnamefont {Y.}~\bibnamefont {Huo}}, \bibinfo {author} {\bibfnamefont {H.}~\bibnamefont {Huang}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Schimpf}}, \bibinfo {author} {\bibfnamefont {O.~G.}\ \bibnamefont {Schmidt}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Edlinger}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Bester}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Trotta}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ }\bibfield {title} {\bibinfo {title} {{Uniaxial stress flips the natural quantization axis of a quantum dot for integrated quantum
photonics}},\ }\href {www.nature.com/naturecommunications} {\bibfield {journal} {\bibinfo {journal} {Nat. Commun.}\ }\textbf {\bibinfo {volume} {9}},\ \bibinfo {pages} {3058} (\bibinfo {year} {2018})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Huang}\ \emph {et~al.}(2021)\citenamefont {Huang}, \citenamefont {Csontosov{\'{a}}}, \citenamefont {Manna}, \citenamefont {Huo}, \citenamefont {Trotta}, \citenamefont {Rastelli},\ and\ \citenamefont {Klenovsk{\'{y}}}}]{Huang2021a}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {H.}~\bibnamefont {Huang}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Csontosov{\'{a}}}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Manna}}, \bibinfo {author} {\bibfnamefont {Y.}~\bibnamefont {Huo}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Trotta}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ and\ \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Klenovsk{\'{y}}}},\ }\bibfield {title} {\bibinfo {title} {{Electric field induced tuning of electronic correlation in weakly confining quantum dots}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {104}},\ \bibinfo {pages} {165401} (\bibinfo {year} {2021})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Heyn}\ \emph {et~al.}(2010)\citenamefont {Heyn}, \citenamefont {Klingbeil}, \citenamefont {Strelow}, \citenamefont {Stemmann}, \citenamefont {Mendach},\ and\ \citenamefont {Hansen}}]{Heyn2010}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Heyn}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Klingbeil}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Strelow}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Stemmann}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Mendach}},\ and\ \bibinfo {author} {\bibfnamefont {W.}~\bibnamefont {Hansen}},\ }\bibfield {title} {\bibinfo {title} {{Single-dot Spectroscopy of GaAs Quantum Dots Fabricated by Filling of Self-assembled Nanoholes}},\ }\href {http://www.nanoscalereslett.com/content/5/10/1633} {\bibfield {journal} {\bibinfo {journal} {Nanoscale Res. Lett.}\ }\textbf {\bibinfo {volume} {5}},\ \bibinfo {pages} {1633} (\bibinfo {year} {2010})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {L\"obl}\ \emph {et~al.}(2019)\citenamefont {L\"obl}, \citenamefont {Zhai}, \citenamefont {Jahn}, \citenamefont {Ritzmann}, \citenamefont {Huo}, \citenamefont {Wieck}, \citenamefont {Schmidt}, \citenamefont {Ludwig}, \citenamefont {Rastelli},\ and\ \citenamefont {Warburton}}]{Lobl2019}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {M.~C.}\ \bibnamefont {L\"obl}}, \bibinfo {author} {\bibfnamefont {L.}~\bibnamefont {Zhai}}, \bibinfo {author} {\bibfnamefont {J.-P.}\ \bibnamefont {Jahn}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Ritzmann}}, \bibinfo {author} {\bibfnamefont {Y.}~\bibnamefont {Huo}}, \bibinfo {author} {\bibfnamefont {A.~D.}\ \bibnamefont {Wieck}}, \bibinfo {author} {\bibfnamefont {O.~G.}\ \bibnamefont {Schmidt}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Ludwig}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ and\ \bibinfo {author} {\bibfnamefont {R.~J.}\ \bibnamefont {Warburton}},\ }\bibfield {title} {\bibinfo {title} {Correlations between optical properties and voronoi-cell area of quantum dots},\ }\href {https://link.aps.org/ddoi/10.1103/PhysRevB.100.155402} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {100}},\ \bibinfo {pages} {155402} (\bibinfo {year} {2019})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {da~Silva}\ \emph {et~al.}(2021)\citenamefont {da~Silva}, \citenamefont {Undeutsch}, \citenamefont {Lehner}, \citenamefont {Manna}, \citenamefont {Krieger}, \citenamefont {Reindl}, \citenamefont {Schimpf}, \citenamefont {Trotta},\ and\ \citenamefont {Rastelli}}]{DaSilva2021}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {S.~F.~C.}\ \bibnamefont {da~Silva}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Undeutsch}}, \bibinfo {author} {\bibfnamefont {B.}~\bibnamefont {Lehner}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Manna}}, \bibinfo {author} {\bibfnamefont {T.~M.}\ \bibnamefont {Krieger}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Reindl}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Schimpf}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Trotta}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ }\bibfield {title} {\bibinfo {title} {{GaAs quantum dots grown by droplet etching epitaxy as quantum light sources}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Appl. Phys. Lett.}\ }\textbf {\bibinfo {volume} {119}},\ \bibinfo {pages} {120502} (\bibinfo {year} {2021})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Keil}\ \emph {et~al.}(2017)\citenamefont {Keil}, \citenamefont {Zopf}, \citenamefont {Chen}, \citenamefont {H{\"{o}}fer}, \citenamefont {Zhang}, \citenamefont {Ding},\ and\ \citenamefont {Schmidt}}]{Keil2017a}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Keil}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Zopf}}, \bibinfo {author} {\bibfnamefont {Y.}~\bibnamefont {Chen}}, \bibinfo {author} {\bibfnamefont {B.}~\bibnamefont {H{\"{o}}fer}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Zhang}}, \bibinfo {author} {\bibfnamefont {F.}~\bibnamefont {Ding}},\ and\ \bibinfo {author} {\bibfnamefont {O.~G.}\ \bibnamefont {Schmidt}},\ }\bibfield {title} {\bibinfo {title} {{Solid-state ensemble of highly entangled photon sources at rubidium atomic transitions}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Nat. Commun.}\ }\textbf {\bibinfo {volume} {8}} (\bibinfo {year} {2017})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Rastelli}\ \emph {et~al.}(2004{\natexlab{b}})\citenamefont {Rastelli}, \citenamefont {Songmuang},\ and\ \citenamefont {Schmidt}}]{Rastelli2004a}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Songmuang}},\ and\ \bibinfo {author} {\bibfnamefont {O.~G.}\ \bibnamefont {Schmidt}},\ }\bibfield {title} {\bibinfo {title} {{Self-assembled GaAs/AlGaAs quantum dots by molecular beam epitaxy and in situ AsBr3 etching}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. E: Low-Dimens. Syst. Nanostruct.}\ }\textbf {\bibinfo {volume} {23}},\ \bibinfo {pages} {384} (\bibinfo {year} {2004}{\natexlab{b}})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Zaporski}\ \emph {et~al.}(2023)\citenamefont {Zaporski}, \citenamefont {Shofer}, \citenamefont {Bodey}, \citenamefont {Manna}, \citenamefont {Gillard}, \citenamefont {Appel}, \citenamefont {Schimpf}, \citenamefont {da~Silva}, \citenamefont {Jarman}, \citenamefont {Delamare}, \citenamefont {Park}, \citenamefont {Haeusler}, \citenamefont {Chekhovich}, \citenamefont {Rastelli}, \citenamefont {Gangloff}, \citenamefont {Atatüre},\ and\ \citenamefont {Gall}}]{Zaporski2023}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {L.}~\bibnamefont {Zaporski}}, \bibinfo {author} {\bibfnamefont {N.}~\bibnamefont {Shofer}}, \bibinfo {author} {\bibfnamefont {J.~H.}\ \bibnamefont {Bodey}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Manna}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Gillard}}, \bibinfo {author} {\bibfnamefont {M.~H.}\ \bibnamefont {Appel}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Schimpf}}, \bibinfo {author} {\bibfnamefont {S.~F.~C.}\ \bibnamefont {da~Silva}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Jarman}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Delamare}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Park}}, \bibinfo {author} {\bibfnamefont {U.}~\bibnamefont {Haeusler}}, \bibinfo {author} {\bibfnamefont {E.~A.}\ \bibnamefont {Chekhovich}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}}, \bibinfo {author} {\bibfnamefont {D.~A.}\ \bibnamefont {Gangloff}}, \bibinfo {author} {\bibfnamefont
{M.}~\bibnamefont {Atatüre}},\ and\ \bibinfo {author} {\bibfnamefont {C.~L.}\ \bibnamefont {Gall}},\ }\bibfield {title} {\bibinfo {title} {Ideal refocusing of an optically active spin qubit under strong hyperfine interactions},\ }\href {https://www.nature.com/articles/s41565-022-01282-2} {\bibfield {journal} {\bibinfo {journal} {Nat. Nanotechnol.}\ }\textbf {\bibinfo {volume} {18}} (\bibinfo {year} {2023})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Zhu}\ \emph {et~al.}(2024)\citenamefont {Zhu}, \citenamefont {Boehme}, \citenamefont {Feld}, \citenamefont {Moskalenko}, \citenamefont {Dirin}, \citenamefont {Mahrt}, \citenamefont {Stöferle}, \citenamefont {Bodnarchuk}, \citenamefont {Efros}, \citenamefont {Sercel}, \citenamefont {Kovalenko},\ and\ \citenamefont {Rainò}}]{Zhu2024}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Zhu}}, \bibinfo {author} {\bibfnamefont {S.~C.}\ \bibnamefont {Boehme}}, \bibinfo {author} {\bibfnamefont {L.~G.}\ \bibnamefont {Feld}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Moskalenko}}, \bibinfo {author} {\bibfnamefont {D.~N.}\ \bibnamefont {Dirin}}, \bibinfo {author} {\bibfnamefont {R.~F.}\ \bibnamefont {Mahrt}}, \bibinfo {author} {\bibfnamefont {T.}~\bibnamefont {Stöferle}}, \bibinfo {author} {\bibfnamefont {M.~I.}\ \bibnamefont {Bodnarchuk}}, \bibinfo {author} {\bibfnamefont {A.~L.}\ \bibnamefont {Efros}}, \bibinfo {author} {\bibfnamefont {P.~C.}\ \bibnamefont {Sercel}}, \bibinfo {author} {\bibfnamefont {M.~V.}\ \bibnamefont {Kovalenko}},\ and\ \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Rainò}},\ }\bibfield {title} {\bibinfo {title} {Single-photon superradiance in individual caesium lead halide quantum dots},\ }\href {https://doi.org/10.1038/s41586-023-07001-8} {\bibfield {journal} {\bibinfo {journal}
{Nature}\ }\textbf {\bibinfo {volume} {626}},\ \bibinfo {pages} {535} (\bibinfo {year} {2024})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Stobbe}\ \emph {et~al.}(2012)\citenamefont {Stobbe}, \citenamefont {Kristensen}, \citenamefont {Mortensen}, \citenamefont {Hvam}, \citenamefont {Mørk},\ and\ \citenamefont {Lodahl}}]{Stobbe2012}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Stobbe}}, \bibinfo {author} {\bibfnamefont {P.~T.}\ \bibnamefont {Kristensen}}, \bibinfo {author} {\bibfnamefont {J.~E.}\ \bibnamefont {Mortensen}}, \bibinfo {author} {\bibfnamefont {J.~M.}\ \bibnamefont {Hvam}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Mørk}},\ and\ \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Lodahl}},\ }\bibfield {title} {\bibinfo {title} {Spontaneous emission from large quantum dots in nanostructures: Exciton-photon interaction beyond the dipole approximation},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {86}},\ \bibinfo {pages} {085304} (\bibinfo {year} {2012})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Tighineanu}\ \emph {et~al.}(2016)\citenamefont {Tighineanu}, \citenamefont {Daveau}, \citenamefont {Lehmann}, \citenamefont {Beere}, \citenamefont {Ritchie}, \citenamefont {Lodahl},\ and\ \citenamefont {Stobbe}}]{Tighineanu2016}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Tighineanu}}, \bibinfo {author} {\bibfnamefont {R.~S.}\ \bibnamefont {Daveau}}, \bibinfo {author} {\bibfnamefont {T.~B.}\ \bibnamefont {Lehmann}}, \bibinfo {author} {\bibfnamefont {H.~E.}\ \bibnamefont {Beere}}, \bibinfo {author} {\bibfnamefont {D.~A.}\ \bibnamefont {Ritchie}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Lodahl}},\ and\ \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Stobbe}},\ }\bibfield {title} {\bibinfo {title} {Single-photon superradiance from a quantum dot},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. Lett.}\ }\textbf {\bibinfo {volume} {116}} (\bibinfo {year} {2016})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Reindl}\ \emph {et~al.}(2019)\citenamefont {Reindl}, \citenamefont {Weber}, \citenamefont {Huber}, \citenamefont {Schimpf}, \citenamefont {Silva}, \citenamefont {Portalupi}, \citenamefont {Trotta}, \citenamefont {Michler},\ and\ \citenamefont {Rastelli}}]{Reindl2019}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Reindl}}, \bibinfo {author} {\bibfnamefont {J.~H.}\ \bibnamefont {Weber}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Huber}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Schimpf}}, \bibinfo {author} {\bibfnamefont {S.~F. C.~D.}\ \bibnamefont {Silva}}, \bibinfo {author} {\bibfnamefont {S.~L.}\ \bibnamefont {Portalupi}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Trotta}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Michler}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ }\bibfield {title} {\bibinfo {title} {Highly indistinguishable single photons from incoherently excited quantum dots},\ }\href {https://doi.org/10.1103/PHYSREVB.100.155420/SUPPLEMENTARY_REVISED.PDF} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {100}},\ \bibinfo {pages} {155420} (\bibinfo {year} {2019})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Bester}\ \emph {et~al.}(2006{\natexlab{b}})\citenamefont {Bester}, \citenamefont {Wu}, \citenamefont {Vanderbilt},\ and\ \citenamefont {Zunger}}]{Bester:06}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Bester}}, \bibinfo {author} {\bibfnamefont {X.}~\bibnamefont {Wu}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Vanderbilt}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Zunger}},\ }\bibfield {title} {\bibinfo {title} {Importance of second-order piezoelectric effects in zinc-blende semiconductors},\ }\href {http://link.aps.org/ddoi/10.1103/PhysRevLett.96.187602} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. Lett.}\ }\textbf {\bibinfo {volume} {96}},\ \bibinfo {pages} {187602} (\bibinfo {year} {2006}{\natexlab{b}})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Beya-Wakata}\ \emph {et~al.}(2011)\citenamefont {Beya-Wakata}, \citenamefont {Prodhomme},\ and\ \citenamefont {Bester}}]{Beya-Wakata2011}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Beya-Wakata}}, \bibinfo {author} {\bibfnamefont {P.~Y.}\ \bibnamefont {Prodhomme}},\ and\ \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Bester}},\ }\bibfield {title} {\bibinfo {title} {First- and second-order piezoelectricity in {III-V} semiconductors},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {84}},\ \bibinfo {pages} {195207} (\bibinfo {year} {2011})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Klenovsk{\'{y}}}\ \emph {et~al.}(2018)\citenamefont {Klenovsk{\'{y}}}, \citenamefont {Steindl}, \citenamefont {Aberl}, \citenamefont {Zallo}, \citenamefont {Trotta}, \citenamefont {Rastelli},\ and\ \citenamefont {Fromherz}}]{Klenovsky2018}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Klenovsk{\'{y}}}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Steindl}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Aberl}}, \bibinfo {author} {\bibfnamefont {E.}~\bibnamefont {Zallo}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Trotta}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ and\ \bibinfo {author} {\bibfnamefont {T.}~\bibnamefont {Fromherz}},\ }\bibfield {title} {\bibinfo {title} {{Effect of second-order piezoelectricity on the excitonic structure of stress-tuned In(Ga)As/GaAs quantum dots}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {97}},\ \bibinfo {pages} {245314} (\bibinfo {year} {2018})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Bahder}(1990)}]{Bahder1990}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {T.~B.}\ \bibnamefont {Bahder}},\ }\bibfield {title} {\bibinfo {title} {Eight-band k.p model of strained zinc-blende crystals},\ }\href {https://doi.org/10.1103/PhysRevB.41.11992} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {41}},\ \bibinfo {pages} {11992} (\bibinfo {year} {1990})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Birner}\ \emph {et~al.}(2007)\citenamefont {Birner}, \citenamefont {Zibold}, \citenamefont {Andlauer}, \citenamefont {Kubis}, \citenamefont {Sabathil}, \citenamefont {Trellakis},\ and\ \citenamefont {Vogl}}]{Birner2007}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Birner}}, \bibinfo {author} {\bibfnamefont {T.}~\bibnamefont {Zibold}}, \bibinfo {author} {\bibfnamefont {T.}~\bibnamefont {Andlauer}}, \bibinfo {author} {\bibfnamefont {T.}~\bibnamefont {Kubis}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Sabathil}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Trellakis}},\ and\ \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Vogl}},\ }\bibfield {title} {\bibinfo {title} {{Nextnano: General purpose 3-D simulations}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {IEEE Trans. Electron Devices}\ }\textbf {\bibinfo {volume} {54}},\ \bibinfo {pages} {2137} (\bibinfo {year} {2007})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Zibold}(2007)}]{t_zibold}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {T.}~\bibnamefont {Zibold}},\ }\emph {\bibinfo {title} {Semiconductor based quantum information devices: Theory and simulations}},\ \href@noop {} {Ph.D. thesis},\ \bibinfo {school} {Technische Universit{\"a}t M{\"u}nchen,} (\bibinfo {year} {2007})\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Bryant}(1987)}]{Bryant1987}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {G.~W.}\ \bibnamefont {Bryant}},\ }\bibfield {title} {\bibinfo {title} {Electronic structure of ultrasmall quantum-well boxes},\ }\href {https://doi.org/10.1103/PhysRevLett.59.1140} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. Lett.}\ }\textbf {\bibinfo {volume} {59}},\ \bibinfo {pages} {1140} (\bibinfo {year} {1987})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Klenovsk\'y}\ \emph {et~al.}(2017)\citenamefont {Klenovsk\'y}, \citenamefont {Steindl},\ and\ \citenamefont {Geffroy}}]{Klenovsky2017}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Klenovsk\'y}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Steindl}},\ and\ \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Geffroy}},\ }\bibfield {title} {\bibinfo {title} {Excitonic structure and pumping power dependent emission blue-shift of {type-II} quantum dots},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Sci. Rep.}\ }\textbf {\bibinfo {volume} {7}},\ \bibinfo {pages} {45568} (\bibinfo {year} {2017})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Yuan}\ \emph {et~al.}(2023{\natexlab{b}})\citenamefont {Yuan}, \citenamefont {Silva}, \citenamefont {Csontosová}, \citenamefont {Huang}, \citenamefont {Schimpf}, \citenamefont {Reindl}, \citenamefont {Lu}, \citenamefont {Ni}, \citenamefont {Rastelli},\ and\ \citenamefont {Klenovský}}]{Yuan2023}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {X.}~\bibnamefont {Yuan}}, \bibinfo {author} {\bibfnamefont {S.~F. C.~D.}\ \bibnamefont {Silva}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Csontosová}}, \bibinfo {author} {\bibfnamefont {H.}~\bibnamefont {Huang}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Schimpf}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Reindl}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Lu}}, \bibinfo {author} {\bibfnamefont {Z.}~\bibnamefont {Ni}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ and\ \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Klenovský}},\ }\bibfield {title} {\bibinfo {title} {{GaAs} quantum dots under quasiuniaxial stress: Experiment and theory},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {107}},\ \bibinfo {pages} {235412} (\bibinfo {year} {2023}{\natexlab{b}})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Vurgaftman}\ \emph {et~al.}(2001)\citenamefont {Vurgaftman}, \citenamefont {Meyer},\ and\ \citenamefont {Ram-Mohan}}]{Vurgaftman2001}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {I.}~\bibnamefont {Vurgaftman}}, \bibinfo {author} {\bibfnamefont {J.~R.}\ \bibnamefont {Meyer}},\ and\ \bibinfo {author} {\bibfnamefont {L.~R.}\ \bibnamefont {Ram-Mohan}},\ }\bibfield {title} {\bibinfo {title} {{Band parameters for III–V compound semiconductors and their alloys}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {J. Appl. Phys.}\ }\textbf {\bibinfo {volume} {89}},\ \bibinfo {pages} {5815} (\bibinfo {year} {2001})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Shumway}\ \emph {et~al.}(2001)\citenamefont {Shumway}, \citenamefont {Franceschetti},\ and\ \citenamefont {Zunger}}]{Shumway2001}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Shumway}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Franceschetti}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Zunger}},\ }\bibfield {title} {\bibinfo {title} {{Correlation versus mean-field contributions to excitons, multiexcitons, and charging energies in semiconductor quantum dots}},\ }\href {https://journals.aps.org/prb/abstract/10.1103/PhysRevB.63.155316} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {63}},\ \bibinfo {pages} {155316} (\bibinfo {year} {2001})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Rontani}\ \emph {et~al.}(2006)\citenamefont {Rontani}, \citenamefont {Cavazzoni}, \citenamefont {Bellucci},\ and\ \citenamefont {Goldoni}}]{Rontani2006}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Rontani}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Cavazzoni}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Bellucci}},\ and\ \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Goldoni}},\ }\bibfield {title} {\bibinfo {title} {Full configuration interaction approach to the few-electron problem in artificial atoms},\ }\href {https://doi.org/10.1063/1.2179411} {\bibfield {journal} {\bibinfo {journal} {J. Chem. Phys.}\ }\textbf {\bibinfo {volume} {124}},\ \bibinfo {pages} {124102} (\bibinfo {year} {2006})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Troparevsky}\ and\ \citenamefont {Franceschetti}(2008)}]{Troparevsky2008}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {M.~C.}\ \bibnamefont {Troparevsky}}\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Franceschetti}},\ }\bibfield {title} {\bibinfo {title} {An optimized configuration interaction method for calculating electronic excitations innanostructures},\ }\href {https://iopscience.iop.org/article/10.1088/0953-8984/20/5/055211 https://iopscience.iop.org/article/10.1088/0953-8984/20/5/055211/meta} {\bibfield {journal} {\bibinfo {journal} {J. Phys.: Condens. Matter}\ }\textbf {\bibinfo {volume} {20}},\ \bibinfo {pages} {055211} (\bibinfo {year} {2008})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Sherrill}\ and\ \citenamefont {Schaefer}(1999)}]{Sherrill1999}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {C.~D.}\ \bibnamefont {Sherrill}}\ and\ \bibinfo {author} {\bibfnamefont {H.~F.}\ \bibnamefont {Schaefer}},\ }\bibfield {title} {\bibinfo {title} {The configuration interaction method: Advances in highly correlated approaches},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Adv. Quantum Chem.}\ }\textbf {\bibinfo {volume} {34}},\ \bibinfo {pages} {143} (\bibinfo {year} {1999})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Purvis}\ and\ \citenamefont {Bartlett}(1982)}]{Purvis1982}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {G.~D.}\ \bibnamefont {Purvis}}\ and\ \bibinfo {author} {\bibfnamefont {R.~J.}\ \bibnamefont {Bartlett}},\ }\bibfield {title} {\bibinfo {title} {A full coupled‐cluster singles and doubles model: The inclusion of disconnected triples},\ }\href {https://doi.org/10.1063/1.443164} {\bibfield {journal} {\bibinfo {journal} {J. Chem. Phys.}\ }\textbf {\bibinfo {volume} {76}},\ \bibinfo {pages} {1910} (\bibinfo {year} {1982})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Huber}\ \emph {et~al.}(2019)\citenamefont {Huber}, \citenamefont {Lehner}, \citenamefont {Csontosov{\'{a}}}, \citenamefont {Reindl}, \citenamefont {Schuler}, \citenamefont {{Covre da Silva}}, \citenamefont {Klenovsk{\'{y}}},\ and\ \citenamefont {Rastelli}}]{Huber2019}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Huber}}, \bibinfo {author} {\bibfnamefont {B.~U.}\ \bibnamefont {Lehner}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Csontosov{\'{a}}}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Reindl}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Schuler}}, \bibinfo {author} {\bibfnamefont {S.~F.}\ \bibnamefont {{Covre da Silva}}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Klenovsk{\'{y}}}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ }\bibfield {title} {\bibinfo {title} {{Single-particle-picture breakdown in laterally weakly confining GaAs quantum dots}},\ }\href {https://journals.aps.org/prb/abstract/10.1103/PhysRevB.100.235425} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {100}},\ \bibinfo {pages} {235425} (\bibinfo {year} {2019})}\BibitemShut {NoStop}%
\bibitem [{sup({\natexlab{a}})}]{supkptest}%
\BibitemOpen
\href@noop {} {\bibinfo {title} {See supplemental material at [url will be inserted by publisher] for fig.~{S1} showing influence of {k.p} solver settings on evolution of binding energy as a function of {CI} basis size.}} ({\natexlab{a}})\BibitemShut {NoStop}%
\bibitem [{\citenamefont {H{\"{o}}nig}\ \emph {et~al.}(2014)\citenamefont {H{\"{o}}nig}, \citenamefont {Callsen}, \citenamefont {Schliwa}, \citenamefont {Kalinowski}, \citenamefont {Kindel}, \citenamefont {Kako}, \citenamefont {Arakawa}, \citenamefont {Bimberg},\ and\ \citenamefont {Hoffmann}}]{Honig2014}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {H{\"{o}}nig}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Callsen}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Schliwa}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Kalinowski}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Kindel}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Kako}}, \bibinfo {author} {\bibfnamefont {Y.}~\bibnamefont {Arakawa}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Bimberg}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Hoffmann}},\ }\bibfield {title} {\bibinfo {title} {{Manifestation of unconventional biexciton states in quantum dots}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Nat. Commun.}\ }\textbf {\bibinfo {volume} {5}},\ \bibinfo {pages} {5721} (\bibinfo {year} {2014})}\BibitemShut {NoStop}%
\bibitem [{sup({\natexlab{b}})}]{supehexchange}%
\BibitemOpen
\href@noop {} {\bibinfo {title} {See supplemental material at [url will be inserted by publisher] for fig.~{S2} showing influence of electron-hole exchange interaction on calculations of multi-particle states.}} ({\natexlab{b}})\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Alshaikh}\ \emph {et~al.}(2024)\citenamefont {Alshaikh}, \citenamefont {Peng}, \citenamefont {Zierold}, \citenamefont {Blick},\ and\ \citenamefont {Heyn}}]{Alshaikh2024}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Alshaikh}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Peng}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Zierold}}, \bibinfo {author} {\bibfnamefont {R.~H.}\ \bibnamefont {Blick}},\ and\ \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Heyn}},\ }\bibfield {title} {\bibinfo {title} {Vertical electric-field-induced switching from strong to asymmetric strong–weak confinement in {GaAs} cone-shell quantum dots using transparent {Al}-doped {ZnO} gates},\ }\href {https://doi.org/10.3390/NANO14211712} {\bibfield {journal} {\bibinfo {journal} {Nanomaterials}\ }\textbf {\bibinfo {volume} {14}},\ \bibinfo {pages} {1712} (\bibinfo {year} {2024})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Takagahara}(2000)}]{Takagahara2000}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {T.}~\bibnamefont {Takagahara}},\ }\bibfield {title} {\bibinfo {title} {{Theory of exciton doublet structures and polarization relaxation in single quantum dots}},\ }\href {https://journals.aps.org/prb/abstract/10.1103/PhysRevB.62.16840} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {62}},\ \bibinfo {pages} {16840} (\bibinfo {year} {2000})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Huo}\ \emph {et~al.}(2014)\citenamefont {Huo}, \citenamefont {Kř{\'{a}}pek}, \citenamefont {Rastelli},\ and\ \citenamefont {Schmidt}}]{Huo2014}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {Y.~H.}\ \bibnamefont {Huo}}, \bibinfo {author} {\bibfnamefont {V.}~\bibnamefont {Kř{\'{a}}pek}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ and\ \bibinfo {author} {\bibfnamefont {O.~G.}\ \bibnamefont {Schmidt}},\ }\bibfield {title} {\bibinfo {title} {{Volume dependence of excitonic fine structure splitting in geometrically similar quantum dots}},\ }\href {https://journals.aps.org/prb/abstract/10.1103/PhysRevB.90.041304} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {90}},\ \bibinfo {pages} {041304(R)} (\bibinfo {year} {2014})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {K\v{r}\'apek}\ \emph {et~al.}(2015)\citenamefont {K\v{r}\'apek}, \citenamefont {Klenovsk\'y},\ and\ \citenamefont {\v{S}ikola}}]{Krapek2015}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {V.}~\bibnamefont {K\v{r}\'apek}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Klenovsk\'y}},\ and\ \bibinfo {author} {\bibfnamefont {T.}~\bibnamefont {\v{S}ikola}},\ }\bibfield {title} {\bibinfo {title} {Excitonic fine structure splitting in {type-II} quantum dots},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {92}},\ \bibinfo {pages} {195430} (\bibinfo {year} {2015})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Schimpf}\ \emph {et~al.}(2019)\citenamefont {Schimpf}, \citenamefont {Reindl}, \citenamefont {Klenovsk{\'{y}}}, \citenamefont {Fromherz}, \citenamefont {{Covre da Silva}}, \citenamefont {Hofer}, \citenamefont {Schneider}, \citenamefont {H{\"{o}}fling}, \citenamefont {Trotta},\ and\ \citenamefont {Rastelli}}]{Schimpf2019}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Schimpf}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Reindl}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Klenovsk{\'{y}}}}, \bibinfo {author} {\bibfnamefont {T.}~\bibnamefont {Fromherz}}, \bibinfo {author} {\bibfnamefont {S.~F.}\ \bibnamefont {{Covre da Silva}}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Hofer}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Schneider}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {H{\"{o}}fling}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Trotta}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ }\bibfield {title} {\bibinfo {title} {{Resolving the temporal evolution of line broadening in single quantum emitters}},\ }\href {https://ddoi.org/10.1364/OE.27.035290} {\bibfield {journal} {\bibinfo {journal} {Opt. Express}\ }\textbf {\bibinfo {volume} {27}},\ \bibinfo {pages} {35290} (\bibinfo {year} {2019})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Stobbe}\ \emph {et~al.}(2010)\citenamefont {Stobbe}, \citenamefont {Schlereth}, \citenamefont {Höfling}, \citenamefont {Forchel}, \citenamefont {Hvam},\ and\ \citenamefont {Lodahl}}]{Stobbe2010}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Stobbe}}, \bibinfo {author} {\bibfnamefont {T.~W.}\ \bibnamefont {Schlereth}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Höfling}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Forchel}}, \bibinfo {author} {\bibfnamefont {J.~M.}\ \bibnamefont {Hvam}},\ and\ \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Lodahl}},\ }\bibfield {title} {\bibinfo {title} {Large quantum dots with small oscillator strength},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {82}} (\bibinfo {year} {2010})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Undeutsch}\ \emph {et~al.}(2025)\citenamefont {Undeutsch}, \citenamefont {Aigner}, \citenamefont {Garcia}, \citenamefont {Reindl}, \citenamefont {Peter}, \citenamefont {Mader}, \citenamefont {Weidinger}, \citenamefont {da~Silva}, \citenamefont {Manna}, \citenamefont {Schöll},\ and\ \citenamefont {Rastelli}}]{Undeutsch2025}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Undeutsch}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Aigner}}, \bibinfo {author} {\bibfnamefont {A.~J.}\ \bibnamefont {Garcia}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Reindl}}, \bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Peter}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Mader}}, \bibinfo {author} {\bibfnamefont {C.}~\bibnamefont {Weidinger}}, \bibinfo {author} {\bibfnamefont {S.~F.~C.}\ \bibnamefont {da~Silva}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Manna}}, \bibinfo {author} {\bibfnamefont {E.}~\bibnamefont {Schöll}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ }\bibfield {title} {\bibinfo {title} {Electric-field control of photon indistinguishability in cascaded decays in quantum dots},\ }\href {https://doi.org/10.1021/ACS.NANOLETT.5C01354/SUPPL_FILE/NL5C01354_SI_001.PDF} {\bibfield {journal} {\bibinfo {journal} {Nano Lett.}\ }\textbf {\bibinfo
{volume} {25}},\ \bibinfo {pages} {7121} (\bibinfo {year} {2025})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Ghali}\ \emph {et~al.}(2012)\citenamefont {Ghali}, \citenamefont {Ohtani}, \citenamefont {Ohno},\ and\ \citenamefont {Ohno}}]{Ghali2012}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {M.}~\bibnamefont {Ghali}}, \bibinfo {author} {\bibfnamefont {K.}~\bibnamefont {Ohtani}}, \bibinfo {author} {\bibfnamefont {Y.}~\bibnamefont {Ohno}},\ and\ \bibinfo {author} {\bibfnamefont {H.}~\bibnamefont {Ohno}},\ }\bibfield {title} {\bibinfo {title} {{Generation and control of polarization-entangled photons from GaAs island quantum dots by an electric field}},\ }\href {www.nature.com/naturecommunications http://www.nature.com/articles/ncomms1657} {\bibfield {journal} {\bibinfo {journal} {Nat. Commun.}\ }\textbf {\bibinfo {volume} {3}},\ \bibinfo {pages} {1} (\bibinfo {year} {2012})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Luo}\ \emph {et~al.}(2012)\citenamefont {Luo}, \citenamefont {Singh}, \citenamefont {Zunger},\ and\ \citenamefont {Bester}}]{Luo2012}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {J.~W.}\ \bibnamefont {Luo}}, \bibinfo {author} {\bibfnamefont {R.}~\bibnamefont {Singh}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Zunger}},\ and\ \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Bester}},\ }\bibfield {title} {\bibinfo {title} {{Influence of the atomic-scale structure on the exciton fine-structure splitting in InGaAs and GaAs quantum dots in a vertical electric field}},\ }\href {https://journals.aps.org/prb/abstract/10.1103/PhysRevB.86.161302} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {86}},\ \bibinfo {pages} {161302} (\bibinfo {year} {2012})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Bennett}\ \emph {et~al.}(2005)\citenamefont {Bennett}, \citenamefont {Unitt}, \citenamefont {Atkinson}, \citenamefont {Ritchie},\ and\ \citenamefont {Shields}}]{Bennett2005}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {A.~J.}\ \bibnamefont {Bennett}}, \bibinfo {author} {\bibfnamefont {D.~C.}\ \bibnamefont {Unitt}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Atkinson}}, \bibinfo {author} {\bibfnamefont {D.~A.}\ \bibnamefont {Ritchie}},\ and\ \bibinfo {author} {\bibfnamefont {A.~J.}\ \bibnamefont {Shields}},\ }\bibfield {title} {\bibinfo {title} {{High performance single photon sources from photolithographically defined pillar microcavities}},\ }\href@noop {} {\bibfield {journal} {\bibinfo {journal} {Opt. Express}\ }\textbf {\bibinfo {volume} {13}},\ \bibinfo {pages} {50} (\bibinfo {year} {2005})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Narvaez}\ \emph {et~al.}(2005)\citenamefont {Narvaez}, \citenamefont {Bester},\ and\ \citenamefont {Zunger}}]{Narvaez2005}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {G.~A.}\ \bibnamefont {Narvaez}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Bester}},\ and\ \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Zunger}},\ }
\bibfield {title} {\bibinfo {title} {Excitons, biexcitons, and trions in self-assembled {(In,Ga)As/GaAs} quantum dots: Recombination energies, polarization, and radiative lifetimes versus dot height},\ }
\href{https://doi.org/10.1103/PhysRevB.72.245318}
{\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {72}},\ \bibinfo {pages} {245318} (\bibinfo {year} {2005})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Senellart}\ \emph {et~al.}(2005)\citenamefont {Senellart}, \citenamefont {Peter}, \citenamefont {Hours}, \citenamefont {Cavanna},\ and\ \citenamefont {Bloch}}]{Senellart2005}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Senellart}}, \bibinfo {author} {\bibfnamefont {E.}~\bibnamefont {Peter}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Hours}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Cavanna}},\ and\ \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Bloch}},\ }\bibfield {title} {\bibinfo {title} {Few particle effects in the emission of short-radiative-lifetime single quantum dots},\ }\href {https://doi.org/10.1103/PhysRevB.72.115302} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {72}},\ \bibinfo {pages} {115302} (\bibinfo {year} {2005})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Alén}\ \emph {et~al.}(2007)\citenamefont {Alén}, \citenamefont {Bosch}, \citenamefont {Granados}, \citenamefont {Martínez-Pastor}, \citenamefont {García},\ and\ \citenamefont {González}}]{Alen2007}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {B.}~\bibnamefont {Alén}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Bosch}}, \bibinfo {author} {\bibfnamefont {D.}~\bibnamefont {Granados}}, \bibinfo {author} {\bibfnamefont {J.}~\bibnamefont {Martínez-Pastor}}, \bibinfo {author} {\bibfnamefont {J.~M.}\ \bibnamefont {García}},\ and\ \bibinfo {author} {\bibfnamefont {L.}~\bibnamefont {González}},\ }\bibfield {title} {\bibinfo {title} {Oscillator strength reduction induced by external electric fields in self-assembled quantum dots and rings},\ }\href {https://doi.org/10.1103/PhysRevB.75.045319} {\bibfield {journal} {\bibinfo {journal} {Phys. Rev. B}\ }\textbf {\bibinfo {volume} {75}},\ \bibinfo {pages} {045319} (\bibinfo {year} {2007})}\BibitemShut {NoStop}%
\bibitem [{\citenamefont {Millington-Hotze}\ \emph {et~al.}(2025)\citenamefont {Millington-Hotze}, \citenamefont {Klenovsky}, \citenamefont {Dyte}, \citenamefont {Gillard}, \citenamefont {Manna}, \citenamefont {da~Silva}, \citenamefont {Rastelli},\ and\ \citenamefont {Chekhovich}}]{Millington-Hotze2025}%
\BibitemOpen
\bibfield {author} {\bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Millington-Hotze}}, \bibinfo {author} {\bibfnamefont {P.}~\bibnamefont {Klenovsky}}, \bibinfo {author} {\bibfnamefont {H.~E.}\ \bibnamefont {Dyte}}, \bibinfo {author} {\bibfnamefont {G.}~\bibnamefont {Gillard}}, \bibinfo {author} {\bibfnamefont {S.}~\bibnamefont {Manna}}, \bibinfo {author} {\bibfnamefont {S.~F.~C.}\ \bibnamefont {da~Silva}}, \bibinfo {author} {\bibfnamefont {A.}~\bibnamefont {Rastelli}},\ and\ \bibinfo {author} {\bibfnamefont {E.~A.}\ \bibnamefont {Chekhovich}},\ }\bibfield {title} {\bibinfo {title} {Few-electron spin qubits in optically active {GaAs} quantum dots},\ }\href {https://arxiv.org/abs/2504.19257v1} {\ (\bibinfo {year} {2025})}\BibitemShut {NoStop}%
\end{thebibliography}%
%\clearpage
\section{Appendix I.}
\label{sec:appendixI}
%
We show in Fig.~\ref{fig:Econv} the convergence study of the energies of X$^0$, bright-dark splitting, and the binding energies of X$^+$, X$^-$, XX with respect to exciton.
%
\begin{figure}[htbp]
\includegraphics[width=85mm]{QDdip_Energy_convergence.png}
\caption{We show the evolution of CI calculations for energies of (a)~X$^0$, (b)~bright-dark splitting, and (c)~X$^+$, X$^-$, XX binding with respect to X$^0$ as a function of the CI basis size. The dependencies are evaluated as an absolute value of the relative difference between energies ($E$) for consecutive CI basis state ($N$) as $|\Delta E/\Delta N|$. In each panel the left vertical axis is in logarithmic scale, hence an approximately linear decrease of $|\Delta E/\Delta N|$ for CI bases larger than $\sim 10$ in all panels is a clear sign of exponential nature of the convergence.}
\label{fig:Econv}
\end{figure}
%\newpage
\section{Appendix II.}
\label{sec:appendixII}
%
\begin{figure}[htbp]
%\includegraphics[width=85mm]{QDVexciton_energy_DAvsBDA_FSSBD.png}
\includegraphics[width=85mm]{QDVexciton_energy_DAvsBDA_FSSBD_noCmplx.png}
\caption{Calculations of volume dependencies of the multi-particle electronic and emission structure of cone shape GaAs QD in Al$_{0.4}$Ga$_{0.6}$As lattice, positioned on 2~nm GaAs layer, similar (but not same) as that in Fig.~\ref{fig:AFMsp}~(a). We show in~(a)~bright (blue balls) and dark (red balls) X$^0$ FSS as well as bright-dark X$^0$ splitting (violet balls); in~(b)~the radiative lifetime of X$^0$ utilizing DA (empty squares) and BDA (full balls) method (see text)
%
Note that the change of QD volume is identified on horizontal axes by X$^0$ energy. The largest X$^0$ energy (1.785~eV) corresponds to QD with basis diameter of $10$~nm and height of $2.5$~nm. On the other hand, the lowest X$^0$ energy (1.539~eV) correspond to dot with diameter of $70$~nm and height of $15$~nm.
%
The horizontal black dotted line in (b) correspond to measured value of X$^0$ lifetime of 0.267~ns~\cite{Schimpf2019}.
}
\label{fig:LifeVdep}
\end{figure}
%
We show in Fig.~\ref{fig:LifeVdep} the evolution of the QD electronic and emission structure properties on QD volume. The calculations are performed for a cone-shaped GaAs QD in Al$_{0.4}$Ga$_{0.6}$As lattice \{different QD than that in Fig.~\ref{fig:AFMsp}~(a)\}, positioned on 2~nm GaAs layer (WL). The change of QD volume is achieved by fixing the QD aspect ratio (defined as height/diameter of QD) to 0.25 and varying the basis diameter from $10$~nm to $70$~nm. Using the aforementioned aspect ratio the latter change leads to the increase of QD height from $2.5$~nm to $15$~nm, respectively. In order to summarize the effect of QD volume change, we show the results in Fig.~\ref{fig:LifeVdep} as a function of the ground state exciton X$^0$ energy.
%
In Fig.~\ref{fig:LifeVdep}~(a) we give the QD volume evolution of bright and dark FSS as well as bright-dark energy splitting of X$^0$. We see that while both bright and dark FSS do not depend on QD size considerably, the bright-dark splitting seems more sensitive to GaAs QD volume. That might be the reason for the discrepancy of the computed B-D splitting in Fig.~\ref{fig:AFMsp}~(c) and measured value of $100\,\mu$eV~\cite{Yuan2023}.
In Fig.~\ref{fig:LifeVdep}~(b) we show the comparison of the evolution of emission radiative lifetime of X$^0$ for calculations that employed DA and BDA~\cite{Stobbe2012}. We clearly see the difference between DA and BDA approaches. Notably, apart of the largest dots (smallest X$^0$ energy), DA seems not to be much sensitive to QD volume. On the contrary, BDA leads to reduction of radiative lifetime with increase of QD volume up to QD with exciton energy of $1.5489$~eV upon which a further increase of QD volume leads to increase of radiative lifetime. The latter behavior is qualitatively similar to the calculations using DA method. Noticeably, for certain QD sizes (here for QDs emitting at $\sim 1.63$~eV), the DA and BDA approaches lead to similar emission lifetime of X$^0$. The aforementioned behavior was previously predicted in Ref.~\cite{Stobbe2012} being a general feature of the BDA method which is reproduced also in our calculations. The CI basis size for the aforementioned calculations was 36 single-particle electron and 36 single-particle hole states.
\end{document}
% ****** End of file apstemplate.tex ******
|