// 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 // R01280: Hexadecanoic_space_acid => Palmitoyl_minus_CoA // R00631: Aldehyde <=> Fatty_space_acid // R00623: Primary_space_alcohol => Aldehyde 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_1 = 0 M; real E1_space_2_space_1_space_3 = 0 M; real E6_space_2_space_1_space_3 = 0 M; real Primary_space_alcohol(time) M; real Aldehyde(time) M; real Fatty_space_acid(time) M; real Palmitoyl_minus_CoA(time) M; real Hexadecanoic_space_acid(time) M; real R01280(time) katal; extern real R01280.kf; extern real R01280.kb; real R00631(time) katal; extern real R00631.kf; extern real R00631.kb; real R00623(time) katal; extern real R00623.kf; extern real R00623.kb; // equations when (time=time.min) Primary_space_alcohol = 0; Primary_space_alcohol:time = (-1*R00623)/uVol; when (time=time.min) Aldehyde = 0; Aldehyde:time = (-1*R00631 + R00623)/uVol; when (time=time.min) Fatty_space_acid = 0; Fatty_space_acid:time = (R00631)/uVol; when (time=time.min) Palmitoyl_minus_CoA = 0; Palmitoyl_minus_CoA:time = (R01280)/uVol; when (time=time.min) Hexadecanoic_space_acid = 0; Hexadecanoic_space_acid:time = (-1*R01280)/uVol; R01280 = R01280.kf*Hexadecanoic_space_acid - R01280.kb*Palmitoyl_minus_CoA; R00631 = R00631.kf*Aldehyde - R00631.kb*Fatty_space_acid; R00623 = R00623.kf*Primary_space_alcohol - R00623.kb*Aldehyde; // variable properties default.sbmlRole="compartment"; uVol.sbmlRole="compartment"; E1_space_1_space_1_space_1.sbmlRole="species"; E1_space_1_space_1_space_1.sbmlCompartment="uVol"; E1_space_2_space_1_space_3.sbmlRole="species"; E1_space_2_space_1_space_3.sbmlCompartment="uVol"; E6_space_2_space_1_space_3.sbmlRole="species"; E6_space_2_space_1_space_3.sbmlCompartment="uVol"; Primary_space_alcohol.sbmlRole="species"; Primary_space_alcohol.sbmlCompartment="uVol"; Aldehyde.sbmlRole="species"; Aldehyde.sbmlCompartment="uVol"; Fatty_space_acid.sbmlRole="species"; Fatty_space_acid.sbmlCompartment="uVol"; Palmitoyl_minus_CoA.sbmlRole="species"; Palmitoyl_minus_CoA.sbmlCompartment="uVol"; Hexadecanoic_space_acid.sbmlRole="species"; Hexadecanoic_space_acid.sbmlCompartment="uVol"; R01280.sbmlRole="rate"; R01280.kf.sbmlRole="rate"; R01280.kb.sbmlRole="rate"; R00631.sbmlRole="rate"; R00631.kf.sbmlRole="rate"; R00631.kb.sbmlRole="rate"; R00623.sbmlRole="rate"; R00623.kf.sbmlRole="rate"; R00623.kb.sbmlRole="rate"; }