// 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 // R00694: Phenylpyruvate => L_minus_Phenylalanine 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_6_space_1_space_9 = 0 M; real E2_space_6_space_1_space_1 = 0 M; real L_minus_Phenylalanine(time) M; real Phenylpyruvate(time) M; real R00694(time) katal; extern real R00694.kf; extern real R00694.kb; // equations when (time=time.min) L_minus_Phenylalanine = 0; L_minus_Phenylalanine:time = (R00694)/uVol; when (time=time.min) Phenylpyruvate = 0; Phenylpyruvate:time = (-1*R00694)/uVol; R00694 = R00694.kf*Phenylpyruvate - R00694.kb*L_minus_Phenylalanine; // variable properties default.sbmlRole="compartment"; uVol.sbmlRole="compartment"; E2_space_6_space_1_space_9.sbmlRole="species"; E2_space_6_space_1_space_9.sbmlCompartment="uVol"; E2_space_6_space_1_space_1.sbmlRole="species"; E2_space_6_space_1_space_1.sbmlCompartment="uVol"; L_minus_Phenylalanine.sbmlRole="species"; L_minus_Phenylalanine.sbmlCompartment="uVol"; Phenylpyruvate.sbmlRole="species"; Phenylpyruvate.sbmlCompartment="uVol"; R00694.sbmlRole="rate"; R00694.kf.sbmlRole="rate"; R00694.kb.sbmlRole="rate"; }