<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Projects | Bose Research Group</title><link>https://bose-research-group.github.io/project/</link><atom:link href="https://bose-research-group.github.io/project/index.xml" rel="self" type="application/rss+xml"/><description>Projects</description><generator>Hugo Blox Builder (https://hugoblox.com)</generator><language>en-us</language><lastBuildDate>Tue, 11 Mar 2025 16:07:46 +0530</lastBuildDate><image><url>https://bose-research-group.github.io/media/icon_hu_9bd251d90a98e6b2.png</url><title>Projects</title><link>https://bose-research-group.github.io/project/</link></image><item><title>QuantumDynamicsCLI.jl</title><link>https://bose-research-group.github.io/project/quantumdynamicscli/</link><pubDate>Tue, 11 Mar 2025 16:07:46 +0530</pubDate><guid>https://bose-research-group.github.io/project/quantumdynamicscli/</guid><description>&lt;table>
&lt;thead>
&lt;tr>
&lt;th style="text-align: center">&lt;strong>Documentation&lt;/strong>&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td style="text-align: center">&lt;a href="https://amartyabose.github.io/QuantumDynamicsCLI.jl/dev/" target="_blank" rel="noopener">
&lt;figure >
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img src="https://img.shields.io/badge/docs-dev-blue.svg" alt="Dev" loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;/figure>
&lt;/a>&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;h2 id="what-is-quantumdynamicscli">What is QuantumDynamicsCLI?&lt;/h2>
&lt;p>Simulating the dynamics of quantum systems is a challenging task with a
multitude of complicated computational methods. The
&lt;a href="https://github.com/amartyabose/QuantumDynamics.jl" target="_blank" rel="noopener">QuantumDynamics.jl&lt;/a> package
provides modular open-source implementations of an increasingly growing number
of these methods, while remaining a flexible platform for further development.
However, owing primarily to its exceptionally flexible nature, the usage of
QuantumDynamics.jl happens through short Julia scripts. This means that for the
most common simulation jobs, one needs to effectively rewrite the same code
multiple times increasing the chances of errors. As a means to making some of
the common types of simulations more facile, we now offer the
QuantumDynamicsCLI.jl package which installs the qdsim application as a sister
code of the QuantumDynamics.jl package. As the framework grows, so will this
application grow to accommodate the new methods and their most common use cases.&lt;/p>
&lt;h2 id="installation">Installation&lt;/h2>
&lt;p>QuantumDynamicsCLI.jl is a registered package. Installation is a simple procedure. It can be done either through the Pkg REPL:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-bash" data-lang="bash">&lt;span class="line">&lt;span class="cl">~ julia
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-fallback" data-lang="fallback">&lt;span class="line">&lt;span class="cl">julia&amp;gt; ]
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">pkg&amp;gt; add QuantumDynamicsCLI
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>or by using the &lt;code>Pkg&lt;/code> package manager in a script as follows:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-julia" data-lang="julia">&lt;span class="line">&lt;span class="cl">&lt;span class="n">julia&lt;/span>&lt;span class="o">&amp;gt;&lt;/span> &lt;span class="k">using&lt;/span> &lt;span class="n">Pkg&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="n">julia&lt;/span>&lt;span class="o">&amp;gt;&lt;/span> &lt;span class="n">Pkg&lt;/span>&lt;span class="o">.&lt;/span>&lt;span class="n">add&lt;/span>&lt;span class="p">(&lt;/span>&lt;span class="s">&amp;#34;QuantumDynamicsCLI&amp;#34;&lt;/span>&lt;span class="p">)&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>After the package gets built, an executable called &lt;code>qdsim&lt;/code> will be placed in &lt;code>$HOME/.julia/bin&lt;/code> along with the code completions for the shell in &lt;code>$HOME/.julia/completions&lt;/code>. Please add &lt;code>$HOME/.julia/bin&lt;/code> to your path and source the correct completions file.&lt;/p>
&lt;p>While QuantumDynamicsCLI.jl builds on top of the QuantumDynamics.jl package, separate installation of that package is unnecessary. Just installing QuantumDynamicsCLI.jl would install QuantumDynamics.jl as a dependency.&lt;/p>
&lt;h2 id="basic-usage">Basic Usage&lt;/h2>
&lt;p>&lt;code>qdsim&lt;/code> comes as a single program with multiple sub-components. These components can call each other, but are mostly meant for the end-user, and are used for running simulations and post-processing the data. The general syntax for running any particular component is as follows:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-bash" data-lang="bash">&lt;span class="line">&lt;span class="cl">&amp;gt; qdsim &amp;lt;component_name&amp;gt; &amp;lt;command_name&amp;gt; &amp;lt;arguments&amp;gt;
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>Currently, two &lt;code>command&lt;/code>s are supported:&lt;/p>
&lt;ul>
&lt;li>&lt;code>simulate&lt;/code>: gives access to various techniques for simulating the dynamics&lt;/li>
&lt;li>&lt;code>post&lt;/code>: provides post-processing tools for the output&lt;/li>
&lt;/ul>
&lt;p>The most important sub-command of &lt;code>simulate&lt;/code> is &lt;code>run&lt;/code>, and for &lt;code>post&lt;/code> is &lt;code>get-observable&lt;/code>.&lt;/p>
&lt;h2 id="types-of-simulations">Types of Simulations&lt;/h2>
&lt;p>The primary focus of the qdsim application provided by the QuantumDynamicsCLI.jl package and the underlying QuantumDynamics.jl package is the simulation of dynamics and spectra of open quantum systems. New methods are consistently added and the support for old methods improved. Currently the following methods are supported:&lt;/p>
&lt;ul>
&lt;li>Iterative Quasi-adiabatic Propagators Path Integral (iQuAPI)&lt;/li>
&lt;li>Blip QuAPI&lt;/li>
&lt;li>Time-Evolved Matrix Product Operators (TEMPO)&lt;/li>
&lt;li>Pairwise-Connected Tensor Network Path Integral (PC-TNPI)&lt;/li>
&lt;li>standard Hierarchical Equations of Motion (HEOM)&lt;/li>
&lt;li>scaled HEOM&lt;/li>
&lt;li>Transfer Tensor Method coupled with any of the path integral methods&lt;/li>
&lt;li>Generalized Quantum Master Equation (GQME)&lt;/li>
&lt;li>Multichromophore Incoherent Forster Theory&lt;/li>
&lt;li>Bloch-Redfield Master Equation&lt;/li>
&lt;li>Lindblad Master Equation&lt;/li>
&lt;/ul></description></item><item><title>QuantumDynamics.jl</title><link>https://bose-research-group.github.io/project/quantumdynamics/</link><pubDate>Fri, 05 May 2023 00:00:00 +0000</pubDate><guid>https://bose-research-group.github.io/project/quantumdynamics/</guid><description>&lt;table>
&lt;thead>
&lt;tr>
&lt;th style="text-align: center">&lt;strong>Documentation&lt;/strong>&lt;/th>
&lt;th style="text-align: center">&lt;strong>Build Status&lt;/strong>&lt;/th>
&lt;th style="text-align: center">&lt;strong>Citation&lt;/strong>&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td style="text-align: center">&lt;a href="https://amartyabose.github.io/QuantumDynamics.jl/dev/" target="_blank" rel="noopener">
&lt;figure >
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img src="https://img.shields.io/badge/docs-dev-blue.svg" alt="Dev" loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;/figure>
&lt;/a>&lt;/td>
&lt;td style="text-align: center">&lt;a href="https://github.com/amartyabose/QuantumDynamics.jl/actions/workflows/test.yml" target="_blank" rel="noopener">
&lt;figure >
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img src="https://github.com/amartyabose/QuantumDynamics.jl/actions/workflows/test.yml/badge.svg?branch=main" alt="Run tests" loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;/figure>
&lt;/a>&lt;/td>
&lt;td style="text-align: center">&lt;a href="https://doi.org/10.1063/5.0151483" target="_blank" rel="noopener">
&lt;figure >
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img src="https://img.shields.io/badge/DOI-10.1063/5.0151483-blue.svg" alt="DOI" loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;/figure>
&lt;/a>&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;p>QuantumDynamics is an open-source software for the simulation of open quantum systems. Though written with performance in mind, QuantumDynamics provides a high throughput platform for experimentation with state-of-the-art approaches to method development.&lt;/p>
&lt;p>The primary problem that QuantumDynamics is aimed at solving is the simulation of the dynamics of a relatively small quantum system coupled to a dissipative environment. Such a system-solvent decomposed problem can typically be represented by the Hamiltonian:
$$\hat{H} = \hat{H}_0 + \hat{H}_\text{env}$$
where
$\hat{H}_0$ is the Hamiltonian of the isolated system and
$\hat{H}_\text{env}$ is the Hamiltonian corresponding to the environment and the interaction between the system and the environment.&lt;/p>
&lt;p>As demonstrated in the tutorials and the example codes, QuantumDynamics provides some approximate methods for simulating the dynamics of the system. However, the goal of this package is to provide access to more state-of-the-art techniques based on path integrals, tensor networks and other ideas in such a manner that all of these methods can be used as far as possible in a composable manner.&lt;/p>
&lt;h2 id="installation">Installation&lt;/h2>
&lt;p>The QuantumDynamics.jl package is registered. The installation can either be done by going into the Pkg REPL mode for Julia&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-bash" data-lang="bash">&lt;span class="line">&lt;span class="cl">~ julia&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-julia" data-lang="julia">&lt;span class="line">&lt;span class="cl">&lt;span class="n">julia&lt;/span>&lt;span class="o">&amp;gt;&lt;/span> &lt;span class="p">]&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="n">pkg&lt;/span>&lt;span class="o">&amp;gt;&lt;/span> &lt;span class="n">add&lt;/span> &lt;span class="n">QuantumDynamics&lt;/span>&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>
&lt;p>or by using the &lt;code>Pkg&lt;/code> package manager in a script:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-julia" data-lang="julia">&lt;span class="line">&lt;span class="cl">&lt;span class="n">julia&lt;/span>&lt;span class="o">&amp;gt;&lt;/span> &lt;span class="k">using&lt;/span> &lt;span class="n">Pkg&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="n">julia&lt;/span>&lt;span class="o">&amp;gt;&lt;/span> &lt;span class="n">Pkg&lt;/span>&lt;span class="o">.&lt;/span>&lt;span class="n">add&lt;/span>&lt;span class="p">(&lt;/span>&lt;span class="s">&amp;#34;QuantumDynamics&amp;#34;&lt;/span>&lt;span class="p">)&lt;/span>&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>
&lt;p>This installs the latest stable release of QuantumDynamics.jl. Currently new features are being implemented quite regularly. The stable release may not always be up-to-date. Please add the bleeding edge release version to take advantage of the new features by adding the git repository:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-bash" data-lang="bash">&lt;span class="line">&lt;span class="cl">~ julia
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-fallback" data-lang="fallback">&lt;span class="line">&lt;span class="cl">julia&amp;gt; ]
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">pkg&amp;gt; add https://github.com/amartyabose/QuantumDynamics.jl
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>Various parts of QuantumDynamics.jl depends on the BLAS and LAPACK libraries for efficient implementation of linear algebra routines. Julia generally uses OpenBLAS as a default implementation. The most common alternative is Intel&amp;rsquo;s Math Kernel Library (MKL), which can be used with QuantumDynamics.jl by first installing MKL.jl. In the actual script, MKL.jl should be loaded before loading QuantumDynamics.jl:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-julia" data-lang="julia">&lt;span class="line">&lt;span class="cl">&lt;span class="n">julia&lt;/span>&lt;span class="o">&amp;gt;&lt;/span> &lt;span class="k">using&lt;/span> &lt;span class="n">MKL&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="n">julia&lt;/span>&lt;span class="o">&amp;gt;&lt;/span> &lt;span class="k">using&lt;/span> &lt;span class="n">QuantumDynamics&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;h2 id="citation">Citation&lt;/h2>
&lt;p>If you use QuantumDynamics in your work, please cite the &lt;a href="https://pubs.aip.org/aip/jcp/article/158/20/204113/2892511/QuantumDynamics-jl-A-modular-approach-to" target="_blank" rel="noopener">QuantumDynamics.jl paper&lt;/a>:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-bibtex" data-lang="bibtex">&lt;span class="line">&lt;span class="cl">&lt;span class="nc">@article&lt;/span>&lt;span class="p">{&lt;/span>&lt;span class="nl">10.1063/5.0151483&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">author&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">{Bose, Amartya}&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">title&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">&amp;#34;{QuantumDynamics.jl: A modular approach to simulations of dynamics of open quantum systems}&amp;#34;&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">journal&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">{The Journal of Chemical Physics}&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">volume&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">{158}&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">number&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">{20}&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">year&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">{2023}&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">month&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">{05}&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">abstract&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">&amp;#34;{A simulation of the non-adiabatic dynamics of a quantum system coupled to dissipative environments poses significant challenges. New sophisticated methods are regularly being developed with an eye toward moving to larger systems and more complicated descriptions of solvents. Many of these methods, however, are quite difficult to implement and debug. Furthermore, trying to make the individual algorithms work together through a modular application programming interface can be quite difficult as well. We present a new, open-source software framework, QuantumDynamics.jl, designed to address these challenges. It provides implementations of a variety of perturbative and non-perturbative methods for simulating the dynamics of these systems. Most prominently, QuantumDynamics.jl supports hierarchical equations of motion and methods based on path integrals. An effort has been made to ensure maximum compatibility of the interface between the various methods. Additionally, QuantumDynamics.jl, being built on a high-level programming language, brings a host of modern features to explorations of systems, such as the usage of Jupyter notebooks and high level plotting, the possibility of leveraging high-performance machine learning libraries for further development. Thus, while the built-in methods can be used as end-points in themselves, the package provides an integrated platform for experimentation, exploration, and method development.}&amp;#34;&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">issn&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">{0021-9606}&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">doi&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">{10.1063/5.0151483}&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">url&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">{https://doi.org/10.1063/5.0151483}&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">note&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">{204113}&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl"> &lt;span class="na">eprint&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="s">{https://pubs.aip.org/aip/jcp/article-pdf/doi/10.1063/5.0151483/17794821/204113\_1\_5.0151483.pdf}&lt;/span>&lt;span class="p">,&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="p">}&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item><item><title>Multisite Tensor Network Path Integral</title><link>https://bose-research-group.github.io/project/mstnpi/</link><pubDate>Fri, 04 Nov 2022 20:27:50 +0530</pubDate><guid>https://bose-research-group.github.io/project/mstnpi/</guid><description>&lt;p>Simulating the dynamics of a quantum system coupled to a dissipative environment gets challenging because of the non-Markovian memory that needs to be accounted for. While iterative propagation and basic &lt;a href="https://bose-research-group.github.io/project/tensor-network-path-integral">&lt;strong>tensor network path integral (TNPI)&lt;/strong>&lt;/a> enable simulation of longer memory times, the dimensionalities of systems that can be simulated are still very limited. For extended systems the dimensionality grows exponentially with the number of &lt;em>sites&lt;/em> or &lt;em>monomers&lt;/em>, making these techniques untenable. Consider $50$ monomers described by two levels each. That implies that the Hilbert space has a dimensionality of $2^{50}$. This exponential growth of the dimensionality of the Hilbert space may be controlled if the dynamics can be restricted to a significantly smaller subspace. This is the case when considering the single particle subspace in a Frenkel-like process which conserves the number of particles. However, solving the 50-dimensional problem, while more feasible than the $2^{50}$ dimensional problem, is still a significant challenge.&lt;/p>
&lt;p>The standard &lt;a href="https://bose-research-group.github.io/project/tensor-network-path-integral">TNPI&lt;/a> decomposes the path integral expression only along the temporal dimension. However, to account for these extended systems, one needs to decompose it also along a spatial dimension, separating out the individual sites. Thus a two-dimensional tensor network decomposition is achieved. Contraction of this 2D tensor network after incorporation of the influence functional yields the time-dependent reduced density operator corresponding to the extended system in the presence of a dissipative environment. The simulations happen in the full Hilbert space allowing for a transparent inclusion of more involved effects like multi-photon process, multi-dimensional spectra, etc.&lt;/p></description></item><item><title>Exciton and Polaritonic Transport</title><link>https://bose-research-group.github.io/project/exciton-transport/</link><pubDate>Fri, 04 Nov 2022 17:04:49 +0530</pubDate><guid>https://bose-research-group.github.io/project/exciton-transport/</guid><description>&lt;h1 id="motivation">Motivation&lt;/h1>
&lt;p>The transfer of electronic excitation — the movement of an exciton — is among the most fundamental processes in both nature and technology. In photosynthetic complexes, this process captures sunlight and channels energy with near-unity efficiency. In molecular crystals, conjugated polymers, and organic microcavities, similar mechanisms underlie the performance of optoelectronic and quantum photonic devices. Despite the diversity of these systems, they all share a central theme: energy flow occurs in a quantum mechanical world shaped by structure, coherence, and dissipation.&lt;/p>
&lt;p>Our group studies how quantum coherence and environmental interactions organize the flow of excitation energy through complex molecular and hybrid systems. The goal is not only to quantify how efficiently energy moves, but to reveal how it moves — to uncover the competing routes of transport that emerge from the interplay of coherent delocalization, vibrational coupling, and environmental loss.&lt;/p>
&lt;h1 id="conceptual-background">Conceptual Background&lt;/h1>
&lt;p>Excitonic transport lies in the fascinating regime between classical diffusion and fully coherent quantum motion. When the coupling between sites in a molecular aggregate is strong compared to environmental noise, excitations delocalize over multiple chromophores, giving rise to wave-like dynamics. Conversely, strong coupling to phonons or solvent fluctuations can localize the excitation and drive it toward incoherent hopping. Real systems — biological, chemical, and synthetic — exist somewhere in between, and the key challenge is to understand how coherence and dissipation cooperate to produce efficient transport.&lt;/p>
&lt;p>Traditional theories such as Förster or Redfield describe these two limiting regimes separately. However, they often rely on perturbative or Markovian assumptions that fail in intermediate or strongly coupled regimes. To overcome this, we employ numerically exact open-system simulations based on path integrals, which treat system–environment coupling nonperturbatively and capture long-time memory effects. These methods are discussed in detail in &lt;a href="https://bose-research-group.github.io/project/tensor-network-path-integral/">Tensor Network Path Integral&lt;/a>, where we developed scalable algorithms to evaluate the Feynman–Vernon influence functional for extended molecular systems.&lt;/p>
&lt;p>Here, the focus is on how these rigorous dynamical tools can be used to map the routes of excitonic and polaritonic transport.&lt;/p></description></item><item><title>Tensor Network Path Integral</title><link>https://bose-research-group.github.io/project/tensor-network-path-integral/</link><pubDate>Fri, 04 Nov 2022 16:34:44 +0530</pubDate><guid>https://bose-research-group.github.io/project/tensor-network-path-integral/</guid><description>&lt;p>Simulations of real-time dynamics of quantum systems coupled with dissipative media is plagued by the curse of dimensionality. As a way to avoid the problem, many methods integrate out the bath and simulate the dynamics of the reduced density matrix. Such simulations are characterized by the presence of non-Markovian memory. Path integrals, through the use of Feynman-Vernon&amp;rsquo;s influence functional, provides a rigorous way of capturing this non-Markovian effect of the environment on the system.&lt;/p>
&lt;p>The most challenging aspect is that the cost of these calculations grow exponentially with the memory length. We classify approaches that utilize tensor networks to make path integral simulations more efficient as belonging to the &lt;strong>tensor network path integral (TNPI)&lt;/strong> family of methods. There can be many different kinds of tensor networks that are used. Time-evolved matrix product operators (TEMPO) is a particular one that uses matrix product states and matrix product operators for simulating real-time dynamics with Feynman-Vernon influence functional. We have developed a method called the &lt;strong>pairwise-connected tensor network path integral (PC-TNPI)&lt;/strong> as a generalization on these approaches. Additionally, the TNPI framework allows for further factorization of the system to deal with extended systems. This extension, called the &lt;strong>multisite tensor network path integral (MS-TNPI)&lt;/strong>, is described in &lt;a href="https://bose-research-group.github.io/project/mstnpi/">its own section&lt;/a>.&lt;/p></description></item></channel></rss>