From fb73eed75ff263b401ada2ad93ba9f936405af87 Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Fri, 10 Mar 2023 20:56:30 -0500 Subject: [PATCH] add beginnings of report --- .gitignore | 1 + papers/Report/.envrc | 1 + papers/Report/.gitignore | 3 + papers/Report/flake.lock | 42 + papers/Report/flake.nix | 50 + papers/Report/hiromacros.sty | 179 +++ papers/Report/hirostyle.sty | 93 ++ papers/Report/index.tex | 552 ++++++++ papers/Report/latexmkrc | 4 + papers/Report/references.bib | 2285 ++++++++++++++++++++++++++++++++++ 10 files changed, 3210 insertions(+) create mode 100644 papers/Report/.envrc create mode 100644 papers/Report/.gitignore create mode 100644 papers/Report/flake.lock create mode 100644 papers/Report/flake.nix create mode 100644 papers/Report/hiromacros.sty create mode 100644 papers/Report/hirostyle.sty create mode 100644 papers/Report/index.tex create mode 100644 papers/Report/latexmkrc create mode 100644 papers/Report/references.bib diff --git a/.gitignore b/.gitignore index 8712726..3971fa9 100644 --- a/.gitignore +++ b/.gitignore @@ -414,3 +414,4 @@ $RECYCLE.BIN/ ## Acknowledgements # Many thanks to `https://gitignore.io/`, written and maintained by Joe Blau, which contributed much material to this gitignore file. +/.direnv/ diff --git a/papers/Report/.envrc b/papers/Report/.envrc new file mode 100644 index 0000000..3550a30 --- /dev/null +++ b/papers/Report/.envrc @@ -0,0 +1 @@ +use flake diff --git a/papers/Report/.gitignore b/papers/Report/.gitignore new file mode 100644 index 0000000..4b28639 --- /dev/null +++ b/papers/Report/.gitignore @@ -0,0 +1,3 @@ +output +auto +.direnv diff --git a/papers/Report/flake.lock b/papers/Report/flake.lock new file mode 100644 index 0000000..cfb7f8b --- /dev/null +++ b/papers/Report/flake.lock @@ -0,0 +1,42 @@ +{ + "nodes": { + "flake-utils": { + "locked": { + "lastModified": 1676283394, + "narHash": "sha256-XX2f9c3iySLCw54rJ/CZs+ZK6IQy7GXNY4nSOyu2QG4=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3db36a8b464d0c4532ba1c7dda728f4576d6d073", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1678380223, + "narHash": "sha256-HUxnK38iqrX84QdQxbFcosRKV3/koj1Zzp5b5aP4lIo=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1e2590679d0ed2cee2736e8b80373178d085d263", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/papers/Report/flake.nix b/papers/Report/flake.nix new file mode 100644 index 0000000..d577adb --- /dev/null +++ b/papers/Report/flake.nix @@ -0,0 +1,50 @@ +{ + description = "Typesetting for Report on the Reservoir Engineering"; + inputs = { + nixpkgs.url = "nixpkgs/nixos-unstable"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { self, nixpkgs, flake-utils }: + with flake-utils.lib; eachSystem allSystems (system: + let + pkgs = nixpkgs.legacyPackages.${system}; + tex = pkgs.texlive.combine { + inherit (pkgs.texlive) scheme-medium latexmk koma-script babel-english + physics mathtools amsmath fontspec booktabs siunitx caption biblatex float + pgfplots microtype fancyvrb csquotes setspace newunicodechar hyperref + cleveref multirow bbold unicode-math biblatex-phys xpatch beamerposter + type1cm changepage lualatex-math footmisc wrapfig2 curve2e pict2e wrapfig + appendixnumberbeamer sidecap appendix orcidlink ncctools bigfoot crop xcolor; + }; + in + rec { + packages = { + document = pkgs.stdenvNoCC.mkDerivation rec { + name = "maxwell_time_scale_separation"; + src = self; + buildInputs = [ pkgs.coreutils tex pkgs.biber ]; + phases = [ "unpackPhase" "buildPhase" "installPhase" ]; + buildPhase = '' + export PATH="${pkgs.lib.makeBinPath buildInputs}"; + mkdir -p .cache/texmf-var + mkdir -p output/src + env TEXMFHOME=.cache TEXMFVAR=.cache/texmf-var \ + OSFONTDIR=${pkgs.tex-gyre-math.pagella}/share/fonts/opentype:${pkgs.gyre-fonts}/share/fonts:${pkgs.liberation_ttf}/share/fonts:${pkgs.lato}/share/fonts/lato:${pkgs.raleway}/share/fonts:${pkgs.lmodern}/share/fonts \ + latexmk ./index.tex + ''; + installPhase = '' + mkdir -p $out + cp output/index.pdf $out/ + ''; + }; + }; + defaultPackage = packages.document; + devShell = pkgs.mkShellNoCC { + buildInputs = packages.document.buildInputs; + shellHook = '' + export OSFONTDIR=${pkgs.tex-gyre-math.pagella}/share/fonts/opentype:${pkgs.gyre-fonts}/share/fonts:${pkgs.liberation_ttf}/share/fonts:${pkgs.lato}/share/fonts/lato:${pkgs.raleway}/share/fonts:${pkgs.lmodern}/share/fonts + ''; + }; + }); +} diff --git a/papers/Report/hiromacros.sty b/papers/Report/hiromacros.sty new file mode 100644 index 0000000..ca784ed --- /dev/null +++ b/papers/Report/hiromacros.sty @@ -0,0 +1,179 @@ +\ProvidesPackage{hiromacros} +\RequirePackage{ifdraft} + +% Macros + +%% qqgg +\newcommand{\qqgg}[0]{q\bar{q}\rightarrow\gamma\gamma} + +%% ppgg +\newcommand{\ppgg}[0]{pp\rightarrow\gamma\gamma} + +%% Momenta and Polarization Vectors convenience +\DeclareMathOperator{\ps}{\slashed{p}} + +\DeclareMathOperator{\pe}{\varepsilon} +\DeclareMathOperator{\pes}{\slashed{\pe}} + +\DeclareMathOperator{\pse}{\varepsilon^{*}} +\DeclareMathOperator{\pses}{\slashed{\pe}^{*}} + +%% Spinor convenience +\DeclareMathOperator{\us}{u} +\DeclareMathOperator{\usb}{\bar{u}} + +\DeclareMathOperator{\vs}{v} +\DeclareMathOperator*{\vsb}{\overline{v}} + +%% Center of Mass energy +\DeclareMathOperator{\ecm}{E_{\text{CM}}} + +%% area hyperbolicus +\DeclareMathOperator{\artanh}{artanh} +\DeclareMathOperator{\arcosh}{arcosh} + +%% rectangle +\DeclareMathOperator{\rect}{rect} + +%% sinc +\DeclareMathOperator{\sinc}{sinc} + +%% sign +\DeclareMathOperator{\sgn}{sgn} + + +%% Fast Slash +\let\sl\slashed + +%% hermitian/complex conjugate +\newcommand{\cc}{\ensuremath{\mathrm{c.c.}}} +\newcommand{\hc}{\ensuremath{\mathrm{h.c.}}} + +%% eulers number +\def\eu{\ensuremath{\operatorname{e}}} + +%% Notes on Equations +\newcommand{\shorteqnote}[1]{ & & \text{\small\llap{#1}}} + +%% Typewriter Macros +\newcommand{\sherpa}{\texttt{Sherpa}} +\newcommand{\rivet}{\texttt{Rivet}} +\newcommand{\vegas}{\texttt{VEGAS}} +\newcommand{\lhapdf}{\texttt{LHAPDF6}} +\newcommand{\scipy}{\texttt{scipy}} + +%% Sherpa Versions +\newcommand{\oldsherpa}{\texttt{2.2.10}} +\newcommand{\newsherpa}{\texttt{3.0.0} (unreleased)} + +%% Special Names +\newcommand{\lhc}{\emph{LHC}} + +%% Expected Value and Variance +\newcommand{\EX}[1]{\operatorname{E}\qty[#1]} +\newcommand{\VAR}[1]{\operatorname{VAR}\qty[#1]} + +%% Uppercase Rho +\newcommand{\Rho}{P} + +%% Transverse Momentum +\newcommand{\pt}[0]{p_\mathrm{T}} + +%% Sign Function +\DeclareMathOperator{\sign}{sgn} + +%% Stages +\newcommand{\stone}{\texttt{LO}} +\newcommand{\sttwo}{\texttt{LO+PS}} +\newcommand{\stthree}{\texttt{LO+PS+pT}} +\newcommand{\stfour}{\texttt{LO+PS+pT+Hadr.}} +\newcommand{\stfive}{\texttt{LO+PS+pT+Hadr.+MI}} + +%% GeV +\newcommand{\gev}[1]{\SI{#1}{\giga\electronvolt}} + +\def\iu{\ensuremath{𝑖}} +\def\i{\iu} +\def\id{\ensuremath{\mathbb{1}}} +\def\NN{\ensuremath{\mathbb{N}}} +\def\RR{\ensuremath{\mathbb{R}}} +\def\CC{\ensuremath{\mathbb{C}}} +\def\ZZ{\ensuremath{\mathbb{Z}}} +\def\dim{\ensuremath{\operatorname{dim}}} +\def\hilb{\ensuremath{\mathcal{H}}} + +% fixme +\newcommand{\fixme}[1]{\marginpar{\tiny\textcolor{red}{#1}}} + +% HOPS/NMQSD +\def\sys{\ensuremath{\mathrm{S}}} +\def\bath{\ensuremath{\mathrm{B}}} +\def\inter{\ensuremath{\mathrm{I}}} +\def\nth{\ensuremath{^{(n)}}} +\def\target{\ensuremath{\mathrm{target}}} +\def\eff{\ensuremath{\mathrm{eff}}} + +\newcommand{\mat}[1]{\ensuremath{{\underline{\vb{#1}}}}} +\def\kmat{{\mat{k}}} + + +% Thermo +\newcommand{\ergo}[1]{\ensuremath{\mathcal{W}\qty[#1]}} +\newcommand{\qrelent}[2]{\ensuremath{S\qty(#1\,\middle|\middle|\,#2)}} +\newcommand{\cyc}{\ensuremath{\mathrm{cyc}}} + +\makeatletter +\newsavebox\myboxA +\newsavebox\myboxB +\newlength\mylenA + +\newcommand*\xoverline[2][0.75]{% + \sbox{\myboxA}{$\m@th#2$}% + \setbox\myboxB\null% Phantom box + \ht\myboxB=\ht\myboxA% + \dp\myboxB=\dp\myboxA% + \wd\myboxB=#1\wd\myboxA% Scale phantom + \sbox\myboxB{$\m@th\overline{\copy\myboxB}$}% Overlined phantom + \setlength\mylenA{\the\wd\myboxA}% calc width diff + \addtolength\mylenA{-\the\wd\myboxB}% + \ifdim\wd\myboxB<\wd\myboxA% + \rlap{\hskip 0.5\mylenA\usebox\myboxB}{\usebox\myboxA}% + \else + \hskip -0.5\mylenA\rlap{\usebox\myboxA}{\hskip 0.5\mylenA\usebox\myboxB}% + \fi} +\makeatother + +\DeclareMathOperator{\bosedist}{\xoverline{n}} +\DeclareDocumentCommand\bose{}{\opbraces{\bosedist}} + +%% Including plots +% \newcommand{\plot}[1]{% +% \ifdraft{\includegraphics[draft=false]{./figs/#1.pdf}}{\input{./figs/#1.pgf}}} +\newcommand{\plot}[1]{% + \includegraphics[draft=false]{./figs/#1.pdf}} +\newcommand{\tval}[1]{{\input{./values/#1.tex}}} + +%% citing "in ref" +\NewBibliographyString{refname} +\NewBibliographyString{refsname} +\DefineBibliographyStrings{english}{% + refname = {Ref\adddot}, + refsname = {Refs\adddot} +} + +\DeclareCiteCommand{\refcite} + {% + \ifnum\thecitetotal=1 + \bibstring{refname}% + \else% + \bibstring{refsname}% + \fi% + \addspace\bibopenbracket% + \usebibmacro{cite:init}% + \usebibmacro{prenote}} + {\usebibmacro{citeindex}% + \usebibmacro{cite:comp}} + {} + {\usebibmacro{cite:dump}% + \usebibmacro{postnote}% + \bibclosebracket} diff --git a/papers/Report/hirostyle.sty b/papers/Report/hirostyle.sty new file mode 100644 index 0000000..053a482 --- /dev/null +++ b/papers/Report/hirostyle.sty @@ -0,0 +1,93 @@ +\ProvidesPackage{hirostyle} +\usepackage[T1]{fontenc} +% load early +\usepackage[english]{babel} +\usepackage{physics} +\usepackage{graphicx, booktabs, float} +\usepackage[tbtags]{mathtools} +\mathtoolsset{mathic=true} + +\usepackage{amssymb} +\usepackage[backend=biber, language=english, style=phys, sorting=none, backref=true]{biblatex} +\usepackage{siunitx} +\usepackage{caption} +\usepackage{sidecap} +\usepackage[list=true, font=footnotesize, labelformat=brace]{subcaption} +\usepackage[protrusion=true,expansion=true,tracking=true]{microtype} +\usepackage{fancyvrb} +\usepackage{longtable} +\usepackage{booktabs} +\usepackage[autostyle=true]{csquotes} +\usepackage{setspace} +\usepackage{newunicodechar} +\usepackage[pdfencoding=auto,hidelinks,colorlinks=true, +linkcolor=blue, + filecolor=blue, + citecolor = black, + urlcolor=cyan,]{hyperref} % load late +\usepackage[capitalize]{cleveref} +\usepackage{multirow,tabularx} +\usepackage{bbold} +\usepackage{scrhack} +\usepackage{fontspec} +\usepackage{unicode-math} +\setmainfont[Ligatures={Common,Rare,TeX,Required}]{texgyrepagella}[ + Extension = .otf, + UprightFont = *-regular, + BoldFont = *-bold, + ItalicFont = *-italic, + BoldItalicFont = *-bolditalic, + ] +\setmathfont{texgyrepagella-math.otf} +\KOMAoptions{DIV=last} +\usepackage[autooneside]{scrlayer-scrpage} +\usepackage[titletoc]{appendix} +\usepackage{bigfoot} +\usepackage{orcidlink} +%\usepackage[cmyk,hyperref]{xcolor} +\usepackage{wrapfig2} +\usepackage{xpatch} + +\usepackage{lualatex-math} +\usepackage{manyfoot} +\usepackage[bottom]{footmisc} +\raggedbottom + +\DeclareNewFootnote{default} % standard footnotes +\DeclareNewFootnote{URL}[roman] % href footnotes +\let\oldhref\href +\renewcommand{\href}[2]{\oldhref{#1}{#2}\footnoteURL{\url{#1}}} + +%% Including Results +\newcommand{\result}[1]{\input{./results/#1}\!} + +%% SI units +\sisetup{separate-uncertainty = true} + +%% Captions +\captionsetup{font=small,format=plain} +\captionsetup[sub]{font=small,format=plain} + +%% Labels +% \labelformat{chapter}{chapter~#1} +% \labelformat{section}{section~#1} +% \labelformat{figure}{figure~#1} +% \labelformat{table}{table~#1} + +%% Cleverref +\crefname{equation}{}{} +\creflabelformat{equation}{(#2#1#3)} + +%% Font for headings +\addtokomafont{disposition}{\rmfamily} + +%% Minus Sign for Matplotlib +\newunicodechar{−}{-} + +% Allow math page breaks +\allowdisplaybreaks + +% cursive bold in maths +\unimathsetup{math-style=TeX,bold-style=ISO} + +\recalctypearea diff --git a/papers/Report/index.tex b/papers/Report/index.tex new file mode 100644 index 0000000..d6e1512 --- /dev/null +++ b/papers/Report/index.tex @@ -0,0 +1,552 @@ +\documentclass[fontsize=10pt,paper=a4,open=any, +twoside=no,toc=listof,toc=bibliography,headings=optiontohead, +captions=nooneline,captions=tableabove,english,DIV=15,numbers=noenddot,final,parskip=half-, +headinclude=true,footinclude=false,BCOR=0mm]{scrartcl} +\pdfvariable suppressoptionalinfo 512\relax +\synctex=1 + +\usepackage{hirostyle} +\usepackage{hiromacros} +\addbibresource{references.bib} + +\title{Report on the Reservoir Engineering Efforts} +\date{2023} + +\begin{document} +\maketitle +\tableofcontents + +\section{Equations of Motion for a Modulated Fiber Loop} +\label{sec:equat-moti-modul} +\subsection{Introduction} +\label{sec:introduction} +To obtain an equation of motion for the electric field that can be +interpreted as a Hamiltonian, we have to reduce the wave equation to +first order in time. Here we work with the paraxial approximation, +ignoring any transverse fields. A more rigorous treatment, to be used +in numeric simulations, can be derived from wave guide theory as +in~\refcite{Yuan2018a,Haus1984}. + +We ultimately want to treat a ring modulator with a space and time +dependent refractive index \(n = n_{0} + n_{1}(\vb{r}, t)\) with +\(n_{1}\ll n_{0}\). This situation is close to the case where +\(n_{1}=0\) where the wave equation can be solved by a plane-wave +ansatz. + +To capture near-adiabatic deviations from these solutions, we split off +the fast time evolution of the electric field +\begin{equation} + \label{eq:1} + \vb{E}(\vb{r}, t) = \vb{E}_{0}(\vb{r}, t) \eu^{-\i ω t}, +\end{equation} +where \(ω\) is as yet undetermined. Now, we \emph{assume} that +\(\dot{\vb{E}}_{0}\sim Ω \cdot\vb{E}_{0}\) with a characteristic +frequency \(Ω \ll ω\). This assumption will have to be verified in the +final result to guarantee consistency. We define the small parameter +\(δ = \frac{Ω}{ω} \ll 1\) for convenience. + +For our purposes the magnetic permeability is constant \(μ=μ_{0}\), +whereas the permittivity \(ε(\vb{r}, t)\) is time dependent with +\(\dot{ε} \sim Ω ε\). As we are not taking spatial derivatives of +\(ε\), the spatial argument will be suppressed in the following. + +The electric field is real valued, although we do not explicitly take +the real part for now. + +\subsection{A Perturbative Maxwell Equation for a Slowy Changing + Envelope} +\label{sec:pert-maxw-equat} +Applying a second curl to the Maxwell equation\footnote{Which is the + canonical way to derive the wave equation.} \(\nabla \times\vb{E} = +- ∂_{t}\vb{{B}}\) leads to +\begin{equation} + \label{eq:2} + \begin{aligned} + \nabla \times (\nabla \times \vb{E}) &= -{\nabla}^{2} \vb{E} = + -∂_{t}\bqty{\mu ∂_{t}\pqty{ε\vb{E}}}=-\mu\pqty{\ddot{ε} \vb{E} + 2 + \dot{ε}\dot{\vb{E}} + ε \ddot{\vb{E}}} \\ + &= -μ ω^{2} \bqty{\underbrace{-ε\vb{E}_{0}}_{\sim δ^{0}} + \underbrace{2 \frac{\dot{ε}}{ω} + \vb{E}_{0} - + 2\iu \frac{ε}{ω}\dot{\vb{E}}_{0}}_{\sim δ^{1}} + \underbrace{2 \frac{\dot{ε}}{ω^{2}} + \dot{\vb{E}}_{0} + \frac{ε}{ω^{2}}\ddot{\vb{E}}_{0}}_{\sim δ^{2}}}\eu^{-\iu ω t} + \end{aligned} +\end{equation} + +Up to this point we have not made any approximation. We now proceed to +drop the terms of second order in \(δ\). + +This leaves us with +\begin{equation} + \label{eq:3} + \nabla^{2}\vb{E}_{0} = μ ω^{2} \bqty{\pqty{\frac{2\dot{ε}}{ω} - ε} + \vb{E}_{0} - \frac{2 \iu ε}{ω} \dot{\vb{E}}_{0}} = \frac{n^{2} ω^{2}}{c^{2}} \bqty{\pqty{\frac{4\dot{n}}{nω} - 1} + \vb{E}_{0} - \frac{2 \iu }{ω} \dot{\vb{E}}_{0}}, +\end{equation} +with \(n=\sqrt{ε μ} c\) which can be rearranged into a form that resembles the +Schr\"odinger equation +\begin{equation} + \label{eq:4} + \iu ∂_{t}\vb{E}_{0} = - \frac{c^{2}}{2 n^{2} ω} \nabla^{2}\vb{E}_{0} + + \frac{1}{2}\pqty{\frac{4\dot{n}}{n}-ω} + \vb{E}_{0}. +\end{equation} +Note however, that the ``mass'' \(ωn^{2}/c^{2}\) in the kinetic term is not +constant, giving rise to non hermitian dynamics. This is an artifact +of neglecting orders of \(δ\). We will find however, that in the +situation investigated in \cref{sec:modul-small-port} the violation of +Hermiticity is negligible. + +In contrast to the result in \cite{Dutt2019}, \cref{eq:4} is still +second order in space and, provided \(ε\) is real, hermitian. + +\subsection{Application to a Ring Resonator} +\label{sec:appl-ring-reson} +As we are describing a fiber ring of radius \(R\) it is convenient to +work in cylindrical coordinates \((ρ, ϕ, z)\). We are interested in +the electric field at the center of the fiber and assume that it does +not vary much in the transversal directions. Thus, we neglect the +dependence of the field on the \(z\) and \(ρ\) directions and make an +ansatz \(\vb{E}_{0} = E(ϕ, t, ρ=R)\hat{\vb{z}}\). + +To satisfy the boundary condition \(E(t, 0) = E(t, 2π)\) \(\forall +t\), we expand the field into a Fourier series +\begin{equation} + \label{eq:6} + E(ϕ, t) = ∑_{m=-∞}^{+∞} C_{m} a_{m}(t) \eu^{\iu m ϕ}, +\end{equation} +with \(C_{m}\) chosen appropriately later, so as to make the \(a_{m}\) +dimensionless. Note that to obtain the \(a_{m}\) of \cite{Dutt2019} +one has to make the substitution \(a_{m}(t) \to a_{-m}(t)\). + +In the case of a constant refractive index \(n_{0}\), the modes solve +the ordinary wave equations so that +\(a_{m}\sim \eu^{\iu (mϕ - ω_{m}t)}\) with\footnote{This also deviates + from \cite{Dutt2019}. There \(m\geq 0\) and also the negative \(ω\) + solutions are missing. One has to include either one or the other to + capture all solutions. The reason for this lies their explicit + construction of a real solution. However, the fact that frequencies + with a different sign relative to the wave vector exist is not + captured by their first order differential equation.} +\(ω_{m} = \pm \frac{m c}{R n_{0}}\). Applying the procedure of +\cref{sec:pert-maxw-equat}, but to each of the mode amplitudes +\(a_{m}=b_{m}\eu^{-\iu ω_{m}t}\) (with \(ω_{m}\) as yet unspecified) +we find +\begin{equation} + \label{eq:7} + \begin{aligned} + \frac{1}{R^{2}} ∑_{m=-∞}^{+∞} C_{m} b_{m}(t)\eu^{-iω_{m}t} ∂_{ϕ}^{2}\eu^{\iu m ϕ} + &= \frac{-1}{R^{2}} ∑_{m=-∞}^{+∞} C_{m}m^{2} b_{m}(t) \eu^{\iu (m ϕ-ω_{m}t)}\\ + &= ∑_{m=-∞}^{+∞}C_{m}\frac{n^{2} ω_{m}^{2}}{c^{2}} \bqty{\pqty{\frac{4\dot{n}}{nω_{m}} - 1} + b_{m}(t) - \frac{2 \iu }{ω_{m}} \dot{b}_{m}(t)}\eu^{\iu (m ϕ-ω_{m}t)}. + \end{aligned} +\end{equation} + +In the limit \(\dot{n}\to 0 \implies n(ϕ,t) = n_{0}=\mathrm{const}\) +we should recover \(\dot{b}_{m}=0\), which implies +\begin{equation} + \label{eq:8} + ω_{m}^{2}=\pqty{\frac{mc}{Rn_{0}}}^{2} \implies ω_{m} = \pm + \abs{\frac{mc}{Rn_{0}}}, +\end{equation} +which defines the \(ω_{m}\) in this case. However, to correctly +determine the \(ω_{m}\), a slightly more delicate argument has to be +made. + + +Evaluating the \(∂_{ϕ}\) derivative, rearranging, applying +\((2π)^{-1}\int_{0}^{2π}\dd{ϕ} \eu^{-\iu l ϕ}\) and defining \(n(ϕ,t) += n_{0} + n_{1}(ϕ, t)\) yields +\begin{equation} + \label{eq:9} + \dot{b}_{l}=-\iu ∑_{m}\bqty{κ_{lm} + γ_{lm}}\eu^{-\iu (ω_{m}-ω_{l}) t}b_{m}, +\end{equation} +with +\begin{align} + κ_{lm}&= \frac{C_{m}}{4π + ω_{l}C_{l}}∫_{0}^{2π}\pqty{\frac{m^{2}c^{2}}{n^{2}R^{2}} - ω_{m}^{2}}\eu^{\iu(m-l) ϕ}\dd{ϕ} \overset{\cref{eq:8}}{=} + A_{lm} ∫_{0}^{2π}\pqty{\frac{n_{0}^{2}}{n^{2}} - 1}\eu^{\iu(m-l)ϕ}\dd{ϕ} \label{eq:10}\\ + \label{eq:11} + γ_{lm}&= A_{lm}∫_{0}^{2π}\pqty{\frac{4\dot{n}(ϕ, t)}{ω_{m}n(ϕ, + t)}}\eu^{\iu(m-l) ϕ}\dd{ϕ}\\ + \label{eq:12} + A_{lm}&=\frac{C_{m}ω_{m}^{2}}{4π + ω_{l}C_{l}}=\frac{1}{4π}\frac{C_{m}}{C_{l}}\frac{m^{2}}{l}\frac{c}{Rn_{0}} =\frac{1}{4π}\frac{C_{m}}{C_{l}}\frac{m^{2}}{l}Ω_{R} +\end{align} +which is a Sch\"odinger equation with the Hamiltonian +\(H_{lm}=\bqty{κ_{lm} + γ_{lm}}\). The denominator of \cref{eq:12} may +be cause for concern in the case that \(l=0\). This would imply +\(ω_{l}=0\) which breaks our assumption \(δ\ll 1\). The sum over \(m\) +in \cref{eq:6} should therefore exclude small \(m\). + +Note also that even in the \(\dot{n}=0\) case \cref{eq:10} does not +vanish. The coupling of the modes originates from the (spatially +modulated) deviation of \(n\) from \(n_{0}\). It is also clear, that +the choice of \(n_{1}(ϕ,t)\) has to be made so that +\(\int_{0}^{1}\abs{n_{0}^{2}/n_{1}^{2}-1}\dd{ϕ}\) is minimized to best +approximate the condition \(δ\ll 1\) by minimizing \(κ_{lm}\) and +justify the definition of the \(ω_{m}\). Remember that the \(ω_{m}\) +are still free parameters and have to be chosen so that +\({∂_{t}{b}_{m}}/{b_{m}}\sim δ \ll 1\). In particular +\(n_{1}(ϕ, t) = \mathrm{const}\) is not a valid choice. Preferably, +one should define the \(ω_{m}\) to minimize the \(κ_{lm}\) in +\cref{eq:10}. This also yields the exact solution in the +\(n(ϕ,t)=\mathrm{const}\) case. + +For time independent \(n_{1}\) we can find suitable \(ω_{m}\) by +minimizing +\begin{equation} + \label{eq:15} + \bqty{∫_{0}^{2π}\pqty{\frac{m^{2}c^{2}}{n^{2}R^{2}} - ω_{m}^{2}}\dd{ϕ}}^{2} +\end{equation} +giving +\begin{equation} + \label{eq:14} + ω_{m}^{2}= \frac{1}{2π} \frac{m^{2}c^{2}}{R^{2}} ∫_{0}^{2π} + n(ϕ)^{-2}\dd{ϕ}=\pqty{\frac{m c}{R n_{\mathrm{eff}}}}^{2}, +\end{equation} +where \(n_{eff}^{-2}=(2π)^{-1}∫_{0}^{2π}n^{-2}\dd{ϕ}\). If \(n_{1}\) +depends on time, one may use the long time average of \cref{eq:14}. + + +\subsection{Modulation of a small portion of the ring.} +\label{sec:modul-small-port} + +We now turn to the case of the modulation of a small angular portion +\(ϕ_{W}\) of the ring. In such a case +\begin{equation} + \label{eq:5} + n=n_{0}+n_{1}(t)\rect\pqty{\frac{ϕ}{ϕ_{W}}}, +\end{equation} +where \(\rect(x)=Θ(1/4-x^{2})\) and \(Θ\) is the Heaviside step +function. As the tangential components of the electric field are +continuous, we face no problems on this front. + +If we further demand \(\abs{\max_{t} n_{1}(t)}\ll 1\) and \(\lim_{T\to +∞} T^{-1} ∫_{0}^{T}n_{1}(t)\dd{t} = 0\) we can choose +the \(ω_{n}\) as in \cref{eq:8}, as follows from \cref{eq:12} +\begin{equation} + \label{eq:16} + ω_{m}^{2}=\lim_{T\to + ∞}\frac{1}{T}∫_{0}^{T}\frac{m^{2}c^{2}}{R^{2}}\bqty{\frac{1}{n_{0}^{2}}+ϕ_{W}\pqty{\frac{1}{n^{2}}-\frac{1}{n_{0}^{2}}}}\dd{t} + \approx \lim_{T\to + ∞}\frac{1}{T}∫_{0}^{T}\frac{m^{2}c^{2}}{R^{2}}\bqty{\frac{1}{n_{0}^{2}} + - 2ϕ_{W}\pqty{\frac{n_{1}(t)}{n_{0}}}}\dd{t} =\pqty{\frac{mc}{Rn_{0}}}^{2}. +\end{equation} + +To connect to the result in \cite{Dutt2019}, we can then further +evaluate \cref{eq:10}, using +\(C_{m}=\sqrt{\frac{\hbar \abs{ω_{m}}}{4π R ε_{0}n_{0}^{2}}}\) to find +\begin{equation} + \label{eq:17} + κ_{lm}=\frac{Ω_{R}ϕ_{W}\abs{l}^{-\frac{3}{2}}\abs{m}^{\frac{5}{2}}}{4π} + \pqty{\frac{n_{0}^{2}}{(n_{0}+n_{1}(t))^{2}}-1}\sinc\pqty{(m-l)\frac{ϕ_{W}}{2}}\sgn(l). +\end{equation} + +Note that here, we introduced an additional sign compared to +\cite{Dutt2019}, and we already transformed to a rotating frame. + +A slightly different choice of normalization +\begin{equation} + \label{eq:13} + C_{m}=\frac{1}{m^{2}}\sqrt{\frac{\hbar \abs{ω_{m}}}{4π R + ε_{0}n_{0}^{2}}} +\end{equation} +makes \(κ_{lm}\) hermitian and reproduces the result of +\cite{Dutt2019} +\begin{equation} + \label{eq:18} + \begin{aligned} + κ_{lm}&=\frac{Ω_{R}ϕ_{W}\sqrt{ml}}{4π} + \pqty{\frac{n_{0}^{2}}{(n_{0}+n_{1}(t))^{2}}-1}\sinc\pqty{(m-l)\frac{ϕ_{W}}{2}}\sgn(l)\\ + &\approx + \frac{Ω_{R}ϕ_{W}\sqrt{ml}}{2π} + \frac{n_{1}(t)}{n_{0}}\sinc\pqty{(m-l)\frac{ϕ_{W}}{2}}\sgn(l). + \end{aligned} +\end{equation} + +As we are interested in the case where \(m,l\gg 1\) and +\(m=M+δm\), \(l=M+δl\) with \(δm,δl\ll M\), the pre-factor of \(κ_{lm}\) +can be regarded as constant either way, guaranteeing hermiticity. + +Note that compared to \cite{Dutt2019} we added an additional sign in +\cref{eq:9} and swapped the index \(m,l\) with \(-m,-l\). This leads to +\cref{eq:18} having the same sign as in this publication, rather than +the opposite as one would expect from \cref{eq:9} alone. + +This constitutes a rigorous derivation of the result in that paper. + + +Evaluating \cref{eq:11} yields +\fixme{to be done}. + +\subsection{Open Questions} +\label{sec:open-questions} + +It would be interesting to compute an explicit expression for the +magnetic field as well. To do so would allow us to check the +continuity for \(μ\vb{H}=\vb{B}\) and to compute the Poynting vector +and give the modes a propagation direction. Of course this direction +can be inferred from the \(n=n_{0}=\mathrm{const}\) case. + +It would also be of interest, to find out how good the paraxial +approximation captures the real field at the center of the fiber. + +Lastly, the case of time independent \(n\) can likely be solved +exactly fairly easily. It would be interesting to see how this +solution relates to the equation found here. + +\section{Engineering Hamiltonians} +\label{sec:engin-hamilt} + +Having obtained the basic equations of motion in +\cref{sec:equat-moti-modul}, we now proceed to explore how to engineer +model Hamiltonians out of this equation. + +\subsection{Notation and Preliminaries} +\label{sec:notat-prel} + + +Before we begin to detail procedures to obtain engineered +Hamiltonians, a few notions concerning notation and the general +assumptions will be introduced. + +On the physical level, we work with Fourier components \(b_{m}(t) +\eu^{\iu (mϕ-ω_{m}t)}\) of +the electric Field in the ring resonators in an appropriate frame. +The amplitudes \(b_{m}\) can then be identified with a quantum state +by defining +\begin{equation} + \label{eq:19} + \ket{ψ} \equiv ∑_{m} b_{m}\ket{m} +\end{equation} +with \(\ket{m}\) being orthonormal unit vectors +(\(\braket{m}{n}=δ_{mn}\)) in a Hilbert space \(\hilb\). This defines +the fiducial basis in which the state can be measured by recording the +slowly changing envelopes of the modes. + +In this language \cref{eq:9} (in the non-rotating frame) becomes +\begin{equation} + \label{eq:20} + \iu ∂_{t}\ket{ψ} = H(t) \ket{ψ}, +\end{equation} +with \(H_{mn}(t)= κ_{mn}(t)\eu^{-\iu{ω_{n}-ω_{m}}t}\) where we've neglected the \(γ_{mn}\) +contribution from \cref{eq:11}. Let us also define +\begin{equation} + \label{eq:21} + \begin{aligned} + [D(ω)]_{mn} &\equiv ω_{m} δ_{mn} & κ_{mn}(t) & \equiv Δ_{mn} + \frac{n_{1}(t)}{n_{0}} \equiv Δ_{mn}\, f(t), + \end{aligned} +\end{equation} +where \(n(t) = n_{0} + n_{1}(t)\) with \(n_{1}\ll n_{0}\) as discussed +in \cref{sec:modul-small-port}. + +The above may seem rather obvious, but a clarification of conventions +is crucial. +In that vein the Hamiltonian of \cref{eq:20} can be expressed as +\begin{equation} + \label{eq:22} + H = H_{0} + V(t) +\end{equation} +with \(H_{0}=D(ω)\) and \(V(t)=Δ\, f(t)\). + +For practical reasons and in order for the assumptions of +\cref{sec:pert-maxw-equat} to hold, we will always work with finite +set of resonator modes, making our effective Hamiltonians finite +dimensional. Further, it is assumed that we stimulate and modulate the +system in such a way, that the boundary conditions in mode space are +not important, so that they can be chosen at our convenience. This +means that we're only concerned with a finite subspace +\(\hilb_{\mathrm{phys}} = \qty{\ket{m} \colon m\in + \bqty{{m_{0}-(N-1)/2},{m_{0} + (N-1)/2}}} \subset \hilb\). + +The goal is now to choose the geometry and the modulation so that +the time evolution operator +\begin{equation} + \label{eq:23} + \mathcal{U}_{t}[H] = \mathcal{T}\,\exp(-\iu ∫_{0}^{t}H(t)) +\end{equation} +for the Hamiltonian \(H\) of \cref{eq:20} matches the time evolution +operator for some reference Hamiltonian \(H_{\target}\) +\begin{equation} + \label{eq:24} + \norm{\mathcal{U}_{t}[U H U^\dag]-\mathcal{U}_{t}[H_{\target}]} < ε + \iff \norm{\bqty{U_{t}[U H U^†]-U_{t}[H_{\target}]}\ket{ψ}} \leq ε. +\end{equation} +for \(0\leq t\leq T\), where \(\norm{\cdot}\) on the left side is the +operator norm restricted \(\hilb_{\mathrm{phys}}\), \(U\) is some +unitary and \(ε>0\). The unitary \(U\) is allowing for a basis change +relative to the physical basis \cref{eq:19}. We require unitary +equivalence with the same unitary for all times. As +\(\mathcal{U}_{t}[H]\) is invertible, it would be trivial to achieve +perfect equivalence using a time dependent unitary +\begin{equation} + \label{eq:25} + U(t)=\mathcal{U}_{t}[H_{\target}] \mathcal{U}_{t}[H_{\target}]^†. +\end{equation} + +As transformations into rotating frames are necessary we have to +loosen the requirement and allow those transformations as well. These +transformations then amount to considering oscillatory linear +combinations of the oscillator mode amplitudes. + +This ``problem'' does not occur in \cite{Dutt2019}, as there the +response to a certain input is measured, yielding a band +structure. This requires the actual Floquet energies \emph{in the + rotating frame} to match the eigenenergies of the target +Hamiltonian. But if observables such as the mean displacement of a +walker such as in \refcite{Ricottone2020} are to be computed, the +measured quantity should be the amplitudes, or equivalently the state +\(\ket{ψ}\). These should be obtained directly using only simple +transformations such linear combinations (constant unitaries) and +translation of the signals in frequency space (rotating frame). For if +we knew the detailed dynamics induced \(H_{target}\) already, there +would be little point in trying to simulate them in the first place +and using an elaborate transformation such as \cref{eq:25} would +defeat the point. + + +It is useful to express the above in terms of an effective Hamiltonian +\begin{equation} + \label{eq:26} + H_{\eff}[H](t)\equiv \frac{1}{-\iu t} \log[U_{t}[H]]. +\end{equation} +This Hamiltonian, similar to the Floquet Hamiltonian, has a spectrum +limited by the branch cut of the complex logarithm, which however has +no influence on the dynamics it generates. By continuity of the +operator exponential the closeness +\(\norm{H_{\eff}[H](t) -H_{\eff}[H_{\target}](t)} \leq ε/t\) of the +effective Hamiltonians implies the condition \cref{eq:24}. This +representation lends itself particularly well to visualizations and +numerical studies. + +If one is only interested in specific initial states, then one could +specify the less strict requirement, that the evolution of these +specific states should not deviate from the target. + +Another possibility to loosen restrictions would be to only demand the +coincidence of the time evolution operators or the effective +Hamiltonians for a specific time \(t\). + +\section{A Single Fiber Loop} +\label{sec:single-fiber-loop} +This section mostly follows~\refcite{Dutt2019}, focusing on how to +engineer a one-dimensional tight-binding Hamiltonians with one orbital +per unit cell, +\begin{equation} + \label{eq:27} + H = ∑_{m,n=-M}^{M}t_{mn} \ketbra{m_{0}+m}{m_{0}+n}. +\end{equation} + +There we employ periodic boundary conditions to simplify the +calculations, so that \(\ket{m+N} = \ket{m}\) and +\(t_{m,n}=\min_{l\in \ZZ}{\abs{m-n + l N}}\). Here, we choose +\(N=2M +1\) for some \(M\in\NN\) and \(m_{0}\) so, that the relevant +subspace \(\hilb_{phys}\) is contained in it so that states within +this subspace don't ``see'' the boundary at the relevant time scales. + + +\section{Measuring the State Amplitudes} +\label{sec:meas-state-ampl} + +TBD + +\section{Motivational Issues} +\label{sec:motiv-probl} + +\emph{This section reflects the personal thoughts of Valentin Boettcher and +is correspondingly formulated in the first person.} + +Along with the issue concerning arbitrary unitary transformations on +the amplitudes mentioned in \cref{sec:notat-prel}, I also wonder how +we could consider the fiber loop experiment a ``realization'' of a +certain model. + +In a puristic sense, it is of course. We have a system that follows +dynamics induced by a linear differential equation resembling the +Schr\"odinger equation. More to the point\footnote{In my eyes.} would +be, to realize a quantum mechanical model in a \emph{physical quantum + mechanical system}. By this, I mean using a system whose dynamics +are given by a Hamiltonian we know and can engineer, so that the +measurement of its \emph{quantum state} matches our engineering +goals. This has been done in \cite{Roushan2014} for example. The +crucial difference to our fiber loop experiment is, that the actual +physics taking place are quantum mechanical in nature. Each +realization of a model in such a system would constitute a test of +quantum mechanics and thus be of interest from a physical +standpoint. It would also constitute a physical implementation of some +(hopefully) interesting behavior, for example Mojorana modes, or +super-conductivity, or some topological effects. + +One can of course interject now that light, or any physical system, is +quantum mechanical in nature and by measuring the amplitude and phase +of the resonator modes, we also perform a quantum measurement albeit +neglecting the fluctuations. In that sense however, a numerical simulation +would then also constitute an equally valid ``realization''. + +The one merit of the fiber loop setup (or any similar setup) that I +can think of is then to solve problems that are not tractable +analytically or numerically and that are nevertheless of practical +interest. The main goal of this project in the short term should then +be to identify such problems and asses them with respect to their +eligibility for treatment using the analog computer. + +I must admit that this prospect seems daunting to me, as I'm lacking +the experience in the field. This of-course is no reason to throw the +towel. It just puts me off. + +Working on something that has some chance of turning out to be of no +immediate practical use is also nothing that should frighten a +physicist. The development of quantum mechanics itself answered an +interesting physical questions and much later paid off by giving us +the technology that enables the information age. + +Odd enough, I'm lacking the angle to find the question ``Can we coax +the fiber loop setup into simulating the Hamiltonian \(H\)?'' +interesting. This is a subjective phenomenon, but how can't it be? Of +course, I can work on it and even achieve progress, but if work is all +I wanted, I could become a programmer and earn a much better living. + +My mental machinery is easily blocked by doubt and anxiety. When I am +sitting down to work I am constantly questioning whether I'm doing the +right thing and that leads to situations in which I am too petrified +to think properly or I am taking every opportunity to procrastinate +(such as the Dresden Project and Course Work and Chatting with others +or acquiring stuff on Kiji or dawdling in the morning). + +Also, I'm rather afraid to have to present my work in a motivated +manner, e.g. for the prelims and in applications for scholarships. + +If this renders me unfit for the pursuit of a PhD in physics, then I +am perfectly happy to accept that. I am not doing it for the title, +but because I thought I would enjoy the experience. + +All this complaining is not very constructive, but I hope it +illuminates how I feel and points a way towards the resolution of the +issue. + +The next step after reaching the immediate goal of realizing the model +in \refcite{Ricottone2020}, as mentioned above, is to be constructive +and work on scoping out the future work to reduce the uncertainty. I +am currently preparing a list of things that interest me along with +reasons for that interest, but I'm not sure which of these things are +open to me and in which context. Do they have to be related to the +fiber loop setup? Do they have to be related to synthetic dimensions? +What role do open systems play? My hope is that I can rely, at least +in part, on the guidance of more qualified and experience persons to +choose a research direction. Otherwise, the responsibility may be too +much for me. + +I may also just be overlooking something that alleviates the issue +discussed at the beginning, which would be the optimal situation. + +\printbibliography{} +\end{document} + + +%%% Local Variables: +%%% mode: latex +%%% TeX-master: t +%%% TeX-output-dir: "output" +%%% TeX-engine: luatex +%%% End: diff --git a/papers/Report/latexmkrc b/papers/Report/latexmkrc new file mode 100644 index 0000000..8ee6210 --- /dev/null +++ b/papers/Report/latexmkrc @@ -0,0 +1,4 @@ +$pdf_mode = 4; +@default_files = ('index.tex'); +$out_dir = 'output'; +$pdf_previewer = "zathura %O %S"; diff --git a/papers/Report/references.bib b/papers/Report/references.bib new file mode 100644 index 0000000..05b880c --- /dev/null +++ b/papers/Report/references.bib @@ -0,0 +1,2285 @@ +@misc{2022, + title = {Welcome to the {{Ray}} Documentation Ifmmode—\textbackslash else—\textbackslash fi {{Ray}} 2.0.0}, + date = {2022-08}, + url = {https://docs.ray.io/en/latest/index.html}, + note = {[Online; accessed 15. Sep. 2022]} +} + +@book{Agrawal2019, + title = {Nonlinear Fiber Optics}, + author = {Agrawal, G. P.}, + date = {2019}, + edition = {Sixth edition}, + publisher = {{Academic Press}}, + location = {{London, United Kingdom ; San Diego, CA, United States}}, + abstract = {Nonlinear Fiber Optics, Sixth Edition, provides an up-to-date accounting of the nonlinear phenomena occurring inside optical fibers in telecommunications infrastructure and in the medical field. This new edition includes a general update to reflect the most recent research, extensive updates to chapter 13 on Supercontinuum Generation that reflect the use of chalcogenide fibers that extend Supercontinuum into the mid-infrared region, and a new chapter devoted to the nonlinear optics of multimode and multicore fibers. This book is ideal for researchers and graduate students in photonics, optical engineering and communication engineering.--}, + isbn = {978-0-12-817042-7}, + langid = {english}, + pagetotal = {707}, + keywords = {Fiber optics,Nonlinear optics}, + annotation = {OCLC: on1112387654}, + file = {/home/hiro/Zotero/storage/FF4YTWK6/Agrawal - 2019 - Nonlinear fiber optics.pdf} +} + +@article{Alicki2013, + title = {Entanglement Boost for Extractable Work from Ensembles of Quantum Batteries}, + author = {Alicki, Robert and Fannes, Mark}, + date = {2013-04}, + journaltitle = {Phys. Rev. E}, + volume = {87}, + number = {4}, + pages = {042123}, + publisher = {{American Physical Society}}, + issn = {2470-0053}, + doi = {10.1103/PhysRevE.87.042123}, + file = {/home/hiro/Zotero/storage/JLP9FE4B/Alicki and Fannes - 2013 - Entanglement boost for extractable work from ensem.pdf} +} + +@article{Andersen2017, + title = {Ultrastrong Coupling Dynamics with a Transmon Qubit}, + author = {Andersen, Christian Kraglund and Blais, Alexandre}, + date = {2017-02}, + journaltitle = {New J. Phys.}, + volume = {19}, + number = {2}, + pages = {023022}, + publisher = {{IOP Publishing}}, + issn = {1367-2630}, + doi = {10.1088/1367-2630/aa5941}, + file = {/home/hiro/Zotero/storage/UFRTPLEF/Andersen and Blais - 2017 - Ultrastrong coupling dynamics with a transmon qubi.pdf} +} + +@book{Asboth2016, + title = {A {{Short Course}} on {{Topological Insulators}}: {{Band-structure}} Topology and Edge States in One and Two Dimensions}, + shorttitle = {A {{Short Course}} on {{Topological Insulators}}}, + author = {Asbóth, János K. and Oroszlány, László and Pályi, András}, + date = {2016}, + volume = {919}, + eprint = {1509.02295}, + eprinttype = {arxiv}, + eprintclass = {cond-mat}, + doi = {10.1007/978-3-319-25607-8}, + url = {http://arxiv.org/abs/1509.02295}, + urldate = {2023-01-27}, + abstract = {This course-based primer provides newcomers to the field with a concise introduction to some of the core topics in the emerging field of topological band insulators in one and two dimensions. The aim is to provide a basic understanding of edge states, bulk topological invariants, and of the bulk--boundary correspondence with as simple mathematical tools as possible. We use noninteracting lattice models of topological insulators, building gradually on these to arrive from the simplest one-dimensional case (the Su-Schrieffer-Heeger model for polyacetylene) to two-dimensional time-reversal invariant topological insulators (the Bernevig-Hughes-Zhang model for HgTe). In each case the model is introduced first and then its properties are discussed and subsequently generalized. The only prerequisite for the reader is a working knowledge in quantum mechanics, the relevant solid state physics background is provided as part of this self-contained text, which is complemented by end-of-chapter problems.}, + keywords = {Condensed Matter - Mesoscale and Nanoscale Physics,Condensed Matter - Other Condensed Matter}, + note = {Comment: Submitted to Lect. Notes Phys}, + file = {/home/hiro/Zotero/storage/JJ38FC7U/Asbóth et al. - 2016 - A Short Course on Topological Insulators Band-str.pdf;/home/hiro/Zotero/storage/W9DCLXEH/978-3-319-25607-8.pdf;/home/hiro/Zotero/storage/7TBW55ZY/1509.html} +} + +@article{Aurell2019, + title = {Thermal Power of Heat Flow through a Qubit}, + author = {Aurell, Erik and Montana, Federica}, + date = {2019-04}, + journaltitle = {Phys. Rev. E}, + volume = {99}, + number = {4}, + pages = {042130}, + publisher = {{American Physical Society}}, + issn = {2470-0053}, + doi = {10.1103/PhysRevE.99.042130}, + file = {/home/hiro/Zotero/storage/NZELW3KW/Aurell and Montana - 2019 - Thermal power of heat flow through a qubit.pdf} +} + +@online{Bartlett2022, + title = {Programmable Photonic System for Quantum Simulation in Arbitrary Topologies}, + author = {Bartlett, Ben and Long, Olivia Y. and Dutt, Avik and Fan, Shanhui}, + date = {2022-11-17}, + number = {arXiv:2211.09805}, + eprint = {arXiv:2211.09805}, + eprinttype = {arxiv}, + doi = {10.48550/arXiv.2211.09805}, + url = {http://arxiv.org/abs/2211.09805}, + urldate = {2023-03-09}, + abstract = {Synthetic dimensions have generated great interest for studying many types of topological, quantum, and many-body physics, and they offer a flexible platform for simulation of interesting physical systems, especially in high dimensions. In this Letter, we describe a programmable photonic device capable of emulating the dynamics of a broad class of Hamiltonians in lattices with arbitrary topologies and dimensions. We derive a correspondence between the physics of the device and the Hamiltonians of interest, and we simulate the physics of the device to observe a wide variety of physical phenomena, including chiral states in a Hall ladder, effective gauge potentials, and oscillations in high-dimensional lattices. Our proposed device opens new possibilities for studying topological and many-body physics in near-term experimental platforms.}, + pubstate = {preprint}, + keywords = {Physics - Optics,Quantum Physics}, + note = {Comment: 15 pages, 7 figures}, + file = {/home/hiro/Zotero/storage/2D6ME4SV/Bartlett et al. - 2022 - Programmable photonic system for quantum simulatio.pdf;/home/hiro/Zotero/storage/UC5YW6KD/2211.html} +} + +@article{Batra2020, + title = {Physics with {{Coffee}} and {{Doughnuts}}}, + author = {Batra, Navketan and Sheet, Goutam}, + date = {2020-06-01}, + journaltitle = {Resonance}, + shortjournal = {Reson}, + volume = {25}, + number = {6}, + pages = {765--786}, + issn = {0973-712X}, + doi = {10.1007/s12045-020-0995-x}, + url = {https://doi.org/10.1007/s12045-020-0995-x}, + urldate = {2023-01-18}, + abstract = {Topological insulators are a new class of materials that have attracted significant attention in contemporary condensed matter physics. They are different from regular insulators, and they display novel quantum properties that involve the idea of ‘topology’, an area of mathematics. Some of the fundamental concepts behind topological insulators, particularly in low-dimensional condensed matter systems such as poly-acetylene chains, can be understood using a simple one-dimensional toy model popularly known as the Su-Schrieffer-Heeger (SSH) model. This model can also be used as an introduction to the topological insulators of higher dimensions. Here, we give a concise description of the SSH model along with a brief review of the background physics and attempt to understand the ideas of topological invariants, edge states, and bulk-boundary correspondence using the model.}, + langid = {english}, + keywords = {band insulators,tightbinding model,Topological insulators}, + file = {/home/hiro/Zotero/storage/G7IAMDKY/Batra and Sheet - 2020 - Physics with Coffee and Doughnuts.pdf;/home/hiro/Zotero/storage/WKKASAU7/batra2020.pdf.pdf} +} + +@article{Bera2017, + title = {Generalized Laws of Thermodynamics in the Presence of Correlations - {{Nature Communications}}}, + author = {Bera, Manabendra N. and Riera, Arnau and Lewenstein, Maciej and Winter, Andreas}, + date = {2017-12}, + journaltitle = {Nat. Commun.}, + volume = {8}, + number = {2180}, + pages = {1--6}, + publisher = {{Nature Publishing Group}}, + issn = {2041-1723}, + doi = {10.1038/s41467-017-02370-x}, + file = {/home/hiro/Zotero/storage/LQCWBPKP/Bera et al. - 2017 - Generalized laws of thermodynamics in the presence.pdf} +} + +@article{Bera2021, + title = {Attaining {{Carnot}} Efficiency with Quantum and Nanoscale Heat Engines - Npj {{Quantum Information}}}, + author = {Bera, Mohit Lal and Lewenstein, Maciej and Bera, Manabendra Nath}, + date = {2021-02}, + journaltitle = {npj Quantum Inf.}, + volume = {7}, + number = {31}, + pages = {1--7}, + publisher = {{Nature Publishing Group}}, + issn = {2056-6387}, + doi = {10.1038/s41534-021-00366-6}, + file = {/home/hiro/Zotero/storage/KI72U5TA/bera2021.pdf.pdf;/home/hiro/Zotero/storage/XZXSFY6V/Bera et al. - 2021 - Attaining Carnot efficiency with quantum and nanos.pdf} +} + +@article{Bera2021a, + title = {Quantum {{Heat Engines}} with {{Carnot Efficiency}} at {{Maximum Power}}}, + author = {Bera, Mohit Lal and Juliıfmmode\textbackslash gravea\textbackslash elseà\textbackslash fi-Farrıfmmode\textbackslash acutee\textbackslash elseé\textbackslash fi, Sergi and Lewenstein, Maciej and Bera, Manabendra Nath}, + date = {2021-06}, + journaltitle = {arXiv}, + url = {https://arxiv.org/abs/2106.01193v1}, + file = {/home/hiro/Zotero/storage/ULPSNGEL/Bera et al. - 2021 - Quantum Heat Engines with Carnot Efficiency at Max.pdf} +} + +@article{Bilitewski2015, + title = {Scattering Theory for {{Floquet-Bloch}} States}, + author = {Bilitewski, Thomas and Cooper, Nigel R.}, + date = {2015-03-02}, + journaltitle = {Physical Review A}, + shortjournal = {Phys. Rev. A}, + volume = {91}, + number = {3}, + pages = {033601}, + publisher = {{American Physical Society}}, + doi = {10.1103/PhysRevA.91.033601}, + url = {https://link.aps.org/doi/10.1103/PhysRevA.91.033601}, + urldate = {2023-01-23}, + abstract = {Motivated by recent experimental implementations of artificial gauge fields for gases of cold atoms, we study the scattering properties of particles that are subjected to time-periodic Hamiltonians. Making use of Floquet theory, we focus on translationally invariant situations in which the single-particle dynamics can be described in terms of spatially extended Floquet-Bloch waves. We develop a general formalism for the scattering of these Floquet-Bloch waves. An important role is played by the conservation of Floquet quasienergy, which is defined only up to the addition of integer multiples of ℏω for a Hamiltonian with period T=2π/ω. We discuss the consequences of this for the interpretation of “elastic” and “inelastic” scattering in cases of physical interest. We illustrate our general results with applications to the scattering of a single particle in a Floquet-Bloch state from a static potential and the scattering of two bosonic particles in Floquet-Bloch states through their interparticle interaction. We analyze examples of these scattering processes that are closely related to the schemes used to generate artificial gauge fields in cold-atom experiments, through optical dressing of internal states, or through time-periodic modulations of tight-binding lattices. We show that the effects of scattering cannot, in general, be understood by an effective time-independent Hamiltonian, even in the limit ω→∞ of rapid modulation. We discuss the relative sizes of the elastic scattering (required to stabilize many-body phases) and of the inelastic scattering (leading to deleterious heating effects). In particular, we describe how inelastic processes that can cause significant heating in the current experimental setup can be switched off by additional confinement of transverse motion.}, + file = {/home/hiro/Zotero/storage/73C6XQG7/Bilitewski and Cooper - 2015 - Scattering theory for Floquet-Bloch states.pdf;/home/hiro/Zotero/storage/RHX6PU6L/bilitewski2015.pdf.pdf;/home/hiro/Zotero/storage/3QGDNLUU/PhysRevA.91.html} +} + +@book{Binder2018, + title = {Thermodynamics in the {{Quantum Regime}}}, + author = {Binder, Felix and Correa, Luis A. and Gogolin, Christian and Anders, Janet and Adesso, Gerardo}, + date = {2018}, + publisher = {{Springer}}, + location = {{Cham, Switzerland}}, + issn = {0168-1222}, + doi = {10.1007/978-3-319-99046-0}, + isbn = {978-3-319-99045-3}, + file = {/home/hiro/Zotero/storage/JFJV38BA/Binder et al. - 2018 - Thermodynamics in the Quantum Regime.pdf} +} + +@article{Biswas2022, + title = {Extraction of Ergotropy: Free Energy Bound and Application to Open Cycle Engines}, + author = {Biswas, Tanmoy and \textbackslash Lobejko, Marcin and Mazurek, Pawe\textbackslash l and Ja\textbackslash lowiecki, Konrad and Horodecki, Micha\textbackslash l}, + date = {2022-05}, + journaltitle = {arXiv}, + doi = {10.48550/arXiv.2205.06455}, + file = {/home/hiro/Zotero/storage/6XIXUJGD/Biswas et al. - 2022 - Extraction of ergotropy free energy bound and app.pdf} +} + +@article{Blanes2009, + title = {The {{Magnus}} Expansion and Some of Its Applications}, + author = {Blanes, S. and Casas, F. and Oteo, J. A. and Ros, J.}, + date = {2009-01}, + journaltitle = {Physics Reports}, + shortjournal = {Physics Reports}, + volume = {470}, + number = {5-6}, + eprint = {0810.5488}, + eprinttype = {arxiv}, + eprintclass = {math-ph}, + pages = {151--238}, + issn = {03701573}, + doi = {10.1016/j.physrep.2008.11.001}, + url = {http://arxiv.org/abs/0810.5488}, + urldate = {2023-02-07}, + abstract = {Approximate resolution of linear systems of differential equations with varying coefficients is a recurrent problem shared by a number of scientific and engineering areas, ranging from Quantum Mechanics to Control Theory. When formulated in operator or matrix form, the Magnus expansion furnishes an elegant setting to built up approximate exponential representations of the solution of the system. It provides a power series expansion for the corresponding exponent and is sometimes referred to as Time-Dependent Exponential Perturbation Theory. Every Magnus approximant corresponds in Perturbation Theory to a partial re-summation of infinite terms with the important additional property of preserving at any order certain symmetries of the exact solution.}, + langid = {english}, + keywords = {Mathematical Physics}, + note = {Comment: Report on the Magnus expansion for differential equations and its applications to several physical problems}, + file = {/home/hiro/Zotero/storage/4L2L92N6/Blanes et al. - 2009 - The Magnus expansion and some of its applications.pdf} +} + +@article{Boisverta, + title = {{{ENGINEERING A SSH MODEL WITH RESERVOIR}}}, + author = {Boisvert, Mathieu}, + pages = {18}, + abstract = {This logbook is meant to keep a record of the work done and to serve as a reminder of what has been attempted thus far.}, + langid = {english}, + file = {/home/hiro/Zotero/storage/42FYDQJP/Boisvert - ENGINEERING A SSH MODEL WITH RESERVOIR.pdf} +} + +@book{Bratteli1987, + title = {Operator Algebras and Quantum Statistical Mechanics 1 {{C}}*- and {{W}}*-Algebras, Symmetry Groups, Decomposition of States}, + author = {Bratteli, Ola and Robinson, Derek W.}, + date = {1987}, + edition = {2. ed.}, + publisher = {{Springer}}, + location = {{New York, NY}}, + url = {http://slubdd.de/katalog?TN_libero_mab2147995}, + abstract = {Literaturverz. S. 469 - 488}, + isbn = {978-0-387-17093-0} +} + +@book{Breuer2002, + title = {The {{Theory}} of {{Open Quantum Systems}}}, + author = {Breuer, Heinz-Peter and Petruccione, Francesco}, + date = {2002-06}, + publisher = {{Oxford University Press}}, + location = {{Oxford, England, UK}}, + url = {https://global.oup.com/academic/product/the-theory-of-open-quantum-systems-9780198520634}, + isbn = {978-0-19-852063-4} +} + +@book{Bruus2004, + title = {Many-{{Body Quantum Theory}} in {{Condensed Matter Physics}}: {{An Introduction}}}, + shorttitle = {Many-{{Body Quantum Theory}} in {{Condensed Matter Physics}}}, + author = {Bruus, Henrik and Flensberg, Karsten and Flensberg, Ørsted Laboratory Niels Bohr Institute Karsten}, + date = {2004-09-02}, + eprint = {v5vhg1tYLC8C}, + eprinttype = {googlebooks}, + publisher = {{OUP Oxford}}, + abstract = {This book is an introduction to the techniques of many-body quantum theory with a large number of applications to condensed matter physics. The basic idea of the book is to provide a self-contained formulation of the theoretical framework without losing mathematical rigor, while at the same time providing physical motivation and examples. The examples are taken from applications in electron systems and transport theory. On the formal side, the book covers an introduction to second quantization, many-body Green's function, finite temperature Feynman diagrams and bosonization. The applications include traditional transport theory in bulk as well as mesoscopic systems, where both the Landau-Büttiker formalism and recent developments in correlated transport phenomena in mesoscopic systems and nano-structures are covered. Other topics include interacting electron gases, plasmons, electron-phonon interactions, superconductivity and a final chapter on one-dimensional systems where a detailed treatment of Luttinger liquid theory and bosonization techniques is given. Having grown out of a set of lecture notes, and containing many pedagogical exercises, this book is designed as a textbook for an advanced undergraduate or graduate course, and is also well suited for self-study.}, + isbn = {978-0-19-856633-5}, + langid = {english}, + pagetotal = {462}, + keywords = {Science / Chemistry / Physical & Theoretical,Science / Physics / Condensed Matter,Science / Physics / General,Science / Physics / Quantum Theory,Technology & Engineering / Electrical,Technology & Engineering / Electronics / General,Technology & Engineering / Materials Science / General,Technology & Engineering / Nanotechnology & MEMS} +} + +@book{Bruus2004b, + title = {Many-Body Quantum Theory in Condensed Matter Physics: An Introduction}, + shorttitle = {Many-Body Quantum Theory in Condensed Matter Physics}, + author = {Bruus, Henrik and Flensberg, Karsten}, + date = {2004}, + series = {Oxford Graduate Texts}, + publisher = {{Oxford University Press}}, + location = {{Oxford ; New York}}, + isbn = {978-0-19-856633-5}, + langid = {english}, + pagetotal = {435}, + keywords = {Condensed matter,Many-body problem,Quantum theory,Textbooks}, + annotation = {OCLC: ocm56694794}, + file = {/home/hiro/Zotero/storage/A5U3GD36/Bruus and Flensberg - 2004 - Many-body quantum theory in condensed matter physi.pdf} +} + +@book{Bryant2016, + title = {Computer Systems: A Programmer's Perspective}, + shorttitle = {Computer Systems}, + author = {Bryant, Randal E. and O'Hallaron, David R.}, + date = {2016}, + edition = {Third edition}, + publisher = {{Pearson}}, + location = {{Boston}}, + isbn = {978-0-13-409266-9}, + pagetotal = {1084}, + keywords = {Computer systems,Computers,Telecommunication,User interfaces (Computer systems)}, + file = {/home/hiro/Zotero/storage/3YFEKX3B/Bryant and O'Hallaron - 2016 - Computer systems a programmer's perspective.pdf} +} + +@article{Buffoni2022, + title = {Spontaneous {{Fluctuation-Symmetry Breaking}} and the {{Landauer Principle}}}, + author = {Buffoni, Lorenzo and Campisi, Michele}, + date = {2022-01}, + journaltitle = {J. Stat. Phys.}, + volume = {186}, + number = {2}, + pages = {31--12}, + publisher = {{Springer US}}, + issn = {1572-9613}, + doi = {10.1007/s10955-022-02877-8}, + file = {/home/hiro/Zotero/storage/SAECW24Y/Buffoni and Campisi - 2022 - Spontaneous Fluctuation-Symmetry Breaking and the .pdf} +} + +@article{Caldeira1981, + title = {Influence of {{Dissipation}} on {{Quantum Tunneling}} in {{Macroscopic Systems}}}, + author = {Caldeira, A. O. and Leggett, A. J.}, + date = {1981-01-26}, + journaltitle = {Physical Review Letters}, + shortjournal = {Phys. Rev. Lett.}, + volume = {46}, + number = {4}, + pages = {211--214}, + publisher = {{American Physical Society}}, + doi = {10.1103/PhysRevLett.46.211}, + url = {https://link.aps.org/doi/10.1103/PhysRevLett.46.211}, + urldate = {2022-09-23}, + abstract = {A quantum system which can tunnel, at T=0, out of a metastable state and whose interaction with its environment is adequately described in the classically accessible region by a phenomenological friction coefficient η, is considered. By only assuming that the environment response is linear, it is found that dissipation multiplies the tunneling probability by the factor exp[−Aη(Δq)2ℏ], where Δq is the "distance under the barrier" and A is a numerical factor which is generally of order unity.}, + keywords = {counter term,initial slip}, + file = {/home/hiro/Zotero/storage/B372DXYR/Caldeira and Leggett - 1981 - Influence of Dissipation on Quantum Tunneling in M.pdf;/home/hiro/Zotero/storage/DPYDLSKC/PhysRevLett.46.html} +} + +@article{Caldeira1983, + title = {Quantum Tunnelling in a Dissipative System}, + author = {Caldeira, A. O. and Leggett, A. J.}, + date = {1983-09}, + journaltitle = {Ann. Phys.}, + volume = {149}, + number = {2}, + pages = {374--456}, + publisher = {{Academic Press}}, + issn = {0003-4916}, + doi = {10.1016/0003-4916(83)90202-6}, + file = {/home/hiro/Zotero/storage/54ETEEWR/Caldeira and Leggett - 1983 - Quantum tunnelling in a dissipative system.pdf} +} + +@book{Caldeira2014, + title = {An {{Introduction}} to {{Macroscopic Quantum Phenomena}} and {{Quantum Dissipation}}}, + author = {Caldeira, A. O.}, + date = {2014-03}, + journaltitle = {Cambridge Core}, + publisher = {{Cambridge University Press}}, + location = {{Cambridge, England, UK}}, + doi = {10.1017/CBO9781139035439}, + isbn = {978-0-521-11375-5} +} + +@online{Cardin2022, + title = {Photon-Number Moments and Cumulants of {{Gaussian}} States}, + author = {Cardin, Yanic and Quesada, Nicolás}, + date = {2022-12-12}, + number = {arXiv:2212.06067}, + eprint = {arXiv:2212.06067}, + eprinttype = {arxiv}, + doi = {10.48550/arXiv.2212.06067}, + url = {http://arxiv.org/abs/2212.06067}, + urldate = {2023-01-20}, + abstract = {We develop a closed-form expression for the moments and cumulants of Gaussian states when measured in the photon-number basis. We express the photon-number moments of a Gaussian state in terms of the loop Hafnian, a function that when applied to \$(0,1)\$-matrices representing the adjacency of a graph, counts the number of its perfect matchings. We then use these expressions to calculate genuine photon-number correlations between modes in terms of cumulants. We show that when a uniformly lossy interferometer is fed in every input with identical single-mode Gaussian states with zero displacement, all the odd-order cumulants but the first one are zero. Finally, we employ the expressions we derive to study the distribution of cumulants up to the fourth order for different input states in a Gaussian boson sampling setup where \$K\$ identical states are fed into an \$\textbackslash ell\$-mode interferometer. We analyze the dependence of the cumulants as a function of the type of state, squeezed, lossy squeezed, squashed, or thermal, and as a function of the number of non-vacuum inputs. We find that thermal states perform much worse than other classical states, such as squashed states, at mimicking the photon-number cumulants of lossy or lossless squeezed states.}, + pubstate = {preprint}, + keywords = {Quantum Physics}, + file = {/home/hiro/Zotero/storage/CESVNFXZ/Cardin and Quesada - 2022 - Photon-number moments and cumulants of Gaussian st.pdf} +} + +@article{Cartwright1976, + title = {A Non-Negative {{Wigner-type}} Distribution}, + author = {Cartwright, N. D.}, + date = {1976-01}, + journaltitle = {Physica A}, + volume = {83}, + number = {1}, + pages = {210--212}, + publisher = {{North-Holland}}, + issn = {0378-4371}, + doi = {10.1016/0378-4371(76)90145-X}, + file = {/home/hiro/Zotero/storage/5CFU6VRL/cartwright1976.pdf.pdf;/home/hiro/Zotero/storage/APF2CJ6Z/Cartwright - 1976 - A non-negative Wigner-type distribution.pdf} +} + +@article{Chen2010, + title = {Fast {{Optimal Frictionless Atom Cooling}} in {{Harmonic Traps}}: {{Shortcut}} to {{Adiabaticity}}}, + author = {Chen, Xi and Ruschhaupt, A. and Schmidt, S. and del Campo, A. and Guıfmmode\textbackslash acutee\textbackslash elseé\textbackslash firy-Odelin, D. and Muga, J. G.}, + options = {useprefix=true}, + date = {2010-02}, + journaltitle = {Phys. Rev. Lett.}, + volume = {104}, + number = {6}, + pages = {063002}, + publisher = {{American Physical Society}}, + issn = {1079-7114}, + doi = {10.1103/PhysRevLett.104.063002}, + file = {/home/hiro/Zotero/storage/8NNPCY2Y/Chen et al. - 2010 - Fast Optimal Frictionless Atom Cooling in Harmonic.pdf} +} + +@article{Cheng2005, + title = {Markovian {{Approximation}} in the {{Relaxation}} of {{Open Quantum Systems}}}, + author = {Cheng, Y. C. and Silbey, R. J.}, + date = {2005-11}, + journaltitle = {The Journal of Physical Chemistry B}, + volume = {109}, + number = {45}, + pages = {21399--21405}, + issn = {1520-6106, 1520-5207}, + doi = {10.1021/jp051303o} +} + +@article{Cheng2023, + title = {Artificial {{Non-Abelian Lattice Gauge Fields}} for {{Photons}} in the {{Synthetic Frequency Dimension}}}, + author = {Cheng, Dali and Wang, Kai and Fan, Shanhui}, + date = {2023-02-22}, + journaltitle = {Physical Review Letters}, + shortjournal = {Phys. Rev. Lett.}, + volume = {130}, + number = {8}, + pages = {083601}, + publisher = {{American Physical Society}}, + doi = {10.1103/PhysRevLett.130.083601}, + url = {https://link.aps.org/doi/10.1103/PhysRevLett.130.083601}, + urldate = {2023-03-09}, + abstract = {Non-Abelian gauge fields give rise to nontrivial topological physics. Here we develop a scheme to create an arbitrary SU(2) lattice gauge field for photons in the synthetic frequency dimension using an array of dynamically modulated ring resonators. The photon polarization is taken as the spin basis to implement the matrix-valued gauge fields. Using a non-Abelian generalization of the Harper-Hofstadter Hamiltonian as a specific example, we show that the measurement of the steady-state photon amplitudes inside the resonators can reveal the band structures of the Hamiltonian, which show signatures of the underlying non-Abelian gauge field. These results provide opportunities to explore novel topological phenomena associated with non-Abelian lattice gauge fields in photonic systems.}, + file = {/home/hiro/Zotero/storage/2WG9TXBT/Cheng et al. - 2023 - Artificial Non-Abelian Lattice Gauge Fields for Ph.pdf;/home/hiro/Zotero/storage/RP7ZITJP/PhysRevLett.130.html} +} + +@book{Chruscinski2004, + title = {Geometric {{Phases}} in {{Classical}} and {{Quantum Mechanics}}}, + author = {Chruściński, Dariusz and Jamiołkowski, Andrzej}, + date = {2004}, + publisher = {{Birkhäuser Boston}}, + location = {{Boston, MA}}, + doi = {10.1007/978-0-8176-8176-0}, + url = {http://link.springer.com/10.1007/978-0-8176-8176-0}, + urldate = {2023-01-26}, + isbn = {978-1-4612-6475-0 978-0-8176-8176-0}, + langid = {english}, + file = {/home/hiro/Zotero/storage/JRNNM7ET/Chruściński and Jamiołkowski - 2004 - Geometric Phases in Classical and Quantum Mechanic.pdf} +} + +@article{CufaroPetroni2020, + title = {Probability and {{Stochastic Processes}} for {{Physicists}} ||}, + author = {Cufaro Petroni, Nicola}, + date = {2020}, + journaltitle = {UNITEXT for Physics vol. 10.1007/978-3-030-48408-8}, + volume = {10.1007/978-3-030-48408-8}, + publisher = {{Springer International Publishing}}, + doi = {10.1007/978-3-030-48408-8}, + url = {libgen.li/file.php?md5=0ac1c3786767232ebdc10b716eff3b96}, + isbn = {9783030484071; 3030484076; 9783030484088; 3030484084}, + file = {/home/hiro/Zotero/storage/TVKL6X7W/Cufaro Petroni - 2020 - Probability and Stochastic Processes for Physicist.pdf} +} + +@article{Davidoviifmmodeacutecelsecfi2020, + title = {Completely {{Positive}}, {{Simple}}, and {{Possibly Highly Accurate Approximation}} of the {{Redfield Equation}}}, + author = {Davidoviıfmmode\textbackslash acutec\textbackslash elseć\textbackslash fi, Dragomir}, + date = {2020-09}, + journaltitle = {Quantum}, + volume = {4}, + pages = {326}, + publisher = {{Verein zur Fıfmmode\textbackslash ddoto\textbackslash elseö\textbackslash firderung des Open Access Publizierens in den Quantenwissenschaften}}, + doi = {10.22331/q-2020-09-21-326}, + file = {/home/hiro/Zotero/storage/K6K7NWGD/Davidoviıfmmodeacutecelsećfi - 2020 - Completely Positive, Simple, and Possibly Highly A.pdf} +} + +@online{Descartes1988, + title = {Descartes: {{Selected Philosophical Writings}}}, + shorttitle = {Descartes}, + author = {Descartes, René and Cottingham, John and Stoothoff, Robert and Murdoch, Dugald and Kenny, Anthony}, + date = {1988-02-25}, + publisher = {{Cambridge University Press}}, + doi = {10.1017/CBO9780511805059}, + url = {https://www.cambridge.org/highereducation/books/descartes-selected-philosophical-writings/31324F237F501A6F837FB820B23DB694}, + urldate = {2023-01-23}, + abstract = {Based on the new and much acclaimed two-volume Cambridge edition of The Philosophical Writings of Descartes by Cottingham, Stoothoff and Murdoch, this anthology of essential texts contains the most important and widely studied of those writings, including the Discourse and Meditations and substantial extracts from the Regulae, Optics, Principles, Objectives and Replies, Comments on a Broadsheet, and Passions of the Soul. In clear, readable, modern English, with a full text and running references to the standard Franco-Latin edition of Descartes, this book is planned as the definitive one-volume reader for all English-speaking students of Descartes.}, + isbn = {9780511805059}, + langid = {english}, + organization = {{Higher Education from Cambridge University Press}}, + file = {/home/hiro/Zotero/storage/EAKNT9KX/31324F237F501A6F837FB820B23DB694.html} +} + +@article{Diifmmodeacuteoelseofisi1997, + title = {The Non-{{Markovian}} Stochastic {{Schrıfmmode}}\textbackslash ddoto\textbackslash elseö\textbackslash fidinger Equation for Open Systems}, + author = {Diıfmmode\textbackslash acuteo\textbackslash elseó\textbackslash fisi, Lajos and Strunz, Walter T.}, + date = {1997-11}, + journaltitle = {Phys. Lett. A}, + volume = {235}, + number = {6}, + pages = {569--573}, + publisher = {{North-Holland}}, + issn = {0375-9601}, + doi = {10.1016/S0375-9601(97)00717-2}, + file = {/home/hiro/Zotero/storage/FNFIWIUB/Diıfmmodeacuteoelseófisi and Strunz - 1997 - The non-Markovian stochastic Schrıfmmodeddotoels.pdf} +} + +@article{Diifmmodeacuteoelseofisi1998, + title = {Non-{{Markovian}} Quantum State Diffusion}, + author = {Diıfmmode\textbackslash acuteo\textbackslash elseó\textbackslash fisi, L. and Gisin, N. and Strunz, W. T.}, + date = {1998-09}, + journaltitle = {Phys. Rev. A}, + volume = {58}, + number = {3}, + pages = {1699--1712}, + publisher = {{American Physical Society}}, + issn = {2469-9934}, + doi = {10.1103/PhysRevA.58.1699}, + file = {/home/hiro/Zotero/storage/EDLXJTLQ/Diıfmmodeacuteoelseófisi et al. - 1998 - Non-Markovian quantum state diffusion.pdf} +} + +@article{Diosi1995, + title = {Decoherent {{Histories}} and {{Quantum State Diffusion}}}, + author = {Diósi, Lajos and Gisin, Nicolas and Halliwell, Jonathan and Percival, Ian C.}, + date = {1995-01}, + journaltitle = {Phys. Rev. Lett.}, + volume = {74}, + number = {2}, + pages = {203--207}, + publisher = {{American Physical Society}}, + issn = {1079-7114}, + doi = {10.1103/PhysRevLett.74.203}, + file = {/home/hiro/Zotero/storage/64FS4TQL/Diósi et al. - 1995 - Decoherent Histories and Quantum State Diffusion.pdf} +} + +@article{Dou2018, + title = {Universal Approach to Quantum Thermodynamics in the Strong Coupling Regime}, + author = {Dou, Wenjie and Ochoa, Maicol A. and Nitzan, Abraham and Subotnik, Joseph E.}, + date = {2018-10}, + journaltitle = {Phys. Rev. B}, + volume = {98}, + number = {13}, + pages = {134306}, + publisher = {{American Physical Society}}, + issn = {2469-9969}, + doi = {10.1103/PhysRevB.98.134306}, + file = {/home/hiro/Zotero/storage/I5LVTXJS/Dou et al. - 2018 - Universal approach to quantum thermodynamics in th.pdf} +} + +@article{Dutt2019, + title = {Experimental Band Structure Spectroscopy along a Synthetic Dimension}, + author = {Dutt, Avik and Minkov, Momchil and Lin, Qian and Yuan, Luqi and Miller, David A. B. and Fan, Shanhui}, + date = {2019-07-16}, + journaltitle = {Nature Communications}, + shortjournal = {Nat Commun}, + volume = {10}, + number = {1}, + pages = {3122}, + publisher = {{Nature Publishing Group}}, + issn = {2041-1723}, + doi = {10.1038/s41467-019-11117-9}, + url = {https://www.nature.com/articles/s41467-019-11117-9}, + urldate = {2023-01-05}, + abstract = {There has been significant recent interest in synthetic dimensions, where internal degrees of freedom of a particle are coupled to form higher-dimensional lattices in lower-dimensional physical structures. For these systems, the concept of band structure along the synthetic dimension plays a central role in their theoretical description. Here we provide a direct experimental measurement of the band structure along the synthetic dimension. By dynamically modulating a resonator at frequencies commensurate with its mode spacing, we create a periodically driven lattice of coupled modes in the frequency dimension. The strength and range of couplings can be dynamically reconfigured by changing the modulation amplitude and frequency. We show theoretically and demonstrate experimentally that time-resolved transmission measurements of this system provide a direct readout of its band structure. We also realize long-range coupling, gauge potentials and nonreciprocal bands by simply incorporating additional frequency drives, enabling great flexibility in band structure engineering.}, + issue = {1}, + langid = {english}, + keywords = {Optical physics,Optics and photonics,Photonic devices,Topological matter}, + file = {/home/hiro/Zotero/storage/PWHYFXDN/Dutt et al. - 2019 - Experimental band structure spectroscopy along a s.pdf;/home/hiro/Zotero/storage/TWGWKTKI/supplement.pdf} +} + +@article{Dutt2020, + title = {Higher-Order Topological Insulators in Synthetic Dimensions}, + author = {Dutt, Avik and Minkov, Momchil and Williamson, Ian A. D. and Fan, Shanhui}, + date = {2020-07-20}, + journaltitle = {Light: Science \& Applications}, + shortjournal = {Light Sci Appl}, + volume = {9}, + number = {1}, + pages = {131}, + issn = {2047-7538}, + doi = {10.1038/s41377-020-0334-8}, + url = {https://www.nature.com/articles/s41377-020-0334-8}, + urldate = {2023-02-02}, + abstract = {Conventional topological insulators support boundary states with dimension one lower than that of the bulk system that hosts them, and these states are topologically protected due to quantized bulk dipole moments. Recently, higherorder topological insulators have been proposed as a way of realizing topological states with dimensions two or more lower than that of the bulk due to the quantization of bulk quadrupole or octupole moments. However, all these proposals as well as experimental realizations have been restricted to real-space dimensions. Here, we construct photonic higher-order topological insulators (PHOTIs) in synthetic dimensions. We show the emergence of a quadrupole PHOTI supporting topologically protected corner modes in an array of modulated photonic molecules with a synthetic frequency dimension, where each photonic molecule comprises two coupled rings. By changing the phase difference of the modulation between adjacent coupled photonic molecules, we predict a dynamical topological phase transition in the PHOTI. Furthermore, we show that the concept of synthetic dimensions can be exploited to realize even higher-order multipole moments such as a fourth-order hexadecapole (16-pole) insulator supporting 0D corner modes in a 4D hypercubic synthetic lattice that cannot be realized in real-space lattices.}, + langid = {english}, + file = {/home/hiro/Zotero/storage/PHE8L8AF/Dutt-etal-Higher-order-topological-LightSciAppl(2020)-Supplement.pdf;/home/hiro/Zotero/storage/WQ9SKTL5/Dutt et al. - 2020 - Higher-order topological insulators in synthetic d.pdf} +} + +@misc{EricSchulte2022, + title = {Introducing {{Babel}}}, + author = {Eric Schulte, Dan Davison}, + date = {2022-09}, + url = {https://orgmode.org/worg/org-contrib/babel/intro.html}, + note = {[Online; accessed 15. Sep. 2022]} +} + +@article{Esposito2015, + title = {Nature of Heat in Strongly Coupled Open Quantum Systems}, + author = {Esposito, Massimiliano and Ochoa, Maicol A. and Galperin, Michael}, + date = {2015-12}, + journaltitle = {Phys. Rev. B}, + volume = {92}, + number = {23}, + pages = {235440}, + publisher = {{American Physical Society}}, + issn = {2469-9969}, + doi = {10.1103/PhysRevB.92.235440}, + file = {/home/hiro/Zotero/storage/7PVL56JQ/Esposito et al. - 2015 - Nature of heat in strongly coupled open quantum sy.pdf} +} + +@article{Feldmann2004, + title = {Characteristics of the Limit Cycle of a Reciprocating Quantum Heat Engine}, + author = {Feldmann, Tova and Kosloff, Ronnie}, + date = {2004-10}, + journaltitle = {Phys. Rev. E}, + volume = {70}, + number = {4}, + pages = {046110}, + publisher = {{American Physical Society}}, + issn = {2470-0053}, + doi = {10.1103/PhysRevE.70.046110}, + file = {/home/hiro/Zotero/storage/DCH9T8GH/feldmann2004.pdf.pdf;/home/hiro/Zotero/storage/PUQDSRXX/Feldmann and Kosloff - 2004 - Characteristics of the limit cycle of a reciprocat.pdf} +} + +@article{Feynman1963, + title = {The Theory of a General Quantum System Interacting with a Linear Dissipative System}, + author = {Feynman, R. P. and Vernon, F. L.}, + date = {1963-10}, + journaltitle = {Ann. Phys.}, + volume = {24}, + pages = {118--173}, + publisher = {{Academic Press}}, + issn = {0003-4916}, + doi = {10.1016/0003-4916(63)90068-X}, + file = {/home/hiro/Zotero/storage/GFW3A5XT/Feynman and Vernon - 1963 - The theory of a general quantum system interacting.pdf} +} + +@article{Fidkowski2011, + title = {Model {{Characterization}} of {{Gapless Edge Modes}} of {{Topological Insulators Using Intermediate Brillouin-Zone Functions}}}, + author = {Fidkowski, Lukasz and Jackson, T. S. and Klich, Israel}, + date = {2011-07-11}, + journaltitle = {Physical Review Letters}, + shortjournal = {Phys. Rev. Lett.}, + volume = {107}, + number = {3}, + pages = {036601}, + publisher = {{American Physical Society}}, + doi = {10.1103/PhysRevLett.107.036601}, + url = {https://link.aps.org/doi/10.1103/PhysRevLett.107.036601}, + urldate = {2023-02-02}, + abstract = {We characterize gapless edge modes in translation invariant topological insulators. We show that the edge mode spectrum is a continuous deformation of the spectrum of a certain gluing function defining the occupied state bundle over the Brillouin zone. Topologically nontrivial gluing functions, corresponding to nontrivial bundles, then yield edge modes exhibiting spectral flow. We illustrate our results for the case of chiral edge states in two-dimensional Chern insulators, as well as helical edges in quantum spin Hall states.}, + file = {/home/hiro/Zotero/storage/8LF6FWA8/Fidkowski et al. - 2011 - Model Characterization of Gapless Edge Modes of To.pdf;/home/hiro/Zotero/storage/SL3DJJQJ/PhysRevLett.107.html} +} + +@book{Fischer2013, + title = {Mathematik für Physiker Band 3: Variationsrechnung - Differentialgeometrie - Mathematische Grundlagen der allgemeinen Relativitätstheorie}, + shorttitle = {Mathematik für Physiker Band 3}, + author = {Fischer, Helmut and Kaul, Helmut}, + date = {2013}, + publisher = {{Springer Fachmedien Wiesbaden}}, + location = {{Wiesbaden}}, + doi = {10.1007/978-3-658-00475-0}, + url = {https://link.springer.com/10.1007/978-3-658-00475-0}, + urldate = {2023-01-24}, + isbn = {978-3-658-00474-3 978-3-658-00475-0}, + langid = {ngerman}, + file = {/home/hiro/Zotero/storage/GP6J5UIY/Fischer and Kaul - 2013 - Mathematik für Physiker Band 3 Variationsrechnung.pdf} +} + +@book{Fliessbach2012, + title = {Elektrodynamik}, + author = {Fließbach, Torsten}, + date = {2012}, + publisher = {{Spektrum Akademischer Verlag}}, + location = {{Heidelberg}}, + doi = {10.1007/978-3-8274-3036-6}, + url = {http://link.springer.com/10.1007/978-3-8274-3036-6}, + urldate = {2023-01-06}, + isbn = {978-3-8274-3035-9 978-3-8274-3036-6}, + langid = {ngerman}, + file = {/home/hiro/Zotero/storage/4JDJHWBD/Fließbach - 2012 - Elektrodynamik.pdf} +} + +@article{Gao2021, + title = {Non-{{Markovian Stochastic Schrıfmmode}}\textbackslash backslash\textbackslash else\textbackslash textbackslash\textbackslash fi"odinger {{Equation}}: {{Matrix Product State Approach}} to the {{Hierarchy}} of {{Pure States}}}, + author = {Gao, Xing and Ren, Jiajun and Eisfeld, Alexander and Shuai, Zhigang}, + date = {2021-09}, + journaltitle = {arXiv}, + url = {https://arxiv.org/abs/2109.06393v3}, + file = {/home/hiro/Zotero/storage/TJ8N4GEQ/Gao et al. - 2021 - Non-Markovian Stochastic Schrıfmmodebackslashels.pdf} +} + +@article{Gaspard1999, + title = {Slippage of {{Initial Conditions}} for the {{Redfield Master Equation}}}, + author = {Gaspard, P. and Nagaoka, M.}, + date = {1999-10}, + journaltitle = {The Journal of Chemical Physics}, + volume = {111}, + number = {13}, + pages = {5668--5675}, + issn = {0021-9606, 1089-7690}, + doi = {10.1063/1.479867}, + abstract = {For a slow open quantum subsystem weakly coupled to a fast thermal bath, we derive the general form of the slippage to be applied to the initial conditions of the Redfield master equation. This slippage is given by a superoperator which describes the non-Markovian dynamics of the subsystem during the short-time relaxation of the thermal bath. We verify in an example that the Redfield equation preserves positivity after the slippage superoperator has been applied to the initial density matrix of the subsystem. For δ-correlated baths, the Redfield master equation reduces to the Lindblad master equation and the slippage of initial conditions vanishes consistently.}, + keywords = {Matrix equations} +} + +@article{Gaul2007, + title = {Quantum Mechanical Heat Transport in Disordered Harmonic Chains}, + author = {Gaul, Christopher and Bıfmmode\textbackslash ddotu\textbackslash elseü\textbackslash fittner, Helmut}, + date = {2007-07}, + journaltitle = {Phys. Rev. E}, + volume = {76}, + number = {1}, + pages = {011111}, + publisher = {{American Physical Society}}, + issn = {2470-0053}, + doi = {10.1103/PhysRevE.76.011111}, + file = {/home/hiro/Zotero/storage/5XJ7Q2Z7/Gaul and Bıfmmodeddotuelseüfittner - 2007 - Quantum mechanical heat transport in disordered ha.pdf} +} + +@article{Geva1992, + title = {A Quantum-Mechanical Heat Engine Operating in Finite Time. {{A}} Model Consisting of Spin-1/2 Systems as the Working Fluid}, + author = {Geva, Eitan and Kosloff, Ronnie}, + date = {1992-02}, + journaltitle = {J. Chem. Phys.}, + volume = {96}, + number = {4}, + pages = {3054--3067}, + publisher = {{American Institute of Physics}}, + issn = {0021-9606}, + doi = {10.1063/1.461951}, + file = {/home/hiro/Zotero/storage/N3FVN8ZZ/geva1992.pdf.pdf;/home/hiro/Zotero/storage/PRZP96JR/Geva and Kosloff - 1992 - A quantum-mechanical heat engine operating in fini.pdf} +} + +@article{Gill2022, + title = {Quantum Computing: {{A}} Taxonomy, Systematic Review and Future Directions}, + author = {Gill, Sukhpal Singh and Kumar, Adarsh and Singh, Harvinder and Singh, Manmeet and Kaur, Kamalpreet and Usman, Muhammad and Buyya, Rajkumar}, + date = {2022-01}, + journaltitle = {Softw.: Pract. Exper.}, + volume = {52}, + number = {1}, + pages = {66--114}, + publisher = {{John Wiley \& Sons, Ltd}}, + issn = {0038-0644}, + doi = {10.1002/spe.3039}, + file = {/home/hiro/Zotero/storage/7TYGBVM8/Gill et al. - 2022 - Quantum computing A taxonomy, systematic review a.pdf} +} + +@article{Gisin1992, + title = {The Quantum-State Diffusion Model Applied to Open Systems}, + author = {Gisin, N. and Percival, I. C.}, + date = {1992-11}, + journaltitle = {J. Phys. A: Math. Gen.}, + volume = {25}, + number = {21}, + pages = {5677--5691}, + publisher = {{IOP Publishing}}, + issn = {0305-4470}, + doi = {10.1088/0305-4470/25/21/023}, + file = {/home/hiro/Zotero/storage/N3MWPTX8/Gisin and Percival - 1992 - The quantum-state diffusion model applied to open .pdf} +} + +@article{Grabert1988, + title = {Quantum {{Brownian}} Motion: {{The}} Functional Integral Approach}, + author = {Grabert, Hermann and Schramm, Peter and Ingold, Gert-Ludwig}, + date = {1988-10}, + journaltitle = {Phys. Rep.}, + volume = {168}, + number = {3}, + pages = {115--207}, + publisher = {{North-Holland}}, + issn = {0370-1573}, + doi = {10.1016/0370-1573(88)90023-3}, + file = {/home/hiro/Zotero/storage/KV4BBX3G/Grabert et al. - 1988 - Quantum Brownian motion The functional integral a.pdf} +} + +@article{Gutierrez-Ruiz2021, + title = {Quantum Geometric Tensor and Quantum Phase Transitions in the {{Lipkin-Meshkov-Glick}} Model}, + author = {Gutiérrez-Ruiz, Daniel and Gonzalez, Diego and Chávez-Carlos, Jorge and Hirsch, Jorge G. and Vergara, J. David}, + date = {2021-05-10}, + journaltitle = {Physical Review B}, + shortjournal = {Phys. Rev. B}, + volume = {103}, + number = {17}, + pages = {174104}, + publisher = {{American Physical Society}}, + doi = {10.1103/PhysRevB.103.174104}, + url = {https://link.aps.org/doi/10.1103/PhysRevB.103.174104}, + urldate = {2023-03-07}, + abstract = {We study the quantum metric tensor and its scalar curvature for a particular version of the Lipkin-Meshkov-Glick model. We build the classical Hamiltonian using Bloch coherent states and find its stationary points. They exhibit the presence of a ground-state quantum phase transition where a bifurcation occurs, showing a change in stability associated with an excited-state quantum phase transition. Symmetrically, for a sign change in one Hamiltonian parameter, the same phenomenon is observed in the highest-energy state. Employing the Holstein-Primakoff approximation, we derive analytic expressions for the quantum metric tensor and compute the scalar and Berry curvatures. We contrast the analytic results with their finite-size counterparts obtained through exact numerical diagonalization and find excellent agreement between them for large sizes of the system in a wide region of the parameter space except in points near the phase transition where the Holstein-Primakoff approximation ceases to be valid.}, + file = {/home/hiro/Zotero/storage/2Q2M3N37/Gutiérrez-Ruiz et al. - 2021 - Quantum geometric tensor and quantum phase transit.pdf;/home/hiro/Zotero/storage/8LCFKSQE/PhysRevB.103.html} +} + +@article{Haake1983, + title = {Adiabatic {{Drag}} and {{Initial Slip}} in {{Random Processes}}}, + author = {Haake, Fritz and Lewenstein, Maciej}, + date = {1983-12}, + journaltitle = {Physical Review A}, + volume = {28}, + number = {6}, + pages = {3606--3612}, + doi = {10.1103/PhysRevA.28.3606}, + abstract = {We describe a method for the solution of initial-value problems for random processes arising through adiabatic approximations from Markov processes of higher dimension. In applications to overdamped Brownian motion and to the single-mode laser we calculate correlation functions and discuss initial slips.} +} + +@article{Harris2020, + title = {Array Programming with {{NumPy}}}, + author = {Harris, Charles R. and Millman, K. Jarrod and van der Walt, Stéfan J. and Gommers, Ralf and Virtanen, Pauli and Cournapeau, David and Wieser, Eric and Taylor, Julian and Berg, Sebastian and Smith, Nathaniel J. and Kern, Robert and Picus, Matti and Hoyer, Stephan and van Kerkwijk, Marten H. and Brett, Matthew and Haldane, Allan and del Río, Jaime Fernández and Wiebe, Mark and Peterson, Pearu and Gérard-Marchant, Pierre and Sheppard, Kevin and Reddy, Tyler and Weckesser, Warren and Abbasi, Hameer and Gohlke, Christoph and Oliphant, Travis E.}, + date = {2020-09}, + journaltitle = {Nature}, + volume = {585}, + number = {7825}, + pages = {357--362}, + publisher = {{Springer Science and Business Media LLC}}, + doi = {10.1038/s41586-020-2649-2}, + url = {https://doi.org/10.1038/s41586-020-2649-2}, + file = {/home/hiro/Zotero/storage/A8E4WMSK/Harris et al. - 2020 - Array programming with NumPy.pdf;/home/hiro/Zotero/storage/AMMGDW7G/10.1038@s41586-020-2649-2.pdf.pdf} +} + +@article{Hartmann2017, + title = {Exact {{Open Quantum System Dynamics Using}} the {{Hierarchy}} of {{Pure States}} ({{HOPS}})}, + author = {Hartmann, Richard and Strunz, Walter T.}, + date = {2017-12}, + journaltitle = {J. Chem. Theory Comput.}, + volume = {13}, + number = {12}, + pages = {5834--5845}, + publisher = {{J Chem Theory Comput}}, + issn = {1549-9626}, + doi = {10.1021/acs.jctc.7b00751}, + file = {/home/hiro/Zotero/storage/9ZTPC4R8/Hartmann and Strunz - 2017 - Exact Open Quantum System Dynamics Using the Hiera.pdf;/home/hiro/Zotero/storage/VVVZXRZE/hartmann2017.pdf.pdf} +} + +@thesis{Hartmann2021, + type = {phdthesis}, + title = {Exact {{Open Quantum System Dynamics}} – {{Investigating Environmentally Induced Entanglement}}}, + author = {Hartmann, Richard}, + date = {2021}, + institution = {{Institut für Theoretische Physik, Technische Universität Dresden}}, + url = {https://nbn-resolving.org/urn:nbn:de:bsz:14-qucosa2-785576}, + file = {/home/hiro/Zotero/storage/39YQMP6R/Hartmann - 2021 - Exact Open Quantum System Dynamics – Investigating.pdf} +} + +@article{Hartmann2021a, + title = {Open {{Quantum System Response}} from the {{Hierarchy}} of {{Pure States}}}, + author = {Hartmann, Richard and Strunz, Walter T.}, + date = {2021-08}, + journaltitle = {J. Phys. Chem. A}, + volume = {125}, + number = {32}, + pages = {7066--7079}, + publisher = {{American Chemical Society}}, + issn = {1089-5639}, + doi = {10.1021/acs.jpca.1c03339}, + file = {/home/hiro/Zotero/storage/88FL5MVV/hartmann2021.pdf.pdf} +} + +@book{Haus1984, + title = {Waves and {{Fields}} in {{Optoelectronics}}}, + author = {Haus, Hermann A.}, + date = {1984}, + eprint = {AQUpAQAAMAAJ}, + eprinttype = {googlebooks}, + publisher = {{Prentice-Hall}}, + abstract = {Maxwell's equations of isotropic media and some important identities. Reflection of plane waves from interfaces. Mirrors and interferometers. Fresnel diffraction in paraxial limit. Hermit-Gaussian beams and their transformations. Optical fibers and guiding layers. Coupling of modes - resonators and couplers. Distributed feedback structures. Acousto-optic modulators. Some nonlinear systems. Wave propagation in anisotropic media. Electro-optic modulators. Nonlinear optics. Optical detection.}, + isbn = {978-0-13-946053-1}, + langid = {english}, + pagetotal = {426}, + keywords = {Technology & Engineering / General}, + file = {/home/hiro/Zotero/storage/M95ZTBRT/Haus - 1984 - Waves and Fields in Optoelectronics.pdf} +} + +@article{Hita-Pifmmodeacuteeelseefirez2021, + title = {Three-{{Josephson}} Junctions Flux Qubit Couplings}, + author = {Hita-Pıfmmode\textbackslash acutee\textbackslash elseé\textbackslash firez, Marıfmmode\textbackslash acuteımath\textbackslash elseí\textbackslash fia and Jaumıfmmode\textbackslash gravea\textbackslash elseà\textbackslash fi, Gabriel and Pino, Manuel and Garcıfmmode\textbackslash acuteımath\textbackslash elseí\textbackslash fia-Ripoll, Juan Josıfmmode\textbackslash acutee\textbackslash elseé\textbackslash fi}, + date = {2021-11}, + journaltitle = {Appl. Phys. Lett.}, + volume = {119}, + number = {22}, + pages = {222601}, + publisher = {{American Institute of Physics}}, + issn = {0003-6951}, + doi = {10.1063/5.0069530}, + file = {/home/hiro/Zotero/storage/HPCMDGLJ/Hita-Pıfmmodeacuteeelseéfirez et al. - 2021 - Three-Josephson junctions flux qubit couplings.pdf} +} + +@article{Hita-Pifmmodeacuteeelseefirez2021a, + title = {Ultrastrong Capacitive Coupling of Flux Qubits}, + author = {Hita-Pıfmmode\textbackslash acutee\textbackslash elseé\textbackslash firez, Marıfmmode\textbackslash acuteımath\textbackslash elseí\textbackslash fia and Jaumıfmmode\textbackslash gravea\textbackslash elseà\textbackslash fi, Gabriel and Pino, Manuel and Garcıfmmode\textbackslash acuteımath\textbackslash elseí\textbackslash fia-Ripoll, Juan Josıfmmode\textbackslash acutee\textbackslash elseé\textbackslash fi}, + date = {2021-08}, + journaltitle = {arXiv}, + url = {https://arxiv.org/abs/2108.02549v1}, + file = {/home/hiro/Zotero/storage/I84SRXRP/Hita-Pıfmmodeacuteeelseéfirez et al. - 2021 - Ultrastrong capacitive coupling of flux qubits.pdf} +} + +@article{Irish2007, + title = {Generalized {{Rotating-Wave Approximation}} for {{Arbitrarily Large Coupling}}}, + author = {Irish, E. K.}, + date = {2007-10}, + journaltitle = {Phys. Rev. Lett.}, + volume = {99}, + number = {17}, + pages = {173601}, + publisher = {{American Physical Society}}, + issn = {1079-7114}, + doi = {10.1103/PhysRevLett.99.173601}, + file = {/home/hiro/Zotero/storage/HHPT7H3V/Irish - 2007 - Generalized Rotating-Wave Approximation for Arbitr.pdf} +} + +@book{Jacobs2010, + title = {Stochastic {{Processes}} for {{Physicists}}: {{Understanding Noisy Systems}}}, + author = {Jacobs, K.}, + date = {2010}, + publisher = {{Cambridge University Press}}, + url = {https://books.google.de/books?id=5PEjmQEACAAJ}, + isbn = {978-0-521-76542-8}, + lccn = {2010278127} +} + +@article{Johansson2017, + title = {Arb: Efficient Arbitrary-Precision Midpoint-Radius Interval Arithmetic}, + author = {Johansson, F.}, + date = {2017}, + journaltitle = {IEEE Transactions on Computers}, + volume = {66}, + number = {8}, + pages = {1281--1292}, + doi = {10.1109/TC.2017.2690633}, + file = {/home/hiro/Zotero/storage/2T439YPV/Johansson - 2017 - Arb efficient arbitrary-precision midpoint-radius.pdf;/home/hiro/Zotero/storage/TI7XWRCG/johansson2017.pdf.pdf} +} + +@article{Karimi2016, + title = {Otto Refrigerator Based on a Superconducting Qubit: {{Classical}} and Quantum Performance}, + author = {Karimi, B. and Pekola, J. P.}, + date = {2016-11}, + journaltitle = {Phys. Rev. B}, + volume = {94}, + number = {18}, + pages = {184503}, + publisher = {{American Physical Society}}, + issn = {2469-9969}, + doi = {10.1103/PhysRevB.94.184503}, + file = {/home/hiro/Zotero/storage/XEPSRBT2/Karimi and Pekola - 2016 - Otto refrigerator based on a superconducting qubit.pdf} +} + +@article{Kato2015, + title = {Quantum Heat Transport of a Two-Qubit System: {{Interplay}} between System-Bath Coherence and Qubit-Qubit Coherence}, + author = {Kato, Akihito and Tanimura, Yoshitaka}, + date = {2015-08}, + journaltitle = {J. Chem. Phys.}, + volume = {143}, + number = {6}, + pages = {064107}, + publisher = {{American Institute of Physics}}, + issn = {0021-9606}, + doi = {10.1063/1.4928192}, + file = {/home/hiro/Zotero/storage/EIGM734G/Kato and Tanimura - 2015 - Quantum heat transport of a two-qubit system Inte.pdf} +} + +@article{Kato2016, + title = {Quantum Heat Current under Non-Perturbative and Non-{{Markovian}} Conditions: {{Applications}} to Heat Machines}, + author = {Kato, Akihito and Tanimura, Yoshitaka}, + date = {2016-12}, + journaltitle = {J. Chem. Phys.}, + volume = {145}, + number = {22}, + pages = {224105}, + publisher = {{American Institute of Physics}}, + issn = {0021-9606}, + doi = {10.1063/1.4971370}, + file = {/home/hiro/Zotero/storage/FR3BD4N4/Kato and Tanimura - 2016 - Quantum heat current under non-perturbative and no.pdf} +} + +@article{Klatzow2019, + title = {Experimental {{Demonstration}} of {{Quantum Effects}} in the {{Operation}} of {{Microscopic Heat Engines}}}, + author = {Klatzow, James and Becker, Jonas N. and Ledingham, Patrick M. and Weinzetl, Christian and Kaczmarek, Krzysztof T. and Saunders, Dylan J. and Nunn, Joshua and Walmsley, Ian A. and Uzdin, Raam and Poem, Eilon}, + date = {2019-03}, + journaltitle = {Phys. Rev. Lett.}, + volume = {122}, + number = {11}, + pages = {110601}, + publisher = {{American Physical Society}}, + issn = {1079-7114}, + doi = {10.1103/PhysRevLett.122.110601}, + file = {/home/hiro/Zotero/storage/M4KINH2A/Klatzow et al. - 2019 - Experimental Demonstration of Quantum Effects in t.pdf} +} + +@article{Klauder1968, + title = {Fundamentals of {{Quantum Optics Benjamin}}}, + author = {Klauder, JR and Sudarshan, ECG}, + date = {1968}, + journaltitle = {Inc., New York} +} + +@book{Klauder2006, + title = {Fundamentals of Quantum Optics}, + author = {Klauder, John R. and Sudarshan, E. C. G.}, + date = {2006}, + publisher = {{Dover Publications}}, + url = {http://gen.lib.rus.ec/book/index.php?md5=75f98744301ceb28ef7a165c689e613d}, + urldate = {2023-01-20}, + isbn = {978-0-486-45008-7}, + file = {/home/hiro/Zotero/storage/CC6QNBVV/John R. Klauder, E. C. G. Sudarshan - Fundamentals of quantum optics-Dover Publications (2006).djvu} +} + +@book{Knuth1997, + title = {The Art of Computer Programming, Volume 2 (3rd Ed.): Seminumerical Algorithms}, + author = {Knuth, Donald E.}, + date = {1997}, + publisher = {{Addison-Wesley Longman Publishing Co., Inc.}}, + location = {{Boston, MA, USA}}, + url = {http://portal.acm.org/citation.cfm?id=270146}, + isbn = {0-201-89684-2}, + keywords = {algorithms} +} + +@article{Kofman2004, + title = {Unified {{Theory}} of {{Dynamically Suppressed Qubit Decoherence}} in {{Thermal Baths}}}, + author = {Kofman, A. G. and Kurizki, G.}, + date = {2004-09}, + journaltitle = {Phys. Rev. Lett.}, + volume = {93}, + number = {13}, + pages = {130406}, + publisher = {{American Physical Society}}, + issn = {1079-7114}, + doi = {10.1103/PhysRevLett.93.130406}, + file = {/home/hiro/Zotero/storage/NLCFAYBC/Kofman and Kurizki - 2004 - Unified Theory of Dynamically Suppressed Qubit Dec.pdf} +} + +@article{Kolifmmodeacuteaelseafiifmmodecheckrelserfi2012, + title = {Quantum {{Bath Refrigeration}} towards {{Absolute Zero}}: {{Challenging}} the {{Unattainability Principle}}}, + author = {Kolıfmmode\textbackslash acutea\textbackslash elseá\textbackslash fiıfmmode\textbackslash checkr\textbackslash elseř\textbackslash fi, M. and Gelbwaser-Klimovsky, D. and Alicki, R. and Kurizki, G.}, + date = {2012-08}, + journaltitle = {Phys. Rev. Lett.}, + volume = {109}, + number = {9}, + pages = {090601}, + publisher = {{American Physical Society}}, + issn = {1079-7114}, + doi = {10.1103/PhysRevLett.109.090601}, + file = {/home/hiro/Zotero/storage/C7X7EJSH/Kolıfmmodeacuteaelseáfiıfmmodecheckrelseřfi et al. - 2012 - Quantum Bath Refrigeration towards Absolute Zero .pdf} +} + +@book{Kurizki2021, + title = {Thermodynamics and {{Control}} of {{Open Quantum Systems}}}, + author = {Kurizki, Gershon and Kofman, Abraham G.}, + date = {2021-12}, + journaltitle = {Cambridge Core}, + publisher = {{Cambridge University Press}}, + location = {{Cambridge, England, UK}}, + doi = {10.1017/9781316798454}, + isbn = {978-1-316-79845-4}, + file = {/home/hiro/Zotero/storage/7PG7ZIYE/Kurizki and Kofman - 2021 - Thermodynamics and Control of Open Quantum Systems.pdf} +} + +@article{Lenard1978, + title = {Thermodynamical Proof of the {{Gibbs}} Formula for Elementary Quantum Systems}, + author = {Lenard, A.}, + date = {1978-12}, + journaltitle = {J. Stat. Phys.}, + volume = {19}, + number = {6}, + pages = {575--586}, + publisher = {{Kluwer Academic Publishers-Plenum Publishers}}, + issn = {1572-9613}, + doi = {10.1007/BF01011769}, + file = {/home/hiro/Zotero/storage/IV52P9V7/Lenard - 1978 - Thermodynamical proof of the Gibbs formula for ele.pdf} +} + +@article{Link2022, + title = {Non-{{Markovian Quantum Dynamics}} in a {{Squeezed Reservoir}}}, + author = {Link, Valentin and Strunz, Walter T. and Luoma, Kimmo}, + date = {2022-02}, + journaltitle = {Entropy}, + volume = {24}, + number = {3}, + pages = {352}, + publisher = {{Multidisciplinary Digital Publishing Institute}}, + issn = {1099-4300}, + doi = {10.3390/e24030352}, + file = {/home/hiro/Zotero/storage/UR8REKT4/Link et al. - 2022 - Non-Markovian Quantum Dynamics in a Squeezed Reser.pdf} +} + +@thesis{Link2022a, + type = {phdthesis}, + title = {Stochastic Dynamics of Open Quantum Systems with Applications to Nonequilibrium Phase Transitions}, + author = {Link, Valentin}, + date = {2022}, + institution = {{Institut für Theoretische Physik, Technische Universität Dresden}}, + location = {{Dresden}}, + url = {http://slubdd.de/katalog?TN_libero_mab216914069}, + keywords = {Hochschulschrift} +} + +@article{Lobejko2021, + title = {The Tight {{Second Law}} Inequality for Coherent Quantum Systems and Finite-Size Heat Baths}, + author = {\textbackslash Lobejko, Marcin}, + date = {2021-02}, + journaltitle = {Nat. Commun.}, + volume = {12}, + number = {918}, + pages = {1--6}, + publisher = {{Nature Publishing Group}}, + issn = {2041-1723}, + doi = {10.1038/s41467-021-21140-4}, + file = {/home/hiro/Zotero/storage/2CLDGP85/Lobejko - 2021 - The tight Second Law inequality for coherent quant.pdf} +} + +@article{MacQuarrie2020, + title = {Progress toward a Capacitively Mediated {{CNOT}} between Two Charge Qubits in {{Si}}/{{SiGe}} - Npj {{Quantum Information}}}, + author = {MacQuarrie, E. R. and Neyens, Samuel F. and Dodson, J. P. and Corrigan, J. and Thorgrimsson, Brandur and Holman, Nathan and Palma, M. and Edge, L. F. and Friesen, Mark and Coppersmith, S. N. and Eriksson, M. A.}, + date = {2020-09}, + journaltitle = {npj Quantum Inf.}, + volume = {6}, + number = {81}, + pages = {1--7}, + publisher = {{Nature Publishing Group}}, + issn = {2056-6387}, + doi = {10.1038/s41534-020-00314-w}, + file = {/home/hiro/Zotero/storage/8WPBZG5G/MacQuarrie et al. - 2020 - Progress toward a capacitively mediated CNOT betwe.pdf} +} + +@article{Magazzifmmodegraveuelseufi2018, + title = {Probing the Strongly Driven Spin-Boson Model in a Superconducting Quantum Circuit}, + author = {Magazzıfmmode\textbackslash graveu\textbackslash elseù\textbackslash fi, L. and Forn-Dıfmmode\textbackslash acuteımath\textbackslash elseí\textbackslash fiaz, P. and Belyansky, R. and Orgiazzi, J.-L. and Yurtalan, M. A. and Otto, M. R. and Lupascu, A. and Wilson, C. M. and Grifoni, M.}, + date = {2018-04}, + journaltitle = {Nat. Commun.}, + volume = {9}, + number = {1403}, + pages = {1--8}, + publisher = {{Nature Publishing Group}}, + issn = {2041-1723}, + doi = {10.1038/s41467-018-03626-w}, + file = {/home/hiro/Zotero/storage/L2Z8RXE8/Magazzıfmmodegraveuelseùfi et al. - 2018 - Probing the strongly driven spin-boson model in a .pdf} +} + +@article{Makri1999, + title = {The {{Linear Response Approximation}} and {{Its Lowest Order Corrections}}:\textbackslash hspace0.167em {{An Influence Functional Approach}}}, + author = {Makri, Nancy}, + date = {1999-04}, + journaltitle = {J. Phys. Chem. B}, + volume = {103}, + number = {15}, + pages = {2823--2829}, + publisher = {{American Chemical Society}}, + issn = {1520-6106}, + doi = {10.1021/jp9847540} +} + +@article{Martin2017, + title = {Topological {{Frequency Conversion}} in {{Strongly Driven Quantum Systems}}}, + author = {Martin, Ivar and Refael, Gil and Halperin, Bertrand}, + date = {2017-10-16}, + journaltitle = {Physical Review X}, + shortjournal = {Phys. Rev. X}, + volume = {7}, + number = {4}, + pages = {041008}, + publisher = {{American Physical Society}}, + doi = {10.1103/PhysRevX.7.041008}, + url = {https://link.aps.org/doi/10.1103/PhysRevX.7.041008}, + urldate = {2023-01-11}, + abstract = {When a physical system is subjected to a strong external multifrequency drive, its dynamics can be conveniently represented in the multidimensional Floquet lattice. The number of Floquet lattice dimensions equals the number of irrationally-related drive frequencies, and the evolution occurs in response to a built-in effective “electric” field, whose components are proportional to the corresponding drive frequencies. The mapping allows us to engineer and study temporal analogs of many real-space phenomena. Here, we focus on the specific example of a two-level system under a two-frequency drive that induces topologically nontrivial band structure in the 2D Floquet space. The observable consequence of such a construction is the quantized pumping of energy between the sources with frequencies ω1 and ω2. When the system is initialized into a Floquet band with the Chern number C, the pumping occurs at a rate P12=−P21=(C/2π)ℏω1ω2, an exact counterpart of the transverse current in a conventional topological insulator.}, + file = {/home/hiro/Zotero/storage/FWVW3CZZ/Martin et al. - 2017 - Topological Frequency Conversion in Strongly Drive.pdf;/home/hiro/Zotero/storage/H9837E8P/martin2017.pdf.pdf;/home/hiro/Zotero/storage/KT7XNXIM/martin2017.pdf.pdf;/home/hiro/Zotero/storage/AB9DBJZJ/PhysRevX.7.html} +} + +@article{Mezzacapo2014, + title = {Many-{{Body Interactions}} with {{Tunable-Coupling Transmon Qubits}}}, + author = {Mezzacapo, A. and Lamata, L. and Filipp, S. and Solano, E.}, + date = {2014-07}, + journaltitle = {Phys. Rev. Lett.}, + volume = {113}, + number = {5}, + pages = {050501}, + publisher = {{American Physical Society}}, + issn = {1079-7114}, + doi = {10.1103/PhysRevLett.113.050501}, + file = {/home/hiro/Zotero/storage/U37VESL3/Mezzacapo et al. - 2014 - Many-Body Interactions with Tunable-Coupling Trans.pdf} +} + +@article{Micadei2019, + title = {Reversing the Direction of Heat Flow Using Quantum Correlations - {{Nature Communications}}}, + author = {Micadei, Kaonan and Peterson, John P. S. and Souza, Alexandre M. and Sarthour, Roberto S. and Oliveira, Ivan S. and Landi, Gabriel T. and Batalhıfmmode\textbackslash tildea\textbackslash elseã\textbackslash fio, Tiago B. and Serra, Roberto M. and Lutz, Eric}, + date = {2019-06}, + journaltitle = {Nat. Commun.}, + volume = {10}, + number = {2456}, + pages = {1--6}, + publisher = {{Nature Publishing Group}}, + issn = {2041-1723}, + doi = {10.1038/s41467-019-10333-7}, + file = {/home/hiro/Zotero/storage/52WNYMAH/Micadei et al. - 2019 - Reversing the direction of heat flow using quantum.pdf} +} + +@article{Motz2017, + title = {Currents and Fluctuations of Quantum Heat Transport in Harmonic Chains}, + author = {Motz, T. and Ankerhold, J. and Stockburger, J. T.}, + date = {2017-05}, + journaltitle = {New J. Phys.}, + volume = {19}, + number = {5}, + pages = {053013}, + publisher = {{IOP Publishing}}, + issn = {1367-2630}, + doi = {10.1088/1367-2630/aa68bd}, + file = {/home/hiro/Zotero/storage/TVGJ326H/Motz et al. - 2017 - Currents and fluctuations of quantum heat transpor.pdf} +} + +@article{Motz2018, + title = {Rectification of Heat Currents across Nonlinear Quantum Chains: A Versatile Approach beyond Weak Thermal Contact}, + author = {Motz, T. and Wiedmann, M. and Stockburger, J. T. and Ankerhold, J.}, + date = {2018-11}, + journaltitle = {New J. Phys.}, + volume = {20}, + number = {11}, + pages = {113020}, + publisher = {{IOP Publishing}}, + issn = {1367-2630}, + doi = {10.1088/1367-2630/aaea90}, + file = {/home/hiro/Zotero/storage/RK6U3L4N/Motz et al. - 2018 - Rectification of heat currents across nonlinear qu.pdf} +} + +@article{Mu2017, + title = {Qubit Absorption Refrigerator at Strong Coupling}, + author = {Mu, Anqi and Agarwalla, Bijay Kumar and Schaller, Gernot and Segal, Dvira}, + date = {2017-12}, + journaltitle = {New J. Phys.}, + volume = {19}, + number = {12}, + pages = {123034}, + publisher = {{IOP Publishing}}, + issn = {1367-2630}, + doi = {10.1088/1367-2630/aa9b75}, + file = {/home/hiro/Zotero/storage/3NKBH22F/Mu et al. - 2017 - Qubit absorption refrigerator at strong coupling.pdf;/home/hiro/Zotero/storage/XNF5Q5LT/mu2017.pdf.pdf} +} + +@article{Mukherjee2020, + title = {Anti-{{Zeno}} Quantum Advantage in Fast-Driven Heat Machines}, + author = {Mukherjee, Victor and Kofman, Abraham G. and Kurizki, Gershon}, + date = {2020-01}, + journaltitle = {Commun. Phys.}, + volume = {3}, + number = {8}, + pages = {1--12}, + publisher = {{Nature Publishing Group}}, + issn = {2399-3650}, + doi = {10.1038/s42005-019-0272-z}, + file = {/home/hiro/Zotero/storage/G7FBBINK/mukherjee2020.pdf.pdf;/home/hiro/Zotero/storage/WSRZGW4A/Mukherjee et al. - 2020 - Anti-Zeno quantum advantage in fast-driven heat ma.pdf} +} + +@book{Nolting2013, + title = {Grundkurs Theoretische Physik 5/1: Quantenmechanik - Grundlagen}, + shorttitle = {Grundkurs Theoretische Physik 5/1}, + author = {Nolting, Wolfgang}, + date = {2013}, + series = {Springer-Lehrbuch}, + publisher = {{Springer Berlin Heidelberg}}, + location = {{Berlin, Heidelberg}}, + doi = {10.1007/978-3-642-25403-1}, + url = {https://link.springer.com/10.1007/978-3-642-25403-1}, + urldate = {2023-02-15}, + isbn = {978-3-642-25402-4 978-3-642-25403-1}, + langid = {ngerman}, + file = {/home/hiro/Zotero/storage/IMPVT6SW/Nolting - 2013 - Grundkurs Theoretische Physik 51 Quantenmechanik.pdf} +} + +@book{Nolting2015, + title = {Grundkurs Theoretische Physik 5/2: Quantenmechanik - Methoden und Anwendungen}, + shorttitle = {Grundkurs Theoretische Physik 5/2}, + author = {Nolting, Wolfgang}, + date = {2015}, + series = {Springer-Lehrbuch}, + publisher = {{Springer Berlin Heidelberg}}, + location = {{Berlin, Heidelberg}}, + doi = {10.1007/978-3-662-44230-2}, + url = {https://link.springer.com/10.1007/978-3-662-44230-2}, + urldate = {2023-02-15}, + isbn = {978-3-662-44229-6 978-3-662-44230-2}, + langid = {ngerman}, + file = {/home/hiro/Zotero/storage/H2DWXRPH/Nolting - 2015 - Grundkurs Theoretische Physik 52 Quantenmechanik.pdf} +} + +@book{Olver2010, + title = {The {{NIST}} Handbook of Mathematical Functions}, + author = {Olver, Frank and Lozier, Daniel and Boisvert, Ronald and Clark, Charles}, + year = {00:05:00 2010}, + publisher = {{Cambridge University Press, New York, NY}}, + langid = {english}, + file = {/home/hiro/Zotero/storage/7CER4GYZ/Olver et al. - 2010 - The NIST handbook of mathematical functions.pdf} +} + +@article{Ozawa2018, + title = {Extracting the Quantum Metric Tensor through Periodic Driving}, + author = {Ozawa, Tomoki and Goldman, Nathan}, + date = {2018-05-31}, + journaltitle = {Physical Review B}, + shortjournal = {Phys. Rev. B}, + volume = {97}, + number = {20}, + pages = {201117}, + publisher = {{American Physical Society}}, + doi = {10.1103/PhysRevB.97.201117}, + url = {https://link.aps.org/doi/10.1103/PhysRevB.97.201117}, + urldate = {2023-03-07}, + abstract = {We propose a generic protocol to experimentally measure the quantum metric tensor, a fundamental geometric property of quantum states. Our method is based on the observation that the excitation rate of a quantum state directly relates to components of the quantum metric upon applying a proper time-periodic modulation. We discuss the applicability of this scheme to generic two-level systems, where the Hamiltonian's parameters can be externally tuned, and also to the context of Bloch bands associated with lattice systems. As an illustration, we extract the quantum metric of the multiband Hofstadter model. Moreover, we demonstrate how this method can be used to directly probe the spread functional, a quantity which sets the lower bound on the spread of Wannier functions and signals phase transitions. Our proposal offers a universal probe for quantum geometry, which could be readily applied in a wide range of physical settings, ranging from superconducting quantum circuits to ultracold atomic gases.}, + file = {/home/hiro/Zotero/storage/WJPTJF5R/Ozawa and Goldman - 2018 - Extracting the quantum metric tensor through perio.pdf;/home/hiro/Zotero/storage/UWA6FU3A/PhysRevB.97.html} +} + +@article{Ozawa2019, + title = {Topological Quantum Matter in Synthetic Dimensions}, + author = {Ozawa, Tomoki and Price, Hannah M.}, + date = {2019-05}, + journaltitle = {Nature Reviews Physics}, + shortjournal = {Nat Rev Phys}, + volume = {1}, + number = {5}, + pages = {349--357}, + publisher = {{Nature Publishing Group}}, + issn = {2522-5820}, + doi = {10.1038/s42254-019-0045-3}, + url = {https://www.nature.com/articles/s42254-019-0045-3}, + urldate = {2023-03-09}, + abstract = {In the field of quantum simulation of condensed matter phenomena by artificially engineering the Hamiltonian of an atomic, molecular or optical system, the concept of synthetic dimensions has recently emerged as a powerful way to emulate phenomena such as topological phases of matter, which are now of great interest across many areas of physics. The main idea of a synthetic dimension is to couple together suitable degrees of freedom, such as a set of internal atomic states, in order to mimic the motion of a particle along an extra spatial dimension. This approach provides a way to engineer lattice Hamiltonians and enables the realization of higher-dimensional topological models in platforms with lower dimensionality. We give an overview of the recent progress in studying topological matter in synthetic dimensions. After reviewing proposals and realizations in various set-ups, we discuss future prospects in many-body physics, applications and topological effects in three or more spatial dimensions.}, + issue = {5}, + langid = {english}, + keywords = {Quantum optics,Topological matter,Ultracold gases}, + file = {/home/hiro/Zotero/storage/J48A2DSY/10.1038@s42254-019-0045-3.pdf.pdf;/home/hiro/Zotero/storage/X3L2HQGK/Ozawa and Price - 2019 - Topological quantum matter in synthetic dimensions.pdf} +} + +@incollection{Pan1999, + title = {The Complexity of the Matrix Eigenproblem}, + booktitle = {{{STOC}} '99: {{Proceedings}} of the Thirty-First Annual {{ACM}} Symposium on {{Theory}} of {{Computing}}}, + author = {Pan, Victor Y. and Chen, Zhao Q.}, + date = {1999-05}, + pages = {507--516}, + publisher = {{Association for Computing Machinery}}, + location = {{New York, NY, USA}}, + doi = {10.1145/301250.301389}, + isbn = {978-158113067} +} + +@book{Press2007, + title = {Numerical {{Recipes}}}, + author = {Press, William H. and Teukolsky, Saul A. and Vetterling, William T. and Flannery, Brian P.}, + date = {2007-09}, + journaltitle = {Cambridge University Press}, + publisher = {{Cambridge University Press}}, + location = {{Cambridge, England, UK}}, + url = {https://www.cambridge.org/us/academic/subjects/mathematics/numerical-recipes/numerical-recipes-art-scientific-computing-3rd-edition?format=HB}, + isbn = {978-0-521-88068-8} +} + +@article{Pusz1978, + title = {Passive States and {{KMS}} States for General Quantum Systems}, + author = {Pusz, W. and Woronowicz, S. L.}, + date = {1978-10}, + journaltitle = {Commun. Math. Phys.}, + volume = {58}, + number = {3}, + pages = {273--290}, + publisher = {{Springer-Verlag}}, + issn = {1432-0916}, + doi = {10.1007/BF01614224}, + file = {/home/hiro/Zotero/storage/IM7J4VXT/Pusz and Woronowicz - 1978 - Passive states and KMS states for general quantum .pdf} +} + +@article{Raja2021, + title = {Finite-Time Quantum {{Stirling}} Heat Engine}, + author = {Raja, S. Hamedani and Maniscalco, S. and Paraoanu, G. S. and Pekola, J. P. and Gullo, N. Lo}, + date = {2021-03}, + journaltitle = {New J. Phys.}, + volume = {23}, + number = {3}, + pages = {033034}, + publisher = {{IOP Publishing}}, + issn = {1367-2630}, + doi = {10.1088/1367-2630/abe9d7}, + file = {/home/hiro/Zotero/storage/AMXVY269/Raja et al. - 2021 - Finite-time quantum Stirling heat engine.pdf} +} + +@article{Reyes-Lega2016, + title = {Some {{Aspects}} of {{Operator Algebras}} in {{Quantum Physics}}}, + author = {Reyes-Lega, A. F.}, + date = {2016-12}, + journaltitle = {arXiv}, + doi = {10.1142/9789814730884_0001}, + file = {/home/hiro/Zotero/storage/KVFWJ5SI/Reyes-Lega - 2016 - Some Aspects of Operator Algebras in Quantum Physi.pdf} +} + +@article{Ricottone2020, + title = {Topological Transition of a Non-{{Markovian}} Dissipative Quantum Walk}, + author = {Ricottone, A. and Rudner, M. S. and Coish, W. A.}, + date = {2020-07-14}, + journaltitle = {Physical Review A}, + shortjournal = {Phys. Rev. A}, + volume = {102}, + number = {1}, + pages = {012215}, + issn = {2469-9926, 2469-9934}, + doi = {10.1103/PhysRevA.102.012215}, + url = {https://link.aps.org/doi/10.1103/PhysRevA.102.012215}, + urldate = {2022-11-07}, + langid = {english}, + file = {/home/hiro/Zotero/storage/8D4JMJWF/10.1103@PhysRevA.102.012215.pdf.pdf;/home/hiro/Zotero/storage/XB3LB62C/Ricottone et al. - 2020 - Topological transition of a non-Markovian dissipat.pdf} +} + +@article{Riechers2021, + title = {Initial-State Dependence of Thermodynamic Dissipation for Any Quantum Process}, + author = {Riechers, Paul M. and Gu, Mile}, + date = {2021-04}, + journaltitle = {Phys. Rev. E}, + volume = {103}, + number = {4}, + pages = {042145}, + publisher = {{American Physical Society}}, + issn = {2470-0053}, + doi = {10.1103/PhysRevE.103.042145}, + file = {/home/hiro/Zotero/storage/B4BCYS5U/Riechers and Gu - 2021 - Initial-state dependence of thermodynamic dissipat.pdf} +} + +@book{Rivas2012, + title = {Open {{Quantum Systems}}}, + author = {Rivas, ´Angel and Huelga, Susana F.}, + date = {2012}, + series = {{{SpringerBriefs}} in {{Physics}}}, + publisher = {{Springer}}, + location = {{Berlin, Heidelberg}}, + doi = {10.1007/978-3-642-23354-8}, + url = {http://link.springer.com/10.1007/978-3-642-23354-8}, + urldate = {2023-01-02}, + isbn = {978-3-642-23353-1 978-3-642-23354-8}, + keywords = {Decoherence,Irreversibility,Quantum Dissipation,Quantum Information and Computation,Quantum Noise,Quantum Optics}, + file = {/home/hiro/Zotero/storage/5NIEJMAG/Rivas and Huelga - 2012 - Open Quantum Systems.pdf} +} + +@article{Rivas2019, + title = {Strong {{Coupling Thermodynamics}} of {{Open Quantum Systems}}}, + author = {Rivas, ıfmmode\textbackslash acuteA\textbackslash elseÁ\textbackslash fingel}, + date = {2019-10}, + journaltitle = {arXiv}, + doi = {10.1103/PhysRevLett.124.160601}, + file = {/home/hiro/Zotero/storage/S3HV5SWN/Rivas - 2019 - Strong Coupling Thermodynamics of Open Quantum Sys.pdf} +} + +@book{Roberts2022, + title = {The {{Principles}} of {{Deep Learning Theory}}: {{An Effective Theory Approach}} to {{Understanding Neural Networks}}}, + shorttitle = {The {{Principles}} of {{Deep Learning Theory}}}, + author = {Roberts, Daniel A. and Yaida, Sho and Hanin, Boris}, + date = {2022-05-26}, + edition = {1}, + publisher = {{Cambridge University Press}}, + doi = {10.1017/9781009023405}, + url = {https://www.cambridge.org/core/product/identifier/9781009023405/type/book}, + urldate = {2023-02-27}, + abstract = {This textbook establishes a theoretical framework for understanding deep learning models of practical relevance. With an approach that borrows from theoretical physics, Roberts and Yaida provide clear and pedagogical explanations of how realistic deep neural networks actually work. To make results from the theoretical forefront accessible, the authors eschew the subject's traditional emphasis on intimidating formality without sacrificing accuracy. Straightforward and approachable, this volume balances detailed first-principle derivations of novel results with insight and intuition for theorists and practitioners alike. This self-contained textbook is ideal for students and researchers interested in artificial intelligence with minimal prerequisites of linear algebra, calculus, and informal probability theory, and it can easily fill a semester-long course on deep learning theory. For the first time, the exciting practical advances in modern artificial intelligence capabilities can be matched with a set of effective principles, providing a timeless blueprint for theoretical research in deep learning.}, + isbn = {978-1-00-902340-5 978-1-316-51933-2}, + langid = {english}, + file = {/home/hiro/Zotero/storage/PPIKNWJL/Roberts et al. - 2022 - The Principles of Deep Learning Theory An Effecti.pdf} +} + +@article{Roushan2014, + title = {Observation of Topological Transitions in Interacting Quantum Circuits}, + author = {Roushan, P. and Neill, C. and Chen, Yu and Kolodrubetz, M. and Quintana, C. and Leung, N. and Fang, M. and Barends, R. and Campbell, B. and Chen, Z. and Chiaro, B. and Dunsworth, A. and Jeffrey, E. and Kelly, J. and Megrant, A. and Mutus, J. and O’Malley, P. J. J. and Sank, D. and Vainsencher, A. and Wenner, J. and White, T. and Polkovnikov, A. and Cleland, A. N. and Martinis, J. M.}, + date = {2014-11}, + journaltitle = {Nature}, + volume = {515}, + number = {7526}, + pages = {241--244}, + publisher = {{Nature Publishing Group}}, + issn = {1476-4687}, + doi = {10.1038/nature13891}, + url = {https://www.nature.com/articles/nature13891}, + urldate = {2023-03-10}, + abstract = {Superconducting quantum circuits are used to directly observe and characterize topological phase transitions; this approach promises to be a powerful and general platform for characterizing topological phenomena in quantum systems.}, + issue = {7526}, + langid = {english}, + keywords = {Quantum mechanics,Qubits,Topological matter}, + file = {/home/hiro/Zotero/storage/B5PT3MTB/Roushan et al. - 2014 - Observation of topological transitions in interact.pdf} +} + +@book{Sachdev2023, + title = {Quantum Phases of Matter}, + author = {Sachdev, Subir}, + date = {2023}, + publisher = {{Cambridge University Press}}, + location = {{Cambridge, United Kingdom ; New York, NY}}, + abstract = {"This modern text describes the remarkable developments in quantum condensed matter physics following the experimental discoveries of quantum Hall effects and high temperature superconductivity in the 1980s. After a review of the phases of matter amenable to an independent particle description, entangled phases of matter are described in an accessible and unified manner. The concepts of fractionalization and emergent gauge fields are introduced using the simplest resonating valence bond insulator with an energy gap, the Z2 spin liquid. Concepts in band topology and the parton method are then combined to obtain a large variety of experimentally relevant gapped states. Correlated metallic states are described, beginning with a discussion of the Kondo effect on magnetic impurities in metals. Metals without quasiparticle excitations are introduced using the Sachdev-Ye-Kitaev model, followed by a discussion of critical Fermi surfaces and strange metals. Numerous end-of-chapter problems expand readers' comprehension and reinforce key concepts"--}, + isbn = {978-1-00-921269-4}, + keywords = {Condensed matter,Textbooks} +} + +@misc{Santoro2022, + title = {Introduction to {{Floquet}}}, + author = {Santoro, Giuseppe E.}, + date = {2022}, + file = {/home/hiro/Zotero/storage/LPGDGCF6/Santoro.pdf} +} + +@article{Santos2021, + title = {Maximally Efficient Quantum Thermal Machines Fueled by Nonequilibrium Steady States}, + author = {Santos, Tiago F. F. and Tacchino, Francesco and Gerace, Dario and Campisi, Michele and Santos, Marcelo F.}, + date = {2021-06}, + journaltitle = {Phys. Rev. A}, + volume = {103}, + number = {6}, + pages = {062225}, + publisher = {{American Physical Society}}, + issn = {2469-9934}, + doi = {10.1103/PhysRevA.103.062225}, + file = {/home/hiro/Zotero/storage/2WRMP3BL/Santos et al. - 2021 - Maximally efficient quantum thermal machines fuele.pdf} +} + +@book{Schlosshauer-Selbach2007, + title = {Decoherence and the Quantum-to-Classical Transition}, + author = {Schlosshauer-Selbach, Maximilian}, + date = {2007}, + series = {Frontiers Collection}, + publisher = {{Springer}}, + location = {{Berlin London}}, + isbn = {978-3-540-35775-9}, + langid = {english}, + file = {/home/hiro/Zotero/storage/H2FSA9VZ/Schlosshauer-Selbach - 2007 - Decoherence and the quantum-to-classical transitio.pdf} +} + +@book{Schlosshauer2007, + title = {Decoherence and the {{Quantum-To-Classical Transition}}}, + author = {Schlosshauer, Maximilian}, + date = {2007}, + publisher = {{Springer}}, + location = {{Berlin, Germany}}, + issn = {1612-3018}, + doi = {10.1007/978-3-540-35775-9}, + file = {/home/hiro/Zotero/storage/WN7KMXKI/Schlosshauer - 2007 - Decoherence and the Quantum-To-Classical Transitio.pdf} +} + +@book{Schlosshauer2007a, + title = {Decoherence and the {{Quantum-To-Classical Transition}}}, + author = {Schlosshauer, Maximilian A.}, + date = {2007-07-30}, + edition = {1st ed. 2007. Corr. 2nd printing 2008 edition}, + publisher = {{Springer}}, + location = {{Berlin ; London}}, + abstract = {This detailed, accessible introduction to the field of quantum decoherence reviews the basics and then explains the essential consequences of the phenomenon for our understanding of the world. The discussion includes, among other things: How the classical world of our experience can emerge from quantum mechanics; the implications of decoherence for various interpretations of quantum mechanics; recent experiments confirming the puzzling consequences of the quantum superposition principle and making decoherence processes directly observable.}, + isbn = {978-3-540-35773-5}, + langid = {english}, + pagetotal = {433}, + file = {/home/hiro/Zotero/storage/8XF46A3F/Schlosshauer - 2007 - Decoherence and the Quantum-To-Classical Transitio.pdf} +} + +@book{Schlosshauer2011, + title = {Elegance and {{Enigma}}: {{The Quantum Interviews}}}, + shorttitle = {Elegance and {{Enigma}}}, + author = {Schlosshauer, Maximilian}, + date = {2011-08-02}, + eprint = {YV1CIauzQ6YC}, + eprinttype = {googlebooks}, + publisher = {{Springer Science \& Business Media}}, + abstract = {Quantum mechanics is one of mankind's most remarkable intellectual achievements. Stunningly successful and elegant, it challenges our deepest intuitions about the world. In this book, seventeen physicists and philosophers, all deeply concerned with understanding quantum mechanics, reply to Schlosshauer's penetrating questions about the central issues. They grant us an intimate look at their radically different ways of making sense of the theory's strangeness. What is quantum mechanics about? What is it telling us about nature? Can quantum information or new experiments help lift the fog? And where are we headed next? Everyone interested in the contemporary but often longstanding conundrums of quantum theory, whether lay reader or expert, will find much food for thought in these pages. A wealth of personal reflections and anecdotes guarantee an engaging read. Participants: Guido Bacciagaluppi, Caslav Brukner, Jeffrey Bub, Arthur Fine, Christopher Fuchs, GianCarlo Ghirardi, Shelly Goldstein, Daniel Greenberger, Lucien Hardy, Anthony Leggett, Tim Maudlin, David Mermin, Lee Smolin, Antony Valentini, David Wallace, Anton Zeilinger, and Wojciech Zurek.}, + isbn = {978-3-642-20880-5}, + langid = {english}, + pagetotal = {315}, + keywords = {Science / General,Science / History,Science / Life Sciences / General,Science / Philosophy & Social Aspects,Science / Physics / General,Science / Physics / Optics & Light,Science / Physics / Quantum Theory}, + file = {/home/hiro/Zotero/storage/EC6BTMBV/Schlosshauer - 2011 - Elegance and Enigma The Quantum Interviews.pdf} +} + +@article{Scopa2018, + title = {Lindblad-{{Floquet}} Description of Finite-Time Quantum Heat Engines}, + author = {Scopa, Stefano and Landi, Gabriel T. and Karevski, Dragi}, + date = {2018-06}, + journaltitle = {Phys. Rev. A}, + volume = {97}, + number = {6}, + pages = {062121}, + publisher = {{American Physical Society}}, + issn = {2469-9934}, + doi = {10.1103/PhysRevA.97.062121}, + file = {/home/hiro/Zotero/storage/M4VQMHHB/Scopa et al. - 2018 - Lindblad-Floquet description of finite-time quantu.pdf} +} + +@article{Seifert2016, + title = {First and {{Second Law}} of {{Thermodynamics}} at {{Strong Coupling}}}, + author = {Seifert, Udo}, + date = {2016-01}, + journaltitle = {Phys. Rev. Lett.}, + volume = {116}, + number = {2}, + pages = {020601}, + publisher = {{American Physical Society}}, + issn = {1079-7114}, + doi = {10.1103/PhysRevLett.116.020601}, + file = {/home/hiro/Zotero/storage/HNTGIV2T/Seifert - 2016 - First and Second Law of Thermodynamics at Strong C.pdf} +} + +@article{Semenoff1983, + title = {Functional Methods in Thermofield Dynamics: {{A}} Real-Time Perturbation Theory for Quantum Statistical Mechanics}, + author = {Semenoff, G. W. and Umezawa, H.}, + date = {1983-06}, + journaltitle = {Nucl. Phys. B}, + volume = {220}, + number = {2}, + pages = {196--212}, + publisher = {{North-Holland}}, + issn = {0550-3213}, + doi = {10.1016/0550-3213(83)90223-7}, + file = {/home/hiro/Zotero/storage/QZ9A39N6/Semenoff and Umezawa - 1983 - Functional methods in thermofield dynamics A real.pdf} +} + +@article{Senior2020, + title = {Heat Rectification via a Superconducting Artificial Atom - {{Communications Physics}}}, + author = {Senior, Jorden and Gubaydullin, Azat and Karimi, Bayan and Peltonen, Joonas T. and Ankerhold, Joachim and Pekola, Jukka P.}, + date = {2020-02}, + journaltitle = {Commun. Phys.}, + volume = {3}, + number = {40}, + pages = {1--5}, + publisher = {{Nature Publishing Group}}, + issn = {2399-3650}, + doi = {10.1038/s42005-020-0307-5}, + file = {/home/hiro/Zotero/storage/M2WANTS8/Senior et al. - 2020 - Heat rectification via a superconducting artificia.pdf} +} + +@article{Shi2009, + title = {Efficient Hierarchical {{Liouville}} Space Propagator to Quantum Dissipative Dynamics}, + author = {Shi, Qiang and Chen, Liping and Nan, Guangjun and Xu, Rui-Xue and Yan, YiJing}, + date = {2009-02}, + journaltitle = {J. Chem. Phys.}, + volume = {130}, + number = {8}, + pages = {084105}, + publisher = {{American Institute of Physics}}, + issn = {0021-9606}, + doi = {10.1063/1.3077918}, + file = {/home/hiro/Zotero/storage/PKND9XCE/Shi et al. - 2009 - Efficient hierarchical Liouville space propagator .pdf} +} + +@article{Shillito2021, + title = {Fast and Differentiable Simulation of Driven Quantum Systems}, + author = {Shillito, Ross and Gross, Jonathan A. and Di Paolo, Agustin and Genois, Élie and Blais, Alexandre}, + date = {2021-09-20}, + journaltitle = {Physical Review Research}, + shortjournal = {Phys. Rev. Research}, + volume = {3}, + number = {3}, + pages = {033266}, + issn = {2643-1564}, + doi = {10.1103/PhysRevResearch.3.033266}, + url = {https://link.aps.org/doi/10.1103/PhysRevResearch.3.033266}, + urldate = {2023-01-18}, + langid = {english}, + file = {/home/hiro/Zotero/storage/MQ88WW46/Shillito et al. - 2021 - Fast and differentiable simulation of driven quant.pdf} +} + +@article{Skrzypczyk2014, + title = {Work Extraction and Thermodynamics for Individual Quantum Systems}, + author = {Skrzypczyk, Paul and Short, Anthony J. and Popescu, Sandu}, + date = {2014-06}, + journaltitle = {Nat. Commun.}, + volume = {5}, + number = {4185}, + pages = {1--8}, + publisher = {{Nature Publishing Group}}, + issn = {2041-1723}, + doi = {10.1038/ncomms5185}, + file = {/home/hiro/Zotero/storage/PPBWIRNC/Skrzypczyk et al. - 2014 - Work extraction and thermodynamics for individual .pdf} +} + +@article{Snyder1972, + title = {Coupled-{{Mode Theory}} for {{Optical Fibers}}}, + author = {Snyder, Allan W.}, + date = {1972-11-01}, + journaltitle = {JOSA}, + shortjournal = {J. Opt. Soc. Am., JOSA}, + volume = {62}, + number = {11}, + pages = {1267--1277}, + publisher = {{Optica Publishing Group}}, + doi = {10.1364/JOSA.62.001267}, + url = {https://opg.optica.org/josa/abstract.cfm?uri=josa-62-11-1267}, + urldate = {2023-03-03}, + abstract = {A set of coupled-mode equations is derived to describe mode propagation in uniform and slightly nonuniform cylindrical optical-fiber systems. The coupling between fibers of an array made up of n identical fibers each at the vertex of a polygon and one at the center, which is not necessarily the same as its n neighbors, is determined. Examples of this array are two fibers, three fibers in a row, and a hexagonal array with a fiber in the center. Very simple expressions for the coupling coefficients are presented. Mode coupling on a lossy fiber is investigated and a simple expression for the loss of a HE11 mode is given.}, + langid = {english}, + keywords = {Coupled mode theory,Fourier transforms,Optical devices,Optical fibers,Refractive index,Tapered fibers}, + file = {/home/hiro/Zotero/storage/VHXP4BI8/Snyder - 1972 - Coupled-Mode Theory for Optical Fibers.pdf} +} + +@article{Sorokin2016, + title = {Semiclassical Bifurcations and Topological Phase Transitions in a One-Dimensional Lattice of Coupled {{Lipkin-Meshkov-Glick}} Models}, + author = {Sorokin, A. V. and Aparicio Alcalde, M. and Bastidas, V. M. and Engelhardt, G. and Angelakis, D. G. and Brandes, T.}, + date = {2016-09-21}, + journaltitle = {Physical Review E}, + shortjournal = {Phys. Rev. E}, + volume = {94}, + number = {3}, + pages = {032123}, + publisher = {{American Physical Society}}, + doi = {10.1103/PhysRevE.94.032123}, + url = {https://link.aps.org/doi/10.1103/PhysRevE.94.032123}, + urldate = {2023-03-07}, + abstract = {In this work we study a one-dimensional lattice of Lipkin-Meshkov-Glick models with alternating couplings between nearest-neighbors sites, which resembles the Su-Schrieffer-Heeger model. Typical properties of the underlying models are present in our semiclassical-topological hybrid system, allowing us to investigate an interplay between semiclassical bifurcations at mean-field level and topological phases. Our results show that bifurcations of the energy landscape lead to diverse ordered quantum phases. Furthermore, the study of the quantum fluctuations around the mean-field solution reveals the existence of nontrivial topological phases. These are characterized by the emergence of localized states at the edges of a chain with free open-boundary conditions.}, + file = {/home/hiro/Zotero/storage/KKR9DB68/Sorokin et al. - 2016 - Semiclassical bifurcations and topological phase t.pdf;/home/hiro/Zotero/storage/GPVP9HE3/PhysRevE.94.html} +} + +@article{Stevens2021, + title = {Energetics of a {{Single Qubit Gate}}}, + author = {Stevens, Jeremy and Szombati, Daniel and Maffei, Maria and Elouard, Cyril and Assouly, Rıfmmode\textbackslash acutee\textbackslash elseé\textbackslash fiouven and Cottet, Nathanaıfmmode\textbackslash ddote\textbackslash elseë\textbackslash fil and Dassonneville, Rıfmmode\textbackslash acutee\textbackslash elseé\textbackslash fimy and Ficheux, Quentin and Zeppetzauer, Stefan and Bienfait, Audrey and Jordan, Andrew N. and Auffıfmmode\textbackslash gravee\textbackslash elseè\textbackslash fives, Alexia and Huard, Benjamin}, + date = {2021-09}, + journaltitle = {arXiv}, + url = {https://arxiv.org/abs/2109.09648v1}, + file = {/home/hiro/Zotero/storage/LEUZWFJN/Stevens et al. - 2021 - Energetics of a Single Qubit Gate.pdf} +} + +@article{Strasberg2016, + title = {Nonequilibrium Thermodynamics in the Strong Coupling and Non-{{Markovian}} Regime Based on a Reaction Coordinate Mapping}, + author = {Strasberg, Philipp and Schaller, Gernot and Lambert, Neill and Brandes, Tobias}, + date = {2016-07}, + journaltitle = {New J. Phys.}, + volume = {18}, + number = {7}, + pages = {073007}, + publisher = {{IOP Publishing}}, + issn = {1367-2630}, + doi = {10.1088/1367-2630/18/7/073007}, + file = {/home/hiro/Zotero/storage/N5E95FFN/Strasberg et al. - 2016 - Nonequilibrium thermodynamics in the strong coupli.pdf} +} + +@article{Strasberg2021, + title = {First and {{Second Law}} of {{Quantum Thermodynamics}}: {{A Consistent Derivation Based}} on a {{Microscopic Definition}} of {{Entropy}}}, + author = {Strasberg, Philipp and Winter, Andreas}, + date = {2021-08}, + journaltitle = {PRX Quantum}, + volume = {2}, + number = {3}, + pages = {030202}, + publisher = {{American Physical Society}}, + issn = {2691-3399}, + doi = {10.1103/PRXQuantum.2.030202}, + file = {/home/hiro/Zotero/storage/SHLYMML9/Strasberg and Winter - 2021 - First and Second Law of Quantum Thermodynamics A .pdf} +} + +@article{Strathearn2018, + title = {Efficient Non-{{Markovian}} Quantum Dynamics Using Time-Evolving Matrix Product Operators}, + author = {Strathearn, A. and Kirton, P. and Kilda, D. and Keeling, J. and Lovett, B. W.}, + date = {2018-08}, + journaltitle = {Nat. Commun.}, + volume = {9}, + number = {1}, + pages = {3322.}, + publisher = {{See full text options at Nature Publishing Group}}, + issn = {2041-1723}, + doi = {10.1038/s41467-018-05617-3}, + file = {/home/hiro/Zotero/storage/DFEMSY8D/Strathearn et al. - 2018 - Efficient non-Markovian quantum dynamics using tim.pdf} +} + +@article{Strunz1996, + title = {Linear Quantum State Diffusion for Non-{{Markovian}} Open Quantum Systems}, + author = {Strunz, Walter T.}, + date = {1996}, + journaltitle = {Physics Letters A}, + volume = {224}, + pages = {25--30} +} + +@article{Strunz1999, + title = {Open {{System Dynamics}} with {{Non-Markovian Quantum Trajectories}}}, + author = {Strunz, Walter T. and Diıfmmode\textbackslash acuteo\textbackslash elseó\textbackslash fisi, Lajos and Gisin, Nicolas}, + date = {1999-03}, + journaltitle = {Phys. Rev. Lett.}, + volume = {82}, + number = {9}, + pages = {1801--1805}, + publisher = {{American Physical Society}}, + issn = {1079-7114}, + doi = {10.1103/PhysRevLett.82.1801}, + file = {/home/hiro/Zotero/storage/GHJXDRA9/Strunz et al. - 1999 - Open System Dynamics with Non-Markovian Quantum Tr.pdf} +} + +@thesis{Strunz2001, + type = {Habilitation Thesis}, + title = {Stochastic {{Schrödinger}} Equation Approach to the Dynamics of Non-{{Markovian}} Open Quantum Systems}, + author = {Strunz, Walter T.}, + date = {2001}, + institution = {{Fachbereich Physik der Universität Essen}} +} + +@article{Suarez1992, + title = {Memory {{Effects}} in the {{Relaxation}} of {{Quantum Open Systems}}}, + author = {Suárez, Alberto and Silbey, Robert and Oppenheim, Irwin}, + date = {1992-10}, + journaltitle = {The Journal of Chemical Physics}, + volume = {97}, + number = {7}, + pages = {5101--5107}, + issn = {0021-9606}, + doi = {10.1063/1.463831} +} + +@article{Suess2014, + title = {Hierarchy of Stochastic Pure States for Open Quantum System Dynamics}, + author = {Suess, D. and Eisfeld, A. and Strunz, W. T.}, + date = {2014-10}, + journaltitle = {Phys. Rev. Lett.}, + volume = {113}, + number = {15}, + pages = {150403.}, + publisher = {{See full text options at American Physical Society}}, + issn = {1079-7114}, + doi = {10.1103/PhysRevLett.113.150403}, + file = {/home/hiro/Zotero/storage/K4HTTUA3/Suess et al. - 2014 - Hierarchy of stochastic pure states for open quant.pdf} +} + +@article{Takahashi1996, + title = {{{THERMO FIELD DYNAMICS}}}, + author = {Takahashi, Yasushi and Umezawa, Hiroomi}, + date = {1996-06}, + journaltitle = {Int. J. Mod. Phys B}, + volume = {10}, + pages = {1755--1805}, + publisher = {{World Scientific Publishing Co.}}, + issn = {0217-9792}, + doi = {10.1142/S0217979296000817}, + issue = {13n14} +} + +@article{Talkner2007, + title = {Fluctuation Theorems: {{Work}} Is Not an Observable}, + author = {Talkner, Peter and Lutz, Eric and Hıfmmode\textbackslash ddota\textbackslash elseä\textbackslash finggi, Peter}, + date = {2007-05}, + journaltitle = {Phys. Rev. E}, + volume = {75}, + number = {5}, + pages = {050102}, + publisher = {{American Physical Society}}, + issn = {2470-0053}, + doi = {10.1103/PhysRevE.75.050102}, + file = {/home/hiro/Zotero/storage/95U79V8R/Talkner et al. - 2007 - Fluctuation theorems Work is not an observable.pdf} +} + +@article{Talkner2016, + title = {Open System Trajectories Specify Fluctuating Work but Not Heat}, + author = {Talkner, Peter and Hıfmmode\textbackslash ddota\textbackslash elseä\textbackslash finggi, Peter}, + date = {2016-08}, + journaltitle = {Phys. Rev. E}, + volume = {94}, + number = {2}, + pages = {022143}, + publisher = {{American Physical Society}}, + issn = {2470-0053}, + doi = {10.1103/PhysRevE.94.022143}, + file = {/home/hiro/Zotero/storage/FX2923Y8/Talkner and Hıfmmodeddotaelseäfinggi - 2016 - Open system trajectories specify fluctuating work .pdf} +} + +@article{Talkner2020, + title = {Colloquium: {{Statistical}} Mechanics and Thermodynamics at Strong Coupling: {{Quantum}} and Classical}, + author = {Talkner, Peter and Hıfmmode\textbackslash ddota\textbackslash elseä\textbackslash finggi, Peter}, + date = {2020-10}, + journaltitle = {Rev. Mod. Phys.}, + volume = {92}, + number = {4}, + pages = {041002}, + publisher = {{American Physical Society}}, + issn = {1539-0756}, + doi = {10.1103/RevModPhys.92.041002}, + file = {/home/hiro/Zotero/storage/P64B89A3/Talkner and Hıfmmodeddotaelseäfinggi - 2020 - Colloquium Statistical mechanics and thermodynami.pdf;/home/hiro/Zotero/storage/WAEUTWJ6/10.1103@RevModPhys.92.041002.pdf.pdf} +} + +@article{Tan2019, + title = {Experimental {{Measurement}} of the {{Quantum Metric Tensor}} and {{Related Topological Phase Transition}} with a {{Superconducting Qubit}}}, + author = {Tan, Xinsheng and Zhang, Dan-Wei and Yang, Zhen and Chu, Ji and Zhu, Yan-Qing and Li, Danyu and Yang, Xiaopei and Song, Shuqing and Han, Zhikun and Li, Zhiyuan and Dong, Yuqian and Yu, Hai-Feng and Yan, Hui and Zhu, Shi-Liang and Yu, Yang}, + date = {2019-05-29}, + journaltitle = {Physical Review Letters}, + shortjournal = {Phys. Rev. Lett.}, + volume = {122}, + number = {21}, + pages = {210401}, + publisher = {{American Physical Society}}, + doi = {10.1103/PhysRevLett.122.210401}, + url = {https://link.aps.org/doi/10.1103/PhysRevLett.122.210401}, + urldate = {2023-03-09}, + abstract = {A Berry curvature is an imaginary component of the quantum geometric tensor (QGT) and is well studied in many branches of modern physics; however, the quantum metric as a real component of the QGT is less explored. Here, by using tunable superconducting circuits, we experimentally demonstrate two methods to directly measure the quantum metric tensor for characterizing the geometry and topology of underlying quantum states in parameter space. The first method is to probe the transition probability after a sudden quench, and the second one is to detect the excitation rate under weak periodic driving. Furthermore, based on quantum metric and Berry-curvature measurements, we explore a topological phase transition in a simulated time-reversal-symmetric system. The work opens up a unique approach to explore the topology of quantum states with the QGT.}, + file = {/home/hiro/Zotero/storage/5G2ZADTR/Tan et al. - 2019 - Experimental Measurement of the Quantum Metric Ten.pdf;/home/hiro/Zotero/storage/W3FWHP54/PhysRevLett.122.html} +} + +@article{Tang2015, + title = {Extended Hierarchy Equation of Motion for the Spin-Boson Model}, + author = {Tang, Zhoufei and Ouyang, Xiaolong and Gong, Zhihao and Wang, Haobin and Wu, Jianlan}, + date = {2015-12}, + journaltitle = {J. Chem. Phys.}, + volume = {143}, + number = {22}, + pages = {224112}, + publisher = {{American Institute of Physics}}, + issn = {0021-9606}, + doi = {10.1063/1.4936924}, + file = {/home/hiro/Zotero/storage/5ZIEC6TD/Tang et al. - 2015 - Extended hierarchy equation of motion for the spin.pdf} +} + +@article{Tanimura1990, + title = {Nonperturbative Expansion Method for a Quantum System Coupled to a Harmonic-Oscillator Bath}, + author = {Tanimura, Yoshitaka}, + date = {1990-06}, + journaltitle = {Phys. Rev. A}, + volume = {41}, + number = {12}, + pages = {6676--6687}, + publisher = {{American Physical Society}}, + issn = {2469-9934}, + doi = {10.1103/PhysRevA.41.6676}, + file = {/home/hiro/Zotero/storage/2FLNWVVD/tanimura1990.pdf.pdf;/home/hiro/Zotero/storage/8QAMYSPF/Tanimura - 1990 - Nonperturbative expansion method for a quantum sys.pdf} +} + +@article{Uzdin2015, + title = {Equivalence of {{Quantum Heat Machines}}, and {{Quantum-Thermodynamic Signatures}}}, + author = {Uzdin, Raam and Levy, Amikam and Kosloff, Ronnie}, + date = {2015-09}, + journaltitle = {Phys. Rev. X}, + volume = {5}, + number = {3}, + pages = {031044}, + publisher = {{American Physical Society}}, + issn = {2160-3308}, + doi = {10.1103/PhysRevX.5.031044}, + file = {/home/hiro/Zotero/storage/W2ZQA2CA/Uzdin et al. - 2015 - Equivalence of Quantum Heat Machines, and Quantum-.pdf} +} + +@article{Vaccaro2011, + title = {Information Erasure without an Energy Cost}, + author = {Vaccaro, Joan A. and Barnett, Stephen M.}, + date = {2011-06}, + journaltitle = {Proc. R. Soc. A.}, + volume = {467}, + number = {2130}, + pages = {1770--1778}, + publisher = {{The Royal Society Publishing}}, + issn = {1471-2946}, + doi = {10.1098/rspa.2010.0577}, + file = {/home/hiro/Zotero/storage/Y7ZPKMS5/Vaccaro and Barnett - 2011 - Information erasure without an energy cost.pdf} +} + +@article{Viebahn, + title = {Introduction to {{Floquet}} Theory}, + author = {Viebahn, Konrad}, + langid = {english}, + file = {/home/hiro/Zotero/storage/F5U7JMX2/Viebahn - Introduction to Floquet theory.pdf} +} + +@article{Vinjanampathy2016, + title = {Quantum Thermodynamics}, + author = {Vinjanampathy, Sai and Anders, Janet}, + date = {2016-10}, + journaltitle = {Contemp. Phys.}, + volume = {57}, + number = {4}, + pages = {545--579}, + publisher = {{Taylor \& Francis}}, + issn = {0010-7514}, + doi = {10.1080/00107514.2016.1201896}, + file = {/home/hiro/Zotero/storage/AETVNT4D/Vinjanampathy and Anders - 2016 - Quantum thermodynamics.pdf} +} + +@article{Virtanen2020, + title = {{{SciPy}} 1.0: {{Fundamental Algorithms}} for {{Scientific Computing}} in {{Python}}}, + author = {Virtanen, Pauli and Gommers, Ralf and Oliphant, Travis E. and Haberland, Matt and Reddy, Tyler and Cournapeau, David and Burovski, Evgeni and Peterson, Pearu and Weckesser, Warren and Bright, Jonathan and van der Walt, Stéfan J. and Brett, Matthew and Wilson, Joshua and Millman, K. Jarrod and Mayorov, Nikolay and Nelson, Andrew R. J. and Jones, Eric and Kern, Robert and Larson, Eric and Carey, C J and Polat, İlhan and Feng, Yu and Moore, Eric W. and VanderPlas, Jake and Laxalde, Denis and Perktold, Josef and Cimrman, Robert and Henriksen, Ian and Quintero, E. A. and Harris, Charles R. and Archibald, Anne M. and Ribeiro, Antônio H. and Pedregosa, Fabian and van Mulbregt, Paul and {SciPy 1.0 Contributors}}, + options = {useprefix=true}, + date = {2020}, + journaltitle = {Nature Methods}, + volume = {17}, + pages = {261--272}, + doi = {10.1038/s41592-019-0686-2}, + file = {/home/hiro/Zotero/storage/74LUQ73M/Virtanen et al. - 2020 - SciPy 1.0 Fundamental Algorithms for Scientific C.pdf} +} + +@article{Wan2021, + title = {Fault-Tolerant Qubit from a Constant Number of Components}, + author = {Wan, Kianna and Choi, Soonwon and Kim, Isaac H. and Shutty, Noah and Hayden, Patrick}, + date = {2021}, + journaltitle = {PRX Quantum}, + volume = {2}, + number = {4}, + pages = {040345}, + publisher = {{APS}}, + file = {/home/hiro/Zotero/storage/E5GC7DKF/Wan et al. - 2021 - Fault-tolerant qubit from a constant number of com.pdf} +} + +@article{Wang2010, + title = {From Coherent Motion to Localization: {{II}}. {{Dynamics}} of the Spin-Boson Model with Sub-{{Ohmic}} Spectral Density at Zero Temperature}, + author = {Wang, Haobin and Thoss, Michael}, + date = {2010-05}, + journaltitle = {Chem. Phys.}, + volume = {370}, + number = {1}, + pages = {78--86}, + publisher = {{North-Holland}}, + issn = {0301-0104}, + doi = {10.1016/j.chemphys.2010.02.027}, + file = {/home/hiro/Zotero/storage/LLJZW9V3/Wang and Thoss - 2010 - From coherent motion to localization II. Dynamics.pdf} +} + +@article{Wang2021, + title = {Managing {{Quantum Heat Transfer}} in a {{Nonequilibrium Qubit-Phonon Hybrid System}} with {{Coherent Phonon States}}}, + author = {Wang, Chen and Wang, Lu-Qin and Ren, Jie}, + date = {2021-01}, + journaltitle = {Chin. Phys. Lett.}, + volume = {38}, + number = {1}, + pages = {010501}, + publisher = {{IOP Publishing}}, + issn = {0256-307X}, + doi = {10.1088/0256-307x/38/1/010501}, + file = {/home/hiro/Zotero/storage/2HYLTLHF/Wang et al. - 2021 - Managing Quantum Heat Transfer in a Nonequilibrium.pdf} +} + +@book{Weber2006, + title = {Laser {{Fundamentals}}. {{Part}} 2}, + editor = {Weber, H. and Herziger, G. and Poprawe, R.}, + date = {2006}, + series = {Landolt-{{Börnstein}} - {{Group VIII Advanced Materials}} and {{Technologies}}}, + volume = {1A2}, + publisher = {{Springer Berlin Heidelberg}}, + doi = {10.1007/978-3-540-47008-3}, + url = {http://materials.springer.com/bp/docs/978-3-540-47008-3}, + urldate = {2023-01-10}, + abstract = {Semantic Scholar extracted view of "Laser Fundamentals. Part 2" by H. Weber et al.}, + isbn = {978-3-540-28824-4}, + langid = {english}, + file = {/home/hiro/Zotero/storage/CCAIV5IJ/Laser Fundamentals 2.pdf} +} + +@book{Weiss2008, + title = {Quantum {{Dissipative Systems}} \$\textbackslash vert\$ {{Series}} in {{Modern Condensed Matter Physics}}}, + author = {Weiss, Ulrich}, + date = {2008-03}, + volume = {13}, + publisher = {{World Scientific Publishing Company}}, + location = {{Singapore}}, + doi = {10.1142/6738}, + isbn = {978-981-279-162-7} +} + +@book{Weiss2012, + title = {Quantum {{Dissipative Systems}}}, + author = {Weiss, Ulrich}, + date = {2012}, + publisher = {{World Scientific}}, + location = {{Singapore}}, + url = {https://books.google.de/books/about/Quantum_Dissipative_Systems.html?id=S2K6CgAAQBAJ&redir_esc=y}, + isbn = {978-981-4374-92-7} +} + +@article{Welford1962, + title = {Note on a {{Method}} for {{Calculating Corrected Sums}} of {{Squares}} and {{Products}}}, + author = {Welford, B. P.}, + date = {1962-08}, + journaltitle = {Technometrics}, + volume = {4}, + number = {3}, + pages = {419--420}, + publisher = {{Taylor \& Francis}}, + issn = {0040-1706}, + doi = {10.1080/00401706.1962.10490022}, + file = {/home/hiro/Zotero/storage/2TERNA52/welford1962.pdf.pdf} +} + +@article{Wiedmann2020, + title = {Non-{{Markovian}} Dynamics of a Quantum Heat Engine: Out-of-Equilibrium Operation and Thermal Coupling Control}, + author = {Wiedmann, M. and Stockburger, J. T. and Ankerhold, J.}, + date = {2020-03}, + journaltitle = {New J. Phys.}, + volume = {22}, + number = {3}, + pages = {033007}, + publisher = {{IOP Publishing}}, + issn = {1367-2630}, + doi = {10.1088/1367-2630/ab725a}, + file = {/home/hiro/Zotero/storage/CJA94KEG/Wiedmann et al. - 2020 - Non-Markovian dynamics of a quantum heat engine o.pdf} +} + +@article{Wiedmann2021, + title = {Non-{{Markovian}} Quantum {{Otto}} Refrigerator}, + author = {Wiedmann, Michael and Stockburger, Jıfmmode\textbackslash ddotu\textbackslash elseü\textbackslash firgen T. and Ankerhold, Joachim}, + date = {2021-06}, + journaltitle = {Eur. Phys. J. Spec. Top.}, + volume = {230}, + number = {4}, + pages = {851--857}, + publisher = {{Springer Berlin Heidelberg}}, + issn = {1951-6401}, + doi = {10.1140/epjs/s11734-021-00094-0}, + file = {/home/hiro/Zotero/storage/DA2VRE7W/Wiedmann et al. - 2021 - Non-Markovian quantum Otto refrigerator.pdf} +} + +@book{Wilde2017, + title = {Quantum {{Information Theory}}}, + author = {Wilde, Mark M.}, + date = {2017-02}, + journaltitle = {Cambridge Core}, + publisher = {{Cambridge University Press}}, + location = {{Cambridge, England, UK}}, + doi = {10.1017/9781316809976}, + isbn = {978-1-107-17616-4} +} + +@article{Wyss2017, + title = {Two {{Non-Commutative Binomial Theorems}}}, + author = {Wyss, Walter}, + date = {2017-07}, + journaltitle = {arXiv}, + doi = {10.48550/arXiv.1707.03861}, + file = {/home/hiro/Zotero/storage/AXMYP5WN/Wyss - 2017 - Two Non-Commutative Binomial Theorems.pdf} +} + +@article{Xu2020, + title = {{{ZZ}} Freedom in Two Qubit Gates}, + author = {Xu, Xuexin and Ansari, M. H.}, + date = {2020-09}, + journaltitle = {arXiv}, + doi = {10.1103/PhysRevApplied.15.064074}, + file = {/home/hiro/Zotero/storage/MNXYZSPA/Xu and Ansari - 2020 - ZZ freedom in two qubit gates.pdf} +} + +@article{Xu2022, + title = {Minimal Quantum Thermal Machine in a Bandgap Environment: Non-{{Markovian}} Features and Anti-{{Zeno}} Advantage}, + author = {Xu, Meng and Stockburger, J. T. and Kurizki, G. and Ankerhold, J.}, + date = {2022-03}, + journaltitle = {New J. Phys.}, + volume = {24}, + number = {3}, + pages = {035003}, + publisher = {{IOP Publishing}}, + issn = {1367-2630}, + doi = {10.1088/1367-2630/ac575b} +} + +@book{Yeh2008, + title = {The {{Essence}} of {{Dielectric Waveguides}}}, + author = {Yeh, C. and Shimabukuro, F. I.}, + date = {2008}, + publisher = {{Springer US}}, + location = {{Boston, MA}}, + doi = {10.1007/978-0-387-49799-0}, + url = {http://link.springer.com/10.1007/978-0-387-49799-0}, + urldate = {2023-01-05}, + isbn = {978-0-387-30929-3 978-0-387-49799-0}, + langid = {english}, + keywords = {basics,dielectric waveguide,electromagnetic wave,electromagnetic wave course,fiber,integrated optics,magnetic field,Metamaterial,microwave,millimeter/submillimeter,Planar,terahertz,waveguide course}, + file = {/home/hiro/Zotero/storage/TVKBGC9Z/Yeh and Shimabukuro - 2008 - The Essence of Dielectric Waveguides.pdf} +} + +@article{Yu2000, + title = {Post-{{Markov Master Equation}} for the {{Dynamics}} of {{Open Quantum Systems}}}, + author = {Yu, Ting and Diósi, Lajos and Gisin, Nicolas and Strunz, Walter T.}, + date = {2000-02}, + journaltitle = {Physics Letters A}, + volume = {265}, + number = {5-6}, + pages = {331--336}, + issn = {03759601}, + doi = {10.1016/S0375-9601(00)00014-1} +} + +@article{Yuan2018, + title = {Synthetic Dimension in Photonics}, + author = {Yuan, Luqi and Lin, Qian and Xiao, Meng and Fan, Shanhui}, + date = {2018-11-20}, + journaltitle = {Optica}, + shortjournal = {Optica, OPTICA}, + volume = {5}, + number = {11}, + pages = {1396--1405}, + publisher = {{Optica Publishing Group}}, + issn = {2334-2536}, + doi = {10.1364/OPTICA.5.001396}, + url = {https://opg.optica.org/optica/abstract.cfm?uri=optica-5-11-1396}, + urldate = {2023-03-09}, + abstract = {The physics of a photonic structure is commonly described in terms of its apparent geometric dimensionality. On the other hand, with the concept of synthetic dimension, it is in fact possible to explore physics in a space with a dimensionality that is higher as compared to the apparent geometrical dimensionality of the structures. In this review, we discuss the basic concepts of synthetic dimension in photonics, and highlight the various approaches toward demonstrating such synthetic dimensions for fundamental physics and potential applications.}, + langid = {english}, + keywords = {Cold atoms,Coupled mode theory,Optical angular momentum,Optical lattices,Ring resonators,Spatial light modulators}, + file = {/home/hiro/Zotero/storage/7ZHBZAHP/Yuan et al. - 2018 - Synthetic dimension in photonics.pdf} +} + +@article{Yuan2018a, + title = {Synthetic Space with Arbitrary Dimensions in a Few Rings Undergoing Dynamic Modulation}, + author = {Yuan, Luqi and Xiao, Meng and Lin, Qian and Fan, Shanhui}, + date = {2018-03-19}, + journaltitle = {Physical Review B}, + shortjournal = {Phys. Rev. B}, + volume = {97}, + number = {10}, + pages = {104105}, + publisher = {{American Physical Society}}, + doi = {10.1103/PhysRevB.97.104105}, + url = {https://link.aps.org/doi/10.1103/PhysRevB.97.104105}, + urldate = {2023-03-09}, + abstract = {We show that a single ring resonator undergoing dynamic modulation can be used to create a synthetic space with an arbitrary dimension. In such a system, the phases of the modulation can be used to create a photonic gauge potential in high dimensions. As an illustration of the implication of this concept, we show that the Haldane model, which exhibits nontrivial topology in two dimensions, can be implemented in the synthetic space using three rings. Our results point to a route toward exploring higher-dimensional topological physics in low-dimensional physical structures. The dynamics of photons in such synthetic spaces also provides a mechanism to control the spectrum of light.}, + file = {/home/hiro/Zotero/storage/9895UJB8/Yuan et al. - 2018 - Synthetic space with arbitrary dimensions in a few.pdf;/home/hiro/Zotero/storage/5AN8LFNP/PhysRevB.97.html} +} + +@article{Yuan2019b, + title = {Photonic {{Gauge Potential}} in {{One Cavity}} with {{Synthetic Frequency}} and {{Orbital Angular Momentum Dimensions}}}, + author = {Yuan, Luqi and Lin, Qian and Zhang, Anwei and Xiao, Meng and Chen, Xianfeng and Fan, Shanhui}, + date = {2019-03-01}, + journaltitle = {Physical Review Letters}, + shortjournal = {Phys. Rev. Lett.}, + volume = {122}, + number = {8}, + pages = {083903}, + publisher = {{American Physical Society}}, + doi = {10.1103/PhysRevLett.122.083903}, + url = {https://link.aps.org/doi/10.1103/PhysRevLett.122.083903}, + urldate = {2023-02-15}, + abstract = {We explore a single degenerate optical cavity supporting a synthetic two-dimensional space, which includes the frequency and the orbital angular momentum (OAM) axes of light. We create the effective gauge potential inside this synthetic space and show that the system exhibits topologically protected one-way edge states along the OAM axis at the boundaries of the frequency dimension. In this synthetic space, we present a robust generation and manipulation of entanglement between the frequency and OAM of photons. Our Letter shows that a higher-dimensional synthetic space involving multiple degrees of freedom of light can be achieved in a “zero-dimensional” spatial structure, pointing towards a unique platform to explore topological photonics and to realize potential applications in optical communications and quantum information processing.}, + file = {/home/hiro/Zotero/storage/XHGETQ2F/Yuan et al. - 2019 - Photonic Gauge Potential in One Cavity with Synthe.pdf;/home/hiro/Zotero/storage/SHLF87TQ/PhysRevLett.122.html} +} + +@article{Zhang2018, + title = {Flexible Scheme to Truncate the Hierarchy of Pure States}, + author = {Zhang, P.-P. and Bentley, C. D. B. and Eisfeld, A.}, + date = {2018-04}, + journaltitle = {J. Chem. Phys.}, + volume = {148}, + number = {13}, + pages = {134103}, + publisher = {{American Institute of Physics}}, + issn = {0021-9606}, + doi = {10.1063/1.5022225}, + file = {/home/hiro/Zotero/storage/C3DDUQ3K/Zhang et al. - 2018 - Flexible scheme to truncate the hierarchy of pure .pdf} +} + +@misc{Zitkovic2010, + title = {Introduction to Stochastic Processes-Lecture Notes}, + author = {Žitković, Gordan}, + date = {2010}, + publisher = {{Austin, University of Texas-Department of Mathematics}}, + url = {https://web.ma.utexas.edu/users/gordanz/notes/introduction_to_stochastic_processes.pdf}, + file = {/home/hiro/Zotero/storage/7A9TNNIU/Žitković - 2010 - Introduction to stochastic processes-lecture notes.pdf} +} + +@book{zotero-244, + title = {Elektrodynamik}, + url = {https://link.springer.com/book/10.1007/978-3-8274-3036-6}, + urldate = {2023-01-06}, + langid = {english}, + file = {/home/hiro/Zotero/storage/JVE2RNXE/978-3-8274-3036-6.html} +} + +@book{zotero-251, + title = {Laser {{Fundamentals}}}, + url = {https://link.springer.com/book/9783540443797}, + urldate = {2023-01-10}, + langid = {english}, + file = {/home/hiro/Zotero/storage/JXMIU2BD/9783540443797.html} +} + +@book{zotero-253, + title = {Laser {{Fundamentals}} 2}, + url = {https://link.springer.com/book/9783540288244}, + urldate = {2023-01-10}, + langid = {english}, + file = {/home/hiro/Zotero/storage/P3GRKGR2/9783540288244.html} +} + +@article{zotero-273, + type = {article} +} + +@online{zotero-280, + title = {Maximilian {{Schlosshauer}}}, + url = {http://faculty.up.edu/schlosshauer/index.php?page=books#dec}, + urldate = {2023-01-19}, + file = {/home/hiro/Zotero/storage/TM97TJVC/index.html} +} + +@online{zotero-288, + title = {{{CS}}:{{APP3e}}, {{Bryant}} and {{O}}'{{Hallaron}}}, + url = {https://csapp.cs.cmu.edu/}, + urldate = {2023-01-19}, + file = {/home/hiro/Zotero/storage/8DY47ZLA/csapp.cs.cmu.edu.html} +} + +@online{zotero-290, + title = {Computer {{Systems}}: {{A Programmer}}'s {{Perspective}} (3rd {{Edition}}): {{Bryant}}, {{Randal E}}., {{O}}'{{Hallaron}}, {{David R}}.: 9780134092669: {{Books}} - {{Amazon}}.Ca}, + url = {https://www.amazon.ca/Computer-Systems-Programmers-Perspective-3rd/dp/013409266X}, + urldate = {2023-01-19} +} + +@online{zotero-337, + title = {Online Course on Topology in Condensed Matter}, + url = {https://topocondmat.org/index.html}, + urldate = {2023-02-13}, + abstract = {This is a open online course on topology in condensed matter. Initially developed for the edX platform in 2015, its development continues here. After following this course you will: Discover how to...}, + file = {/home/hiro/Zotero/storage/A5M7L8J2/index.html} +} + +@online{zotero-350, + title = {{{PGSS Payment Page}} - {{Provided}} by {{Chase Paymentech}}: {{Payment}}}, + url = {https://checkout.e-xact.com/collect_payment_data?ant=a73a19b6772eaca7661ef11d8acc2945&merchant=WSP-PGSS-OhKgAAANfw&order=a939db25c80bc9d63959e47949b1d79ca986c2e31b4dd12abbd2f99eb7846502&purch=705100356&t=1}, + urldate = {2023-02-15}, + file = {/home/hiro/Zotero/storage/DUB3BE69/collect_payment_data.html} +}