Skip to content

Commit a07b85a

Browse files
Create bibliography file (#10)
1 parent c2619a2 commit a07b85a

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ include _environment
66
default: help
77

88
render:
9-
${JULIA} --project=@. -e 'import Pkg; Pkg.resolve(); Pkg.instantiate(); Pkg.precompile(); using QuantumToolbox, HierarchicalEOM;'
10-
${JULIA} --project=@. -e 'using QuantumToolbox, HierarchicalEOM;'
9+
${JULIA} --project=@. -e 'import Pkg; Pkg.resolve();'
1110
${QUARTO} render
1211

1312
preview:

QuantumToolbox.jl/lowrank.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ date-format: iso
77
engine: julia
88
---
99

10-
In this tutorial, we will show how to solve the master equation using the low-rank method. For a detailed explanation of the method, we recommend to read the article: [Phys. Rev. Research 6, 023072 (2024)](https://doi.org/10.1103/PhysRevResearch.6.023072).
10+
In this tutorial, we will show how to solve the master equation using the low-rank method. For a detailed explanation of the method, we recommend to read the Ref. [@gravina2024adaptive].
1111

1212
As a test, we will consider the dissipative Ising model with a transverse field. The Hamiltonian is given by
1313

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ make render
2525
or
2626
```shell
2727
source _environment
28-
julia --project=@. -e 'import Pkg; Pkg.resolve(); Pkg.instantiate(); Pkg.precompile()'
29-
julia --project=@. -e 'using QuantumToolbox, HierarchicalEOM;'
28+
julia --project=@. -e 'import Pkg; Pkg.resolve();'
3029
quarto render
3130
```
3231

_environment

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
JULIA_NUM_THREADS=16
1+
JULIA_NUM_THREADS=4

_quarto.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ website:
2424
- icon: github
2525
href: https://github.com/qutip/qutip-julia-tutorials
2626

27+
bibliography: bibliography.bib
28+
2729
format:
2830
html:
2931
theme:

bibliography.bib

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@article{gravina2024adaptive,
2+
title = {{Adaptive variational low-rank dynamics for open quantum systems}},
3+
author = {Gravina, Luca and Savona, Vincenzo},
4+
journal = {Phys. Rev. Res.},
5+
volume = {6},
6+
issue = {2},
7+
pages = {023072},
8+
numpages = {18},
9+
year = {2024},
10+
month = {Apr},
11+
publisher = {American Physical Society},
12+
doi = {10.1103/PhysRevResearch.6.023072}
13+
}

0 commit comments

Comments
 (0)