Skip to content

Commit

Permalink
fixed some missing sys
Browse files Browse the repository at this point in the history
  • Loading branch information
Zitzeronion committed Feb 21, 2024
1 parent 117cdce commit f092277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/Rivulet_stability.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function rivulet_run(
dist = zeros(sys.Lx, sys.Ly)
for i in 1:sys.Lx
for j in 1:sys.Ly
dist[i,j] = round(Int, sqrt((i - Lx÷2)^2 + (j - Ly÷2)^2))
dist[i,j] = round(Int, sqrt((i - sys.Lx÷2)^2 + (j - sys.Ly÷2)^2))
end
end
theta .= π/(6R) .* dist .+ π/18
Expand Down

0 comments on commit f092277

Please sign in to comment.