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