Skip to content

Commit 0b670e5

Browse files
committed
final formatting fix
1 parent 2dbdf4b commit 0b670e5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tutorials-v5/miscellaneous/JCHM-tutorial.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ We'll start by defining the system parameters. These determine the physical prop
7373

7474
```python
7575
# System parameters
76-
N = 5 # Number of Fock states per cavity (reduced for computational efficiency)
76+
N = 5 # Number of Fock states per cavity(reduced for computational efficiency)
7777
omega_c = 1.0 # Cavity frequency (sets the energy scale)
7878
omega_a = 1.0 # Atomic transition frequency (in resonance with cavities)
7979
g = 0.3 # Atom-cavity coupling strength
@@ -154,7 +154,7 @@ def create_three_site_jchm(N, omega_c, omega_a, g, J):
154154
H_atom = 0.5 * omega_a * (sz1 + sz2 + sz3)
155155

156156
# 3. Cavity-atom interaction terms:
157-
# These terms represent the interaction between cavities and atoms (absorption/emission)
157+
# These terms represent the interaction between cavities and atom
158158
H_interaction = g * (
159159
(c1.dag() * sm1 + c1 * sp1)
160160
+ (c2.dag() * sm2 + c2 * sp2)
@@ -550,7 +550,5 @@ The JCHM has important applications in quantum simulation, quantum optics, and q
550550
## Software version
551551

552552
```python
553-
from qutip import about
554-
555553
about()
556554
```

0 commit comments

Comments
 (0)