/* * Nucleocytoplasmic oscillations of the yeast transcription factor * Msn2: evidence for periodic PKA activation * * Model Status * * This is an import for the model "garmendiatorres_2007_1.1model.cellml". * It is used to define a reoccuring structure within the model * and may be used for multiple equations in the model. This file * is known to run only in OpenCell in conjunction with the base * file. */ import nsrunit; unit conversion on; unit minute=60 second^1; unit per_minute=.01666667 second^(-1); math main { //Warning: the following variables were set 'extern' or given // an initial value of '0' because the model would otherwise be // underdetermined: Va, Vb, A, B, one, C, D, y_init realDomain t minute; t.min=0; extern t.max; extern t.delta; extern real Va per_minute; extern real Vb per_minute; extern real A dimensionless; extern real B dimensionless; extern real one dimensionless; extern real C dimensionless; extern real D dimensionless; extern real y_init dimensionless; real y(t) dimensionless; when(t=t.min) y=y_init; // y:t=(Va*A*(one-y)/(C+(one-y))-Vb*B*y/(D+y)); }