diff options
author | Ian Jauslin <ian@jauslin.org> | 2021-03-01 16:51:33 -0500 |
---|---|---|
committer | Ian Jauslin <ian@jauslin.org> | 2021-03-01 16:51:33 -0500 |
commit | 6a019dc4f91c3db3731193aa0351444462b44a24 (patch) | |
tree | ac7cb7c0347e8f2cd05c5fd18ba36da6fdc44d47 /figs/compare_pots.fig/Makefile | |
parent | 201099f9d091e4cb1cf598a5470716c49b2acd3d (diff) |
Update to v0.2: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.
Diffstat (limited to 'figs/compare_pots.fig/Makefile')
-rw-r--r-- | figs/compare_pots.fig/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/figs/compare_pots.fig/Makefile b/figs/compare_pots.fig/Makefile new file mode 100644 index 0000000..9938c4e --- /dev/null +++ b/figs/compare_pots.fig/Makefile @@ -0,0 +1,36 @@ +PROJECTNAME=compare_pots + +SIMPLEQ=simpleq + +DATS=bigeq_tent.dat bigeq_exp.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, $@) + +bigeq_tent.dat: + julia -p 8 $(SIMPLEQ)/main.jl -p "N=12;P=8;J=10;maxiter=100;v_a=32;minlrho=-4;nlrho=100;maxlrho=4;eq=bigeq" -U tent -M medeq energy_rho > $@ + +bigeq_exp.dat: + # rescale rho by beta^3~324.860 + julia -p 8 $(SIMPLEQ)/main.jl -p "N=12;P=8;J=10;maxiter=100;v_a=19.1968;minlrho=-6.512;nlrho=100;maxlrho=1.488;eq=bigeq" -M medeq energy_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 |