manus_continuum_granular1_exp

experiments for first paper with continuum granular model
git clone git://src.adamsgaard.dk/manus_continuum_granular1_exp
Log | Files | Refs | Submodules | README | LICENSE Back to index

Makefile (464B)


      1 BIN = ../1d_fd_simple_shear/1d_fd_simple_shear
      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