seaice-experiments

sea ice experiments using Granular.jl
git clone git://src.adamsgaard.dk/seaice-experiments # fast
git clone https://src.adamsgaard.dk/seaice-experiments.git # slow
Log | Files | Refs | README | LICENSE Back to index

Makefile (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"