// 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 // R00286: UDP_minus_glucose <=> UDP_minus_glucuronate 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 E1_space_1_space_1_space_22 = 0 M; real UDP_minus_glucuronate(time) M; real UDP_minus_glucose(time) M; real R00286(time) katal; extern real R00286.kf; extern real R00286.kb; // equations when (time=time.min) UDP_minus_glucuronate = 0; UDP_minus_glucuronate:time = (R00286)/uVol; when (time=time.min) UDP_minus_glucose = 0; UDP_minus_glucose:time = (-1*R00286)/uVol; R00286 = R00286.kf*UDP_minus_glucose - R00286.kb*UDP_minus_glucuronate; // variable properties default.sbmlRole="compartment"; uVol.sbmlRole="compartment"; E1_space_1_space_1_space_22.sbmlRole="species"; E1_space_1_space_1_space_22.sbmlCompartment="uVol"; UDP_minus_glucuronate.sbmlRole="species"; UDP_minus_glucuronate.sbmlCompartment="uVol"; UDP_minus_glucose.sbmlRole="species"; UDP_minus_glucose.sbmlCompartment="uVol"; R00286.sbmlRole="rate"; R00286.kf.sbmlRole="rate"; R00286.kb.sbmlRole="rate"; }