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

run.sh (355B)


      1 #!/bin/sh
      2 
      3 ridgesim() {
      4 	id="manyfloes${1}"
      5 	julia ridging_simulation.jl \
      6 		--many_floes true \
      7 		--nx1 "$2" --ny1 "$3" \
      8 		--compressive_velocity "$4" \
      9 		"$id" > "${id}.log" 2>&1 &
     10 }
     11 
     12 ridgesim 1 100 3 0.1
     13 ridgesim 2  50 3 0.1
     14 ridgesim 3 100 5 0.1
     15 ridgesim 4  50 5 0.1
     16 ridgesim 5 100 3 0.2
     17 ridgesim 6  50 3 0.2
     18 ridgesim 7 100 5 0.2
     19 ridgesim 8  50 5 0.2