From fba3eb10e02f0b4406c1baf246daa94006c66cf8 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Fri, 14 Feb 2020 07:43:33 -0500 Subject: Added settings in Ising to deplete spins for Blume-Capel sims --- spheres_infinite.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'spheres_infinite.cpp') diff --git a/spheres_infinite.cpp b/spheres_infinite.cpp index 026486e..5287a84 100644 --- a/spheres_infinite.cpp +++ b/spheres_infinite.cpp @@ -179,8 +179,8 @@ int main(int argc, char* argv[]) { return H * s.x.norm(); }; - auto g1 = eGen(0.5); - auto g2 = mGen(0.2); + auto g1 = eGen(1); + auto g2 = mGen(0.5); animation A(L, 750, argc, argv); model sphere(1.0, Z, B); @@ -192,7 +192,7 @@ int main(int argc, char* argv[]) { for (unsigned i = 0; i < sphere.s.size(); i++) { Spin* ss = new Spin(); ss->x = {(i / nx) * L / nx, (i % nx) * L / nx}; - ss->s = rng.uniform(0.25, 0.45); + ss->s = rng.uniform(0.45, 0.45); sphere.s[i] = ss; sphere.dict.insert(ss); } -- cgit v1.2.3-54-g00ecf