In [1]:
include("../src/Wang_Landau.jl")
Out[1]:
In [2]:
using PyPlot
In [2]:
@time xs, ys, thetas, free_paths, free_path_distribution = explore_phase_space(0.3, 0.1, 1000000);
In [38]:
plot(xs, ys, alpha=0.5)
axis("image")
Out[38]:
In [48]:
Out[48]:
In [11]:
h = hist(free_paths[free_paths.<1000], 100)
h1, h2 = h
loglog(h1[1:end-1], h2)
Out[11]:
In [8]:
plot(free_path_distribution, "o-")
yscale("log")
xscale("log")
In [41]:
thetas
Out[41]:
In [42]:
plot(thetas)
Out[42]:
In [ ]: