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.
65 lines
3.2 KiB
Makefile
65 lines
3.2 KiB
Makefile
PROJECTNAME=hardcore_energy hardcore_compare hardcore_condensate
|
|
SIMPLEQ=simpleq
|
|
|
|
DATS=simpleq-energy.dat simpleq_soft-energy.dat mueq_soft-energy.dat bigeq_soft-energy.dat simpleq-compare.dat simpleq_soft-compare.dat mueq_soft-compare.dat bigeq_soft-compare.dat simpleq-condensate.dat simpleq_soft-condensate.dat mueq_soft-condensate.dat bigeq_soft-condensate.dat
|
|
|
|
PDFS=$(addsuffix .pdf, $(PROJECTNAME))
|
|
TEXS=$(addsuffix .tikz.tex, $(PROJECTNAME))
|
|
|
|
all: $(PDFS)
|
|
|
|
$(PDFS): $(DATS)
|
|
gnuplot $(patsubst %.pdf, %.gnuplot, $@) > $(patsubst %.pdf, %.tikz.tex, $@)
|
|
pdflatex -jobname $(basename $@) -file-line-error $(patsubst %.pdf, %.tikz.tex, $@)
|
|
|
|
simpleq-energy.dat:
|
|
julia -p 8 $(SIMPLEQ)/main.jl -p "N=12;P=8;J=5;nlrho=24;maxlrho=0.15" -M simpleq-hardcore energy_rho > $@
|
|
simpleq_soft-energy.dat:
|
|
julia $(SIMPLEQ)/main.jl -p "maxiter=100;maxlrho=0.15;v_a=512;v_b=1.2494804800401416" -U tent -M simpleq energy_rho > $@
|
|
mueq_soft-energy.dat:
|
|
julia $(SIMPLEQ)/main.jl -p "maxiter=100;maxlrho=0.15;v_a=512;v_b=1.2494804800401416" -U tent -M mueq energy_rho > $@
|
|
bigeq_soft-energy.dat:
|
|
julia -p 8 $(SIMPLEQ)/main.jl -p "N=12;P=8;eq=bigeq;maxiter=100;maxlrho=0.15;nlrho=64;v_a=512;v_b=1.2494804800401416" -U tent -M medeq energy_rho_init_prevrho > $@
|
|
|
|
simpleq-compare.dat:
|
|
julia -p 8 $(SIMPLEQ)/main.jl -p "N=12;P=8;J=5;rhos=1e-6,5e-6,1e-5,5e-5,1e-4,5e-4,1e-3,5e-3,1e-2,5e-2,1e-1,0.166,0.244" -M simpleq-hardcore energy_rho > $@-tmp
|
|
paste $@-tmp GBC99-energy.dat > $@
|
|
rm $@-tmp
|
|
simpleq_soft-compare.dat:
|
|
julia $(SIMPLEQ)/main.jl -p "maxiter=100;v_a=328.77174503097945;v_b=1.2479228505627133;rhos=1e-6,5e-6,1e-5,5e-5,1e-4,5e-4,1e-3,5e-3,1e-2,5e-2,1e-1,0.166,0.244" -U tent -M simpleq energy_rho > $@-tmp
|
|
paste $@-tmp GBC99-energy.dat > $@
|
|
rm $@-tmp
|
|
mueq_soft-compare.dat:
|
|
julia $(SIMPLEQ)/main.jl -p "maxiter=100;v_a=328.77174503097945;v_b=1.2479228505627133;rhos=1e-6,5e-6,1e-5,5e-5,1e-4,5e-4,1e-3,5e-3,1e-2,5e-2,1e-1,0.166,0.244" -U tent -M mueq energy_rho > $@-tmp
|
|
paste $@-tmp GBC99-energy.dat > $@
|
|
rm $@-tmp
|
|
bigeq_soft-compare.dat:
|
|
julia -p 8 $(SIMPLEQ)/main.jl -p "N=12;P=8;eq=bigeq;maxiter=100;v_a=328.77174503097945;v_b=1.2479228505627133;rhos=1e-6,5e-6,1e-5,5e-5,1e-4,5e-4,1e-3,5e-3,1e-2,5e-2,1e-1,0.166,0.244" -U tent -M medeq energy_rho_init_prevrho > $@-tmp
|
|
paste $@-tmp GBC99-energy.dat > $@
|
|
rm $@-tmp
|
|
|
|
simpleq-condensate.dat:
|
|
julia -p 8 $(SIMPLEQ)/main.jl -p "N=12;P=8;J=5;maxlrho=0.15;nlrho=24" -M simpleq-hardcore condensate_fraction_rho > $@
|
|
simpleq_soft-condensate.dat:
|
|
julia $(SIMPLEQ)/main.jl -p "maxiter=100;maxlrho=0.15;v_a=512;v_b=1.2494804800401416" -U tent -M simpleq condensate_fraction_rho > $@
|
|
mueq_soft-condensate.dat:
|
|
julia $(SIMPLEQ)/main.jl -p "maxiter=100;maxlrho=0.15;v_a=512;v_b=1.2494804800401416" -U tent -M mueq condensate_fraction_rho > $@
|
|
bigeq_soft-condensate.dat:
|
|
julia -p 8 $(SIMPLEQ)/main.jl -p "N=12;P=8;eq=bigeq;maxiter=100;maxlrho=0.15;nlrho=64;v_a=512;v_b=1.2494804800401416" -U tent -M medeq condensate_fraction_rho > $@
|
|
|
|
install: $(PDFS)
|
|
cp $^ $(INSTALLDIR)/
|
|
|
|
clean-aux:
|
|
rm -f $(addsuffix .tikz.tex, $(PROJECTNAME))
|
|
rm -f $(addsuffix .aux, $(PROJECTNAME))
|
|
rm -f $(addsuffix .log, $(PROJECTNAME))
|
|
|
|
clean-dat:
|
|
rm -f $(DATS)
|
|
|
|
clean-tex:
|
|
rm -f $(PDFS)
|
|
|
|
clean: clean-aux clean-tex
|