23j_c/figs/energy.fig/Makefile
Ian Jauslin 3dc01c5a75 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
2025-02-06 15:10:06 -05:00

38 lines
1.1 KiB
Makefile

PROJECTNAME=energy
SIMPLESOLV=simplesolv
DATS=simpleq.dat medeq.dat bigeq.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.dat:
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 energy_rho > $@
medeq.dat:
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 energy_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=1;minlrho=-6;nlrho=100;maxlrho=2" -M anyeq -U exp 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