Following the previous arguments in which redox driving force and phosphorylation were respectively the input and output we can express the flux force equation as
\[ \begin{align} J_{i}& = L_i\cdot X_i+ L_{io}\cdot X_o\\ J_{o}&= L_{io}\cdot X_i +L_o \cdot X_o\\ \end{align} \] ## More about degree and efficiency of coupling
\[ \begin{align} \eta&= - \frac{J_o X_o}{J_iX_i }\ \\ &\le 1 \ \end{align} \]
\[ \begin{align} q&= \sqrt{\frac{L_{io}^2}{L_iL_o}} \le 1 \end{align} \]
The matrix form of second law is given by
and also, \[ L_o>0,L_i>0 \] as diagonal elements of L matrix is positive.
$$
Given this definition of Stoichiometry , we can write the flux ratios,
(@flowrat) \[
\begin{align}
j=\frac{J_o}{J_i}\\
or,\\
j=Z \frac{q +Z(X_o/X_i)}{1 + qZ\frac{X_o}{X_i}}\\
=Z \frac{q +Zx}{1 + qZx}\\
\end{align}
\]
We can express , \[ j=\frac{L_{o} X_o + L_{io}X_i}{L_{io}X_o + L_{i}X_i}\\ =\frac{Z^2L_iX_o+qzL_iX_i}{L_iqZX_o+L_iX_i}\\=Z.\frac{Zx+q}{qZx+1} \]
We can define two classes of steady states.
* Level Flow (free energy of phophorylation is 0) * Static head (e.g. ATP production rate is 0).
Thus we have the following equations. For level flow:
\[
(J_o/J_i)_{X_o=o} =Zq =L_{io}/L_i\\
\] For static head, \[
(X_o/X_i)_{J_o=0}=-q/Z =-L_{io}/L_o
\]
We can now see the dependence of flow ratio against flow ratio.\
Z<-3.0
q <- 0.01
for (i in 1:90)
{
q<- q+0.01
x<-seq(-1,1,0.01)
j<- Z*(q+Z*x)/(1+q*Z*x)
if (i==1)
{
plot(x,j,pch=18)
}
else
{
points(x,j,pch=18)
}
}
Z<-2.0
q <- 0.01
for (i in 1:90)
{
q<- q+0.01
x<-seq(-1,1,0.01)
j<- Z*(q+Z*x)/(1+q*Z*x)
points(x,j,pch=19,col="red")
}
\[ \eta = - \frac{q+Zx}{q+\frac{1}{Zx}} \]
\[ \eta = - \frac{q-\frac{j}{Z}}{q-\frac{Z}{j}} \]
Z<-3.0
q <- 0.01
for (i in 1:90)
{
q<- q+0.01
x<- seq(-1,1,0.001)
j<- Z*(q+Z*x)/(1+q*Z*x)
eta<- -j*x
}
ik<-which(eta>0 & eta<1)
plot(x[ik],eta[ik],type="l",xlab="Force Ratio",ylab="Efficiency",main="RED: Z=2,BLACK: Z=3")
Z<-2.0
q <- 0.01
for (i in 1:90)
{
q<- q+0.01
x<- seq(-1,1,0.001)
j<- Z*(q+Z*x)/(1+q*Z*x)
eta<- -j*x
}
ik<-which(eta>0 & eta<1)
points(x[ik],eta[ik],type="l",col="red")
It may be interesting to see that there is an optimal force ratio at which the efficiency is maximal . Secondly in a wide spectrum of force ratio staring from -3 to +3 , the efficiecincy seems to be meaningful within a force ratio (x) range The efficiency is chosen in the range \(\eta \le 0.3\) for Z=2,3.All the other values of efficiency are ruled out by the second law as they would not satisfy the \(\eta \le 1\).
Find the value of x at Z=j
When oxygen electrode was first being applied to mitochondrian studies the following conditions were fulfilled:
* State 1 : mitochondria alone
* State 2 : Substrate added , respiration low owing to lack of ADP.
* State 3 : A limited amount of ADP added allowing rapid respiration
* State 4 All ADP converted to ATP ,respiration shows
* State 5: Anoxia
Describe the flux flow status of the above.