tMakefile - seaice-experiments - sea ice experiments using Granular.jl
 (HTM) git clone git://src.adamsgaard.dk/seaice-experiments
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       tMakefile (708B)
       ---
            1 JULIA=julia --procs 1 --optimize=3 --math-mode=fast --color=yes
            2 #JULIA=julia --procs 1 --color=yes
            3 PREFIX=ridging
            4 SCRIPT=ridging_simulation.jl
            5 
            6 default: \
            7         test
            8 
            9 .PHONY: test
           10 test: $(SCRIPT)
           11         $(JULIA) $< \
           12                 --compressive_velocity=0.1 \
           13                 "test"
           14 
           15 .PHONY: many_floes
           16 many_floes: $(SCRIPT)
           17         $(JULIA) $< \
           18     --compressive_velocity=0.05 \
           19     --nx1=100 \
           20     --ny1=5 \
           21     --tensile_strength=1e24 \
           22     --shear_strength=1e24 \
           23     --many_floes=true \
           24     "many_floes-seed1-nx1_100-ny1_5-cv_0.05"
           25 
           26 .PHONY: many_floes_plastic
           27 many_floes_plastic: $(SCRIPT)
           28         $(JULIA) $< \
           29     --compressive_velocity=0.05 \
           30     --nx1=100 \
           31     --ny1=5 \
           32     --many_floes=true \
           33     "many_floes_plastic-seed1-nx1_100-ny1_5-cv_0.05"