According to Katja's paper/2006, the grazing term on Phytoplankton by Zoop is defined as g*Zoo(page 3), where g is the grazing rate of Phyt. And g is represented by Holling-type s-shaped curve as(refer to P.4)
Code: Select all
g = gmax*Phyt*Phyt/(kp + Phyt*Phyt)
Code: Select all
Zphy = g*Zoo = gmax*Zoo*Phyt*Phyt/(kp + Phyt*Phyt)
Code: Select all
! Phytoplankton grazing by zooplankton.
!
cff1=fac1*Bio(i,k,iZoop)*Bio(i,k,iPhyt)/ &
& (K_Phy(ng)+Bio(i,k,iPhyt)*Bio(i,k,iPhyt))
cff3=1.0_r8/(1.0_r8+cff1)
Bio(i,k,iPhyt)=cff3*Bio(i,k,iPhyt)
As is calculated from here, Zphy = Bio(i,k,iPhyt) = cff3 * Bio(i,k,iPhyt) not equal to above formula. The term cff3 here should be the cff1,i.e. Bio(i,k,iPhyt)=cff1*Bio(i,k,iPhyt). IF this is the case, can that make the sense.
- Shou