Ian Jauslin
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'figs/2pt_fourier_max.fig/Makefile')
-rw-r--r--figs/2pt_fourier_max.fig/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/figs/2pt_fourier_max.fig/Makefile b/figs/2pt_fourier_max.fig/Makefile
new file mode 100644
index 0000000..305450f
--- /dev/null
+++ b/figs/2pt_fourier_max.fig/Makefile
@@ -0,0 +1,35 @@
+PROJECT=$(basename $(wildcard *.gnuplot))
+
+SIMPLESOLV=simplesolv~/Work/Research/2018+bose_gas/cmp/simplesolv/source/src
+
+all: $(addsuffix .pdf, $(PROJECT))
+
+define gnuplot2pdf
+ gnuplot $(1).gnuplot > $(1).tikz.tex
+ pdflatex -jobname $(1) -file-line-error $(1).tikz.tex
+endef
+
+define bigeq_run
+ julia -p 16 $(SIMPLESOLV)/main.jl -p "eq=bigeq;N=18;P=12;J=15;maxiter=100;v_a=8;minlrho=-5;maxlrho=-0.53;nlrho=64;window_L=100;dk=1e-4;maxstep=0.1" -M anyeq 2pt_fourier_max_rho > 2pt_fourier_max.dat
+endef
+
+2pt_fourier_max.dat:
+ $(call bigeq_run)
+
+DATS=2pt_fourier_max.dat
+
+2pt_fourier_max.pdf: 2pt_fourier_max.dat
+ $(call gnuplot2pdf,$(basename $@))
+
+
+clean-aux:
+ rm -f $(addsuffix .tikz.tex, $(PROJECT))
+ rm -f *.aux *.log
+
+clean-dat:
+ rm -f $(DATS)
+
+clean-pdf:
+ rm -f $(addsuffix .pdf, $(PROJECT))
+
+clean: clean-aux clean-pdf