Skip to content

Commit

Permalink
Fix bug in last spin_stroboscope.f90 commit. (#1191)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSagan committed Sep 14, 2024
1 parent 0b651c0 commit 8168fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bsim/spin_stroboscope/spin_stroboscope.f90
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ program spin_stroboscope
orbit(0) = start_orb

do i = 1, 3
mode_is_oscillating(i) = (delta(2*i-1) /= 0 .and. delta(2*i) /= 0)
mode_is_oscillating(i) = (delta(2*i-1) /= 0 .or. delta(2*i) /= 0)
enddo
if (.not. rf_on) mode_is_oscillating(3) = .false.

Expand Down

0 comments on commit 8168fc9

Please sign in to comment.