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
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PROJECTNAME=correlation0001 correlation02
 | 
						|
 | 
						|
SIMPLESOLV=simplesolv
 | 
						|
 | 
						|
DATS=bigeq02.dat medeq02.dat simpleq02.dat bigeq0001.dat simpleq0001.dat medeq0001.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, $@)
 | 
						|
 | 
						|
simpleq0001.dat:
 | 
						|
	julia $(SIMPLESOLV)/main.jl -p "rho=1e-4;minlrho_init=-6;nlrho_init=20;v_a=16;N=12;P=8;J=10;tolerance=1e-11;maxiter=21;xmin=0;nx=100;xmax=55" -M simpleq-Kv -U exp 2pt > $@
 | 
						|
medeq0001.dat:
 | 
						|
	julia $(SIMPLESOLV)/main.jl -p "rho=1e-4;minlrho_init=-6;nlrho_init=20;v_a=16;eq=medeq;N=12;P=8;J=10;tolerance=1e-11;maxiter=21;xmin=0;nx=100;xmax=55" -M anyeq -U exp 2pt > $@
 | 
						|
bigeq0001.dat:
 | 
						|
	julia $(SIMPLESOLV)/main.jl -p "rho=1e-4;minlrho_init=-6;nlrho_init=20;v_a=16;eq=bigeq;N=12;P=8;J=10;tolerance=1e-11;maxiter=21;xmin=0;nx=100;xmax=55" -M anyeq -U exp 2pt > $@
 | 
						|
 | 
						|
simpleq02.dat:
 | 
						|
	julia $(SIMPLESOLV)/main.jl -p "rho=2e-2;minlrho_init=-6;nlrho_init=60;v_a=16;N=12;P=8;J=10;tolerance=1e-11;maxiter=21;xmin=0;nx=100;xmax=10" -M simpleq-Kv -U exp 2pt > $@
 | 
						|
medeq02.dat:
 | 
						|
	julia $(SIMPLESOLV)/main.jl -p "rho=2e-2;minlrho_init=-6;nlrho_init=60;v_a=16;eq=medeq;N=12;P=8;J=10;tolerance=1e-11;maxiter=21;xmin=0;nx=100;xmax=10" -M anyeq -U exp 2pt > $@
 | 
						|
bigeq02.dat:
 | 
						|
	julia $(SIMPLESOLV)/main.jl -p "rho=2e-2;minlrho_init=-6;nlrho_init=60;v_a=16;eq=bigeq;N=12;P=8;J=10;tolerance=1e-11;maxiter=21;xmin=0;nx=100;xmax=10" -M anyeq -U exp 2pt > $@
 | 
						|
 | 
						|
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
 |