// 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 // R00315: Acetate => Acetyl_space_phosphate // R00230: Acetyl_minus_CoA => Acetyl_space_phosphate math main { realDomain time second; time.min=0; extern time.max; extern time.delta; // variable definitions real default = 1 L; real uVol = 1 L; real E2_space_3_space_1_space_8 = 0 M; real E2_space_7_space_2_space_1 = 0 M; real Acetyl_minus_CoA(time) M; real Acetyl_space_phosphate(time) M; real Acetate(time) M; real R00315(time) katal; extern real R00315.kf; extern real R00315.kb; real R00230(time) katal; extern real R00230.kf; extern real R00230.kb; // equations when (time=time.min) Acetyl_minus_CoA = 0; Acetyl_minus_CoA:time = (-1*R00230)/uVol; when (time=time.min) Acetyl_space_phosphate = 0; Acetyl_space_phosphate:time = (R00315 + R00230)/uVol; when (time=time.min) Acetate = 0; Acetate:time = (-1*R00315)/uVol; R00315 = R00315.kf*Acetate - R00315.kb*Acetyl_space_phosphate; R00230 = R00230.kf*Acetyl_minus_CoA - R00230.kb*Acetyl_space_phosphate; // variable properties default.sbmlRole="compartment"; uVol.sbmlRole="compartment"; E2_space_3_space_1_space_8.sbmlRole="species"; E2_space_3_space_1_space_8.sbmlCompartment="uVol"; E2_space_7_space_2_space_1.sbmlRole="species"; E2_space_7_space_2_space_1.sbmlCompartment="uVol"; Acetyl_minus_CoA.sbmlRole="species"; Acetyl_minus_CoA.sbmlCompartment="uVol"; Acetyl_space_phosphate.sbmlRole="species"; Acetyl_space_phosphate.sbmlCompartment="uVol"; Acetate.sbmlRole="species"; Acetate.sbmlCompartment="uVol"; R00315.sbmlRole="rate"; R00315.kf.sbmlRole="rate"; R00315.kb.sbmlRole="rate"; R00230.sbmlRole="rate"; R00230.kf.sbmlRole="rate"; R00230.kb.sbmlRole="rate"; }