Skip to content

Commit

Permalink
removed brokenish packages that are not being used anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
grasingerm committed Sep 10, 2024
1 parent 19bf812 commit a328ede
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion 2D/inc/eap_chain.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using Distributions;
using NLsolve;
using ForwardDiff;

include(joinpath(@__DIR__, "dipole_response.jl"));

Expand Down
6 changes: 3 additions & 3 deletions 2D/run/Ising_2024-04-08.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ K2s = [0.5; 1.0; 2.0];
kTs = [1.0];
Fxs = [0.0; 0.1; 0.2; 0.3; 0.4; 0.5; 1.0; 2.0; 3.0; 4.0; 5.0; 7.5; 10.0; 12.5; 15.0; 20.0; 25.0; 30.0;
35.0; 40.0; 45.0; 50.0; 60.0; 70.0; 80.0; 90.0; 100.0; 125.0; 150.0;
175.0; 200.0; 250.0; 300.0; 400.0];
175.0; 200.0; 250.0; 300.0; 400.0; 500.0];
Fzs = [0.0];
#ns = Int[100; 200; 500];
ns = Int[100];
#bs = [0.5; 1.0; 2.0];
bs = [0.5; 1.0];
runs = 0:9
runs = 1:25
for b in bs, n in ns, Fx in Fxs, Fz in Fzs, kT in kTs, E0 in E0s, K1 in K1s, K2 in K2s, run in runs
push!(cases, Dict(:E0 => E0, :K1 => K1, :K2 => K2,
:kT => kT, :Fz => Fz,
Expand All @@ -45,7 +45,7 @@ pmap(case -> begin;
outfile = joinpath(workdir, "$(prefix(case)).out");
if !isfile(outfile)
println("Running case: $case.");
command = `/home/grasingerm/julia-1.6.7/bin/julia -O 3 mcmc_clustering_eap_chain.jl --chain-type dielectric --energy-type Ising -b $(case[:b]) --E0 $(case[:E0]) --K1 $(case[:K1]) --K2 $(case[:K2]) --kT $(case[:kT]) --Fz $(case[:Fz]) --Fx $(case[:Fx]) -n $(case[:n]) --num-steps 10000000 --burn-in 2000000 -v 2 --prefix $(joinpath(workdir, prefix(case)))`;
command = `/home/grasinmj/julia-1.10.4/bin/julia -O 3 mcmc_clustering_eap_chain.jl --chain-type dielectric --energy-type Ising -b $(case[:b]) --E0 $(case[:E0]) --K1 $(case[:K1]) --K2 $(case[:K2]) --kT $(case[:kT]) --Fz $(case[:Fz]) --Fx $(case[:Fx]) -n $(case[:n]) --num-steps 10000000 --burn-in 200000 -v 2 --prefix $(joinpath(workdir, prefix(case)))`;
output = read(command, String);
write(outfile, output);
else
Expand Down
2 changes: 0 additions & 2 deletions scripts/install_dependencies.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ import Pkg;
"ArgParse";
"Distributions";
"Logging";
"ProfileView";
"DecFP";
"Quadmath";
"NLsolve";
"ForwardDiff";
"Plots";
"Optim";
"NLopt";
Expand Down

0 comments on commit a328ede

Please sign in to comment.