Update to v0.2:

Added: Comparison of the energy for two different potentials that
  share the same scattering length and integral (new figure).

  Added: Lee-Huang-Yang prediction in figures.

  Fixed: Wrong exponent in definition of correlation function.

  Added: More precise comparison of the big equation prediction for the
  hard core potential (new figure).

  Changed: Miscellaneous minor fixes and clarifications.
This commit is contained in:
2021-03-01 16:51:33 -05:00
parent 201099f9d0
commit 6a019dc4f9
14 changed files with 291 additions and 62 deletions

View File

@ -1,6 +1,6 @@
PROJECTNAME=cmp_energy16 cmp_energy1
SIMPLEQ=simpleq
SIMPLEQ=~/Work/Research/2018+bose_gas/cmp/simpleq
DATS= simpleq16.dat mueq16.dat bigeq16.dat simpleq1.dat mueq1.dat bigeq1.dat
PDFS=$(addsuffix .pdf, $(PROJECTNAME))
@ -13,42 +13,28 @@ $(PDFS): $(DATS)
pdflatex -jobname $(basename $@) -file-line-error $(patsubst %.pdf, %.tikz.tex, $@)
bigeq16.dat:
for rho in 1e-3 5e-3 1e-2 2e-2 1e-1 1e+0; do \
echo -n $$rho " " >> $@-tmp ;\
julia $(SIMPLEQ)/main.jl -p "eq=bigeq;N=12;P=8;J=10;maxiter=100;v_a=16;rho=$$rho;minlrho=-6;nlrho=50" -M medeq energy >> $@-tmp ;\
done
julia $(SIMPLEQ)/main.jl -p "eq=bigeq;N=12;P=8;J=10;maxiter=100;v_a=16;minlrho=-6;nlrho=50;rhos=1e-3,5e-3,1e-2,2e-2,1e-1,1e+0" -M medeq energy > $@-tmp
paste $@-tmp 2020-08-27+16.dat > $@
rm $@-tmp
simpleq16.dat:
for lrho in -3 -2.3010299956639813 -2 -1.6989700043360187 -1 0; do \
julia $(SIMPLEQ)/main.jl -p "tolerance=1e-11;order=100;maxiter=100;v_a=16;minlrho=$$lrho;nlrho=1" -M simpleq energy_rho >> $@-tmp ;\
done
julia $(SIMPLEQ)/main.jl -p "tolerance=1e-11;order=100;maxiter=100;v_a=16;rhos=1e-3,5e-3,1e-2,2e-2,1e-1,1e+0" -M simpleq energy_rho > $@-tmp
paste $@-tmp 2020-08-27+16.dat > $@
rm $@-tmp
mueq16.dat:
for lrho in -3 -2.3010299956639813 -2 -1.6989700043360187 -1 0; do \
julia $(SIMPLEQ)/main.jl -p "tolerance=1e-11;order=100;maxiter=100;v_a=16;minlrho=$$lrho;nlrho=1" -M mueq energy_rho >> $@-tmp ;\
done
julia $(SIMPLEQ)/main.jl -p "tolerance=1e-11;order=100;maxiter=100;v_a=16;rhos=1e-3,5e-3,1e-2,2e-2,1e-1,1e+0" -M mueq energy_rho > $@-tmp
paste $@-tmp 2020-08-27+16.dat > $@
rm $@-tmp
bigeq1.dat:
for rho in 1e-6 1e-4 1e-3 5e-3 1e-2 1.5e-2 2e-2 5e-2 1e-1 1.0 1e1 5e1; do \
echo -n $$rho " " >> $@-tmp ;\
julia $(SIMPLEQ)/main.jl -p "N=12;P=8;J=10;maxiter=100;v_a=1;rho=$$rho;minlrho=-6;nlrho=50;eq=bigeq" -M medeq energy >> $@-tmp ;\
done
julia $(SIMPLEQ)/main.jl -p "N=12;P=8;J=10;maxiter=100;v_a=1;minlrho=-6;nlrho=50;eq=bigeq;rhos=1e-6,1e-4,1e-3,5e-3,1e-2,1.5e-2,2e-2,5e-2,1e-1,1.0,1e1,5e1" -M medeq energy > $@-tmp
paste $@-tmp 2020-10-15+energy.dat > $@
rm $@-tmp
simpleq1.dat:
for lrho in -6 -4 -3 -2.3010299956639813 -2 -1.8239087409443189 -1.6989700043360187 -1.3010299956639813 -1 0 1 1.6989700043360187; do\
julia $(SIMPLEQ)/main.jl -p "tolerance=1e-11;order=100;maxiter=100;v_a=1;minlrho=$$lrho;nlrho=1" -M simpleq energy_rho >> $@-tmp ;\
done
julia $(SIMPLEQ)/main.jl -p "tolerance=1e-11;order=100;maxiter=100;v_a=1;rhos=1e-6,1e-4,1e-3,5e-3,1e-2,1.5e-2,2e-2,5e-2,1e-1,1.0,1e1,5e1" -M simpleq energy_rho > $@-tmp
paste $@-tmp 2020-10-15+energy.dat > $@
rm $@-tmp
mueq1.dat:
for lrho in -6 -4 -3 -2.3010299956639813 -2 -1.8239087409443189 -1.6989700043360187 -1.3010299956639813 -1 0 1 1.6989700043360187; do\
julia $(SIMPLEQ)/main.jl -p "tolerance=1e-11;order=100;maxiter=100;v_a=1;minlrho=$$lrho;nlrho=1" -M mueq energy_rho >> $@-tmp ;\
done
julia $(SIMPLEQ)/main.jl -p "tolerance=1e-11;order=100;maxiter=100;v_a=1;rhos=1e-6,1e-4,1e-3,5e-3,1e-2,1.5e-2,2e-2,5e-2,1e-1,1.0,1e1,5e1" -M mueq energy_rho >> $@-tmp ;\
paste $@-tmp 2020-10-15+energy.dat > $@
rm $@-tmp