Update to v1.0:

Major overhaul: All sections have been changed and improved.

  Added: Computation of the condensate fraction

  Added: Discussion and plots of correlation function and momentum distribution

  Added: Section on numerical computation

  Added: Appendices on functional analysis

  Added: Detailed analysis of the operator K_e

  Change: Parameters for numerical simulations.

  Change: Renamed "Simplified approach" to "Lieb's simplified approach"

  Added: More bibliography

  Added: Acknowledgements
This commit is contained in:
2025-02-06 15:10:06 -05:00
parent 3bd7865e45
commit 3dc01c5a75
28 changed files with 3681 additions and 1170 deletions

View File

@ -1,6 +1,6 @@
PROJECTNAME=condensate
SIMPLESOLV= # path/to/simplesolv
SIMPLESOLV=simplesolv
DATS=simpleq.dat medeq.dat bigeq.dat
PDFS=$(addsuffix .pdf, $(PROJECTNAME))
@ -13,11 +13,11 @@ $(PDFS): $(DATS)
pdflatex -jobname $(basename $@) -file-line-error $(patsubst %.pdf, %.tikz.tex, $@)
simpleq.dat:
julia $(SIMPLESOLV)/main.jl -p "eq=simpleq;tolerance=1e-11;order=100;maxiter=100;v_a=0.5;minlrho=-6;nlrho=100;maxlrho=2" -M easyeq -U exp condensate_fraction_rho > $@
julia $(SIMPLESOLV)/main.jl -p "eq=simpleq;tolerance=1e-11;order=100;maxiter=100;v_a=1;minlrho=-6;nlrho=100;maxlrho=2" -M easyeq -U exp condensate_fraction_rho > $@
medeq.dat:
julia $(SIMPLESOLV)/main.jl -p "eq=medeq;tolerance=1e-11;order=100;maxiter=100;v_a=0.5;minlrho=-6;nlrho=100;maxlrho=2" -M easyeq -U exp condensate_fraction_rho > $@
julia $(SIMPLESOLV)/main.jl -p "eq=medeq;tolerance=1e-11;order=100;maxiter=100;v_a=1;minlrho=-6;nlrho=100;maxlrho=2" -M easyeq -U exp condensate_fraction_rho > $@
bigeq.dat:
julia -p 8 $(SIMPLESOLV)/main.jl -p "eq=bigeq;N=12;P=8;J=10;tolerance=1e-11;maxiter=21;v_a=0.5;minlrho=-6;nlrho=100;maxlrho=2" -M anyeq -U exp condensate_fraction_rho > $@
julia -p 8 $(SIMPLESOLV)/main.jl -p "eq=bigeq;N=12;P=8;J=10;tolerance=1e-11;maxiter=21;v_a=1;minlrho=-6;nlrho=100;maxlrho=2" -M anyeq -U exp condensate_fraction_rho > $@
install: $(PDFS)