Closed fairquestion closed 5 years ago
Hi,
This function gives an Bac
object back. That's why you see this output, it should be the same output as if you just write bac1
in the console.
You should use setKinetics
like this:
bac1 <- setKinetics (bac1, "EX_cpd00075(e)", 0.01, 7.56)
That's how you can overwrite the settings of bac1
.
Cheers, Eugen
Hi Euba,
Sorry, I did an incomplete question I know that by doing "bac1 <-" I can modify bac1. What I wanted to know is why, no matter the value of my km and vmax, the uptake is always set to the same number, i.e. -100. Is it something expectable? I can try to reproduce the results.
Best, Fair.
Ah ok, I see what you mean. The reason why you don't see a difference in the constraints is because the upperbound is generally open (so -1000) and with the Michaelis-Menten kinetics the internal lower bounds are set dynamically according to the current (time step tstep
) substance concentrations s
in the environment with:
lnew = -(vmax*s/(Km + s))*tstep
If you want to check if the kinetics are set before and after setKinetics
you can run:
bac1@kinetics
that's how you can make sure that the kinetics were set.
Cheers, Eugen
please reopen if still an issue :)
Dear all,
I have a question regarding the "setkinetics" command. When I implement a specific km for an exchange reaction I am always getting the same output despite the km number:
What does this output exactly mean?
Thanks, Fair