// This model generated automatically from SBML // unit definitions import nsrunit; unit conversion off; // SBML property definitions property sbmlRole=string; property sbmlName=string; property sbmlCompartment=string; // SBML reactions // v1: s => x2 // v2: x2 => x3 // v3: x3 => p math main { realDomain time second; time.min=0; extern time.max; extern time.delta; // variable definitions real compartment = 1 L; real k1 = 1; real k2 = 1; real k3 = 1; real s = 1 M; real x2(time) M; real x3(time) M; real p = 1 M; real v1(time) katal; real v2(time) katal; real v3(time) katal; // equations when (time=time.min) x2 = 0; x2:time = (v1 + -1*v2)/compartment; when (time=time.min) x3 = 0; x3:time = (v2 + -1*v3)/compartment; v1 = k1*s; v2 = k2*x2; v3 = k3*x3; // variable properties compartment.sbmlRole="compartment"; k1.sbmlRole="parameter"; k2.sbmlRole="parameter"; k3.sbmlRole="parameter"; s.sbmlRole="species"; s.sbmlCompartment="compartment"; x2.sbmlRole="species"; x2.sbmlCompartment="compartment"; x3.sbmlRole="species"; x3.sbmlCompartment="compartment"; p.sbmlRole="species"; p.sbmlCompartment="compartment"; v1.sbmlRole="rate"; v2.sbmlRole="rate"; v3.sbmlRole="rate"; }