#! /usr/bin/env ruby

vars   = ["VelX", "VelZ", "Exner", "DelPotTemp", "Temp", "DelMixRtV", "MixRtC", "MixRtR"]
delt   = "--delt 120"
num    = "--num 70"
aspect = "--aspect 2.0"
dump   = "--dump"
cont   = "--nocont"

vars.each{|var|
  gturl   = ARGV[0]+"@"+var
  command = "~/work/deepconv/arare3/dcmodel-fig-make.rb"+" "+delt+" "+num+" " \
             +aspect+" "+dump+" "+" "+cont+" "+gturl
  p command
  system(command)
}
