tMakefile - cngf-pf-exp1 - experiments for first paper with continuum granular model
HTML git clone git://src.adamsgaard.dk/manus_continuum_granular1_exp
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
tMakefile (442B)
---
1 BIN = ../cngf-pf/cngf-pf
2 FIG != basename $(PWD)
3
4 default: ../$(FIG).pdf
5
6 sim.output00000.txt: $(BIN)
7 /bin/sh -c '\
8 ./$(BIN) -L 8.0 \
9 -n 200e3 \
10 -f 0.40 \
11 -F \
12 -k 2e-17 \
13 -O 100e3 \
14 -a 80e3 \
15 -q $$( echo "1.0/(3600*24)" | bc -l ) \
16 -I $$( echo "60*10" | bc -l ) \
17 -e $$( echo "3600*24*7" | bc -l ) sim'
18
19 ../$(FIG).pdf: fig.gp sim.output00000.txt
20 gnuplot fig.gp > $@
21
22 clean:
23 rm -f *.txt
24 rm -f ../$(FIG).pdf
25
26 .PHONY: default clean