-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,26 @@ | ||
# MPSDynamics.jl Documentation | ||
# Introduction | ||
|
||
The `MPSDynamics.jl` package provides an easy to use interface for performing tensor network simulations on matrix product states (MPS) and tree tensor network (TTN) states. | ||
Written in the Julia programming language, `MPSDynamics.jl` is a versatile open-source package providing a choice of several variants of the Time-Dependent Variational Principle (TDVP) method for time evolution. | ||
The package also provides strong support for the measurement of observables, as well as the storing and logging of data, which makes it a useful tool for the study of many-body physics. | ||
The package has been developed with the aim of studying non-Markovian open system dynamics at finite temperature using the state-of-the-art numerically exact Thermalized-Time Evolving Density operator with Orthonormal Polynomials Algorithm (T-TEDOPA) based on environment chain mapping. | ||
However the methods implemented can equally be applied to other areas of physics. | ||
|
||
## Table of Contents | ||
|
||
```@contents | ||
``` | ||
|
||
## Installation | ||
|
||
The package may be installed by typing the following into a Julia REPL | ||
|
||
```julia | ||
] add https://github.com/shareloqs/MPSDynamics.git | ||
``` | ||
|
||
## Functions | ||
|
||
```@autodocs | ||
Modules = [MPSDynamics] | ||
``` | ||
``` |