Location: Andre's Hodgkin Huxley model @ 8c5884f51f82 / experiments / runAll.pl

Author:
David Nickerson <nickerso@users.sourceforge.net>
Date:
2014-08-19 11:39:26+12:00
Desc:
change one of the parameters to a mathematical equation for use in developing model compaction
Permanent Source URI:
https://models.physiomeproject.org/w/andre/HH/rawfile/8c5884f51f82c4eadf853d284cd9bdd7b3b21e86/experiments/runAll.pl

#!/usr/bin/perl

use strict;

my $exe = "$ENV{HOME}/sf.net/CellMLSimulator/build/release/CellMLSimulator";
my $output = "generated";

mkdir $output;

my @experiments = ("IK-gating-kinetics","INa-gating-kinetics",
                   "periodic-stimulus","voltage-clamp");

foreach my $exp (@experiments) {
  my $o = $output . "/" . $exp;
  my $g = $exp . "-graphs.xml";
  mkdir $o;
  system("$exe --graph-directory=$o --reference-description --data=$o/data.h5 $g");
}