Ian Jauslin
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jauslin <ian@jauslin.org>2022-02-20 19:24:31 -0500
committerIan Jauslin <ian@jauslin.org>2022-02-20 19:24:31 -0500
commit41a4191aeead222cfe89de8ab595617fdea3524a (patch)
treef05a9a4e9818ca30a8480271b3dc89d2ff8c8261 /figs/condensate.fig/Makefile
As presented at the University of Milan on 2022-02-21HEADv1.0master
Diffstat (limited to 'figs/condensate.fig/Makefile')
-rw-r--r--figs/condensate.fig/Makefile34
1 files changed, 34 insertions, 0 deletions
diff --git a/figs/condensate.fig/Makefile b/figs/condensate.fig/Makefile
new file mode 100644
index 0000000..c45de65
--- /dev/null
+++ b/figs/condensate.fig/Makefile
@@ -0,0 +1,34 @@
+PROJECTNAME=condensate
+
+PDFS=$(addsuffix .pdf, $(PROJECTNAME))
+DATS= simpleq.dat bigeq.dat
+
+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 $(SIMPLEQ)/main.jl -p "tolerance=1e-11;order=100;maxiter=100;v_a=1" -M simpleq condensate_fraction > $@
+bigeq.dat:
+ julia -p 8 $(SIMPLEQ)/main.jl -p "eq=bigeq;N=12;P=8;v_a=1" -M medeq condensate_fraction > $@
+
+install: $(PDFS)
+ cp $^ $(INSTALLDIR)/
+
+$(LIBS):
+ ln -fs libs/$@ ./
+
+clean-libs:
+ rm -f $(LIBS)
+
+clean-aux:
+ rm -f $(addsuffix .aux, $(PROJECTNAME))
+ rm -f $(addsuffix .log, $(PROJECTNAME))
+ rm -f $(addsuffix .tex, $(PROJECTNAME))
+
+clean-tex:
+ rm -f $(PDFS)
+
+clean: clean-libs clean-aux clean-tex