/[MITgcm]/MITgcm_contrib/darwin2/pkg/monod/monod_plankton.F
ViewVC logotype

Diff of /MITgcm_contrib/darwin2/pkg/monod/monod_plankton.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.6 by stephd, Thu May 31 21:08:25 2012 UTC revision 1.9 by stephd, Thu Jul 26 18:01:22 2012 UTC
# Line 48  c ANNA pass extra variables if WAVEBANDS Line 48  c ANNA pass extra variables if WAVEBANDS
48       I                       phytoup, popuplocal, ponuplocal,       I                       phytoup, popuplocal, ponuplocal,
49       I                       pofeuplocal, psiuplocal,       I                       pofeuplocal, psiuplocal,
50       I                       PARlocal,Tlocal, Slocal,       I                       PARlocal,Tlocal, Slocal,
51         I                       pCO2local,
52       I                       freefelocal, inputFelocal,       I                       freefelocal, inputFelocal,
53       I                       bottom, dzlocal,       I                       bottom, dzlocal,
54       O                       Rstarlocal, RNstarlocal,       O                       Rstarlocal, RNstarlocal,
# Line 148  c zoo   = zooplankton Line 149  c zoo   = zooplankton
149           _RL PARlocal           _RL PARlocal
150           _RL Tlocal           _RL Tlocal
151           _RL Slocal           _RL Slocal
152             _RL pCO2local
153           _RL freefelocal           _RL freefelocal
154           _RL inputFelocal           _RL inputFelocal
155           _RL bottom           _RL bottom
# Line 247  c phytoplankton specific nutrient limita Line 249  c phytoplankton specific nutrient limita
249           _RL limit(npmax)           _RL limit(npmax)
250  c phytoplankton light limitation term  c phytoplankton light limitation term
251           _RL ilimit(npmax)           _RL ilimit(npmax)
252             _RL pCO2limit(npmax)
253           _RL ngrow(npmax)           _RL ngrow(npmax)
254           _RL grow(npmax)           _RL grow(npmax)
255           _RL PspecificPO4(npmax)           _RL PspecificPO4(npmax)
256           _RL phytoTempFunction(npmax)           _RL phytoTempFunction(npmax)
257             _RL mortPTempFunction
258           _RL dummy           _RL dummy
259           _RL Ndummy           _RL Ndummy
260           _RL Nsourcelimit(npmax)           _RL Nsourcelimit(npmax)
# Line 281  c varible for mimumum phyto Line 285  c varible for mimumum phyto
285  #ifdef OLD_GRAZE  #ifdef OLD_GRAZE
286  c  variables for zooplankton grazing rates  c  variables for zooplankton grazing rates
287           _RL zooTempFunction(nzmax)           _RL zooTempFunction(nzmax)
288             _RL mortZTempFunction
289             _RL mortZ2TempFunction
290           _RL grazing_phyto(npmax)           _RL grazing_phyto(npmax)
291           _RL grazingP(nzmax)           _RL grazingP(nzmax)
292           _RL grazingN(nzmax)           _RL grazingN(nzmax)
# Line 289  c  variables for zooplankton grazing rat Line 295  c  variables for zooplankton grazing rat
295  #else  #else
296  c  variables for zooplankton grazing rates  c  variables for zooplankton grazing rates
297           _RL zooTempFunction(nzmax)           _RL zooTempFunction(nzmax)
298             _RL mortZTempFunction
299             _RL mortZ2TempFunction
300           _RL allphyto(nzmax)           _RL allphyto(nzmax)
301           _RL denphyto(nzmax)           _RL denphyto(nzmax)
302           _RL grazphy(npmax,nzmax)           _RL grazphy(npmax,nzmax)
# Line 600  ccccccccccccccccccccccccccccccc Line 608  ccccccccccccccccccccccccccccccc
608    
609  c cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc  c cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
610            call MONOD_TEMPFUNC(Tlocal,phytoTempFunction,            call MONOD_TEMPFUNC(Tlocal,phytoTempFunction,
611       &            zooTempFunction, reminTempFunction, myThid)       &            zooTempFunction, reminTempFunction,
612         &            mortPTempFunction, mortZTempFunction,
613         &            mortZ2TempFunction, myThid)
614            if (debug.eq.1) print*,'phytoTempFunction',            if (debug.eq.1) print*,'phytoTempFunction',
615       &                          phytoTempFunction, Tlocal       &                          phytoTempFunction, Tlocal
616  ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc  ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
# Line 629  c using Platt-like equations with inhibi Line 639  c using Platt-like equations with inhibi
639  #endif  #endif
640  c ANNA endif  c ANNA endif
641    
642    c pCO2 limit - default to non
643             do np=1,npmax
644               pCO2limit(np)=1. _d 0
645    c          if (np.eq.6) then
646    c             pCO2limit(np)=1. _d 0 + (pCO2local-400. _d -6)/600 _d -6
647    c             pCO2limit(np)=max(pCO2limit(np),1. _d 0)
648    c             pCO2limit(np)=min(pCO2limit(np),2. _d 0)
649    c          endif
650               if (debug.eq.15) print*,'pco2limit',pCO2limit(np),pCO2local
651             enddo
652    
653    
654  ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc  ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
655  c Determine phytoplankton nutrient limitation as mimimum of  c Determine phytoplankton nutrient limitation as mimimum of
656  c P,N,Si,Fe. However N can be utilized in several forms, so  c P,N,Si,Fe. However N can be utilized in several forms, so
# Line 846  c ANNA endif Line 868  c ANNA endif
868  #endif  #endif
869    
870            do np = 1, npmax            do np = 1, npmax
871             pcm(np)=pcmax(np)*limit(np)*phytoTempFunction(np)             pcm(np)=pcmax(np)*limit(np)*phytoTempFunction(np)*
872         &                                         pCO2limit(np)
873  #ifdef DYNAMIC_CHL  #ifdef DYNAMIC_CHL
874             if (phyto(np).gt. 0. _d 0) then             if (phyto(np).gt. 0. _d 0) then
875               chl2c(np)=phychl(np)/(phyto(np)*R_PC(np))               chl2c(np)=phychl(np)/(phyto(np)*R_PC(np))
# Line 923  c         acclim(np)=max(acclim(np),chl2 Line 946  c         acclim(np)=max(acclim(np),chl2
946  c diagnostic version of the above that does not feed back to growth  c diagnostic version of the above that does not feed back to growth
947            ChlGeiderlocal = 0. _d 0            ChlGeiderlocal = 0. _d 0
948            do np = 1, npmax            do np = 1, npmax
949             tmppcm = mu(np)*limit(np)*phytoTempFunction(np)             tmppcm = mu(np)*limit(np)*phytoTempFunction(np)*
950         &                                       pCO2limit(np)
951             if (tmppcm.gt.0.d0) then             if (tmppcm.gt.0.d0) then
952               tmpchl2c = Geider_chl2cmax(np)/               tmpchl2c = Geider_chl2cmax(np)/
953       &         (1+(Geider_chl2cmax(np)*Geider_alphachl(np)*PARdaylocal)/       &         (1+(Geider_chl2cmax(np)*Geider_alphachl(np)*PARdaylocal)/
# Line 1082  cccccccccccccccccccccccccccccccccccccccc Line 1106  cccccccccccccccccccccccccccccccccccccccc
1106  c accumulate particulate and dissolved detritus  c accumulate particulate and dissolved detritus
1107             do np=1, npmax             do np=1, npmax
1108                 totphy_pop=totphy_pop+                 totphy_pop=totphy_pop+
1109       &                ExportFracP(np)*mortphy(np)*phytomin(np)       &                ExportFracP(np)*mortphy(np)*
1110         &                mortPTempFunction*phytomin(np)
1111                 totphy_dop=totphy_dop+                 totphy_dop=totphy_dop+
1112       &                (1. _d 0-ExportFracP(np))*mortphy(np)*phytomin(np)       &                (1. _d 0-ExportFracP(np))*mortphy(np)*
1113         &                mortPTempFunction*phytomin(np)
1114                 totphy_pon=totphy_pon+ R_NP(np)*                 totphy_pon=totphy_pon+ R_NP(np)*
1115       &                ExportFracP(np)*mortphy(np)*phytomin(np)       &                ExportFracP(np)*mortphy(np)*
1116         &                mortPTempFunction*phytomin(np)
1117                 totphy_don=totphy_don+ R_NP(np)*                 totphy_don=totphy_don+ R_NP(np)*
1118       &               (1. _d 0-ExportFracP(np))*mortphy(np)*phytomin(np)       &               (1. _d 0-ExportFracP(np))*mortphy(np)*
1119         &                mortPTempFunction*phytomin(np)
1120                 totphy_pofe=totphy_pofe+ R_FeP(np)*                 totphy_pofe=totphy_pofe+ R_FeP(np)*
1121       &                ExportFracP(np)*mortphy(np)*phytomin(np)       &                ExportFracP(np)*mortphy(np)*
1122         &                mortPTempFunction*phytomin(np)
1123                 totphy_dofe=totphy_dofe+ R_FeP(np)*                 totphy_dofe=totphy_dofe+ R_FeP(np)*
1124       &               (1. _d 0-ExportFracP(np))*mortphy(np)*phytomin(np)       &               (1. _d 0-ExportFracP(np))*mortphy(np)*
1125         &                mortPTempFunction*phytomin(np)
1126                 totphy_posi=totphy_posi+ R_SiP(np)*                 totphy_posi=totphy_posi+ R_SiP(np)*
1127       &                mortphy(np)*phytomin(np)       &                mortphy(np)*
1128         &                mortPTempFunction*phytomin(np)
1129  #ifdef ALLOW_CARBON  #ifdef ALLOW_CARBON
1130                 totphy_poc=totphy_poc+ R_PC(np)*                 totphy_poc=totphy_poc+ R_PC(np)*
1131       &                ExportFracP(np)*mortphy(np)*phytomin(np)       &                ExportFracP(np)*mortphy(np)*
1132         &                mortPTempFunction*phytomin(np)
1133                 totphy_doc=totphy_doc+ R_PC(np)*                 totphy_doc=totphy_doc+ R_PC(np)*
1134       &               (1. _d 0-ExportFracP(np))*mortphy(np)*phytomin(np)       &               (1. _d 0-ExportFracP(np))*mortphy(np)*
1135         &                mortPTempFunction*phytomin(np)
1136                 totphy_pic=totphy_pic+ R_PC(np)*R_PICPOC(np)*                 totphy_pic=totphy_pic+ R_PC(np)*R_PICPOC(np)*
1137       &                mortphy(np)*phytomin(np)       &                mortphy(np)*
1138         &                mortPTempFunction*phytomin(np)
1139  #endif  #endif
1140              enddo              enddo
1141  #ifdef ALLOW_CDOM  #ifdef ALLOW_CDOM
# Line 1167  cccccccccccccccccccccccccccccccccccccccc Line 1201  cccccccccccccccccccccccccccccccccccccccc
1201  c accumulate particulate and dissolved detritus  c accumulate particulate and dissolved detritus
1202              do nz=1, nzmax              do nz=1, nzmax
1203                 totzoo_pop=totzoo_pop+                 totzoo_pop=totzoo_pop+
1204       &                     ExportFracZ(nz)*( mortzoo(nz)*zooP(nz)       &                     ExportFracZ(nz)*( mortzoo(nz)*
1205       &                     +  mortzoo2(nz)*zooP(nz)**2 )       &                     mortZTempFunction*zooP(nz)
1206         &                     +  mortzoo2(nz)*
1207         &                     mortZ2TempFunction*zooP(nz)**2 )
1208                 totzoo_dop=totzoo_dop+                 totzoo_dop=totzoo_dop+
1209       &                    (1. _d 0-ExportFracZ(nz))*(       &                    (1. _d 0-ExportFracZ(nz))*(
1210       &                     mortzoo(nz)*zooP(nz)+       &                     mortzoo(nz)*
1211       &                     mortzoo2(nz)*zooP(nz)**2 )       &                     mortZTempFunction*zooP(nz)+
1212         &                     mortzoo2(nz)*
1213         &                     mortZ2TempFunction*zooP(nz)**2 )
1214                 totzoo_pon=totzoo_pon+                 totzoo_pon=totzoo_pon+
1215       &                     ExportFracZ(nz)*( mortzoo(nz)*zooN(nz)       &                     ExportFracZ(nz)*( mortzoo(nz)*
1216       &                     +  mortzoo2(nz)*zooN(nz)**2 )       &                     mortZTempFunction*zooN(nz)
1217         &                     +  mortzoo2(nz)*
1218         &                     mortZ2TempFunction*zooN(nz)**2 )
1219                 totzoo_don=totzoo_don+                 totzoo_don=totzoo_don+
1220       &                    (1. _d 0-ExportFracZ(nz))*(       &                    (1. _d 0-ExportFracZ(nz))*(
1221       &                     mortzoo(nz)*zooN(nz)+       &                     mortzoo(nz)*
1222       &                     mortzoo2(nz)*zooN(nz)**2 )       &                     mortZTempFunction*zooN(nz)+
1223         &                     mortzoo2(nz)*
1224         &                     mortZ2TempFunction*zooN(nz)**2 )
1225                 totzoo_pofe=totzoo_pofe+                 totzoo_pofe=totzoo_pofe+
1226       &                     ExportFracZ(nz)*( mortzoo(nz)*zooFe(nz)       &                     ExportFracZ(nz)*( mortzoo(nz)*
1227       &                     +  mortzoo2(nz)*zooFe(nz)**2 )       &                     mortZTempFunction*zooFe(nz)
1228         &                     +  mortzoo2(nz)*
1229         &                     mortZ2TempFunction*zooFe(nz)**2 )
1230                 totzoo_dofe=totzoo_dofe+                 totzoo_dofe=totzoo_dofe+
1231       &                   (1. _d 0-ExportFracZ(nz))*(       &                   (1. _d 0-ExportFracZ(nz))*(
1232       &                    mortzoo(nz)*zooFe(nz) +       &                    mortzoo(nz)*
1233       &                    mortzoo2(nz)*zooFe(nz)**2 )       &                    mortZTempFunction*zooFe(nz) +
1234         &                    mortzoo2(nz)*
1235         &                    mortZ2TempFunction*zooFe(nz)**2 )
1236                 totzoo_posi=totzoo_posi+                 totzoo_posi=totzoo_posi+
1237       &                     ( mortzoo(nz)*zooSi(nz)+       &                     ( mortzoo(nz)*
1238       &                       mortzoo2(nz)*zooSi(nz)**2 )       &                       mortZTempFunction*zooSi(nz)+
1239         &                       mortzoo2(nz)*
1240         &                       mortZ2TempFunction*zooSi(nz)**2 )
1241  #ifdef ALLOW_CARBON  #ifdef ALLOW_CARBON
1242                 totzoo_poc=totzoo_poc+                 totzoo_poc=totzoo_poc+
1243       &                    ExportFracZ(nz)*( mortzoo(nz)*zooClocal(nz)       &                    ExportFracZ(nz)*( mortzoo(nz)*
1244       &                      +  mortzoo2(nz)*zooClocal(nz)**2 )       &                         mortZTempFunction*zooClocal(nz)
1245         &                      +  mortzoo2(nz)*
1246         &                         mortZ2TempFunction*zooClocal(nz)**2 )
1247                 totzoo_doc=totzoo_doc+                 totzoo_doc=totzoo_doc+
1248       &           (1. _d 0-ExportFracZ(nz))*( mortzoo(nz)*zooClocal(nz)       &           (1. _d 0-ExportFracZ(nz))*( mortzoo(nz)*
1249       &                      +  mortzoo2(nz)*zooClocal(nz)**2 )       &                         mortZTempFunction*zooClocal(nz)
1250         &                      +  mortzoo2(nz)*
1251         &                         mortZ2TempFunction*zooClocal(nz)**2 )
1252  #endif  #endif
1253              enddo              enddo
1254    
# Line 1255  c consumption - sum of phytoplankton con Line 1307  c consumption - sum of phytoplankton con
1307  c phospate uptake by each phytoplankton  c phospate uptake by each phytoplankton
1308  #ifndef GEIDER  #ifndef GEIDER
1309                 grow(np)=ngrow(np)*mu(np)*limit(np)*ilimit(np)*                 grow(np)=ngrow(np)*mu(np)*limit(np)*ilimit(np)*
1310       &                            phytoTempFunction(np)       &                            phytoTempFunction(np)*pCO2limit(np)
1311  #endif  #endif
1312  #ifdef GEIDER  #ifdef GEIDER
1313                 grow(np)=ngrow(np)*pcarbon(np)                 grow(np)=ngrow(np)*pcarbon(np)
# Line 1404  c degradation of  CDOM - high when bleac Line 1456  c degradation of  CDOM - high when bleac
1456  #endif  #endif
1457  #endif  #endif
1458    
1459    #ifdef ALLOW_DENIT
1460               if (O2local.lt.O2crit) then
1461                  if (NO3local.lt.no3crit) then
1462    c no remineralization for N, P, Fe (not Si?)
1463                   DOPremin = 0. _d 0
1464                   DONremin = 0. _d 0
1465                   DOFeremin = 0. _d 0
1466                   preminP  = 0. _d 0
1467                   preminN  = 0. _d 0
1468                   preminFe =  0. _d 0
1469    #ifdef ALLOW_CDOM
1470                   preminP_cdom =  0. _d 0
1471                   preminN_cdom =  0. _d 0
1472                   preminFe_cdom =  0. _d 0
1473    #endif
1474    #ifdef ALLOW_CARBON
1475                  DOCremin = 0. _d 0
1476                  preminC  = 0. _d 0
1477    #ifdef ALLOW_CDOM
1478                  preminC_cdom =  0. _d 0
1479    #endif
1480    #endif
1481    
1482    #ifdef ALLOW_CDOM
1483    c degradation of  CDOM - high when bleached by light
1484               cdomp_degrd = reminTempFunction * cdomlocal
1485         &            *(cdombleach*min(PARlocal/PARcdom,1. _d 0) )
1486               cdomn_degrd = rnp_cdom * cdomp_degrd
1487               cdomfe_degrd= rfep_cdom * cdomp_degrd
1488    #ifdef ALLOW_CARBON
1489               cdomc_degrd = rcp_cdom  * cdomp_degrd
1490    #endif
1491    #endif
1492                  endif
1493               endif
1494    #endif
1495    c end denit caveats
1496    
1497  c chemistry  c chemistry
1498  c NH4 -> NO2 -> NO3 by bacterial action  c NH4 -> NO2 -> NO3 by bacterial action
1499              NO2prod = knita*( 1. _d 0-min(PARlocal/PAR0,1. _d 0) )              NO2prod = knita*( 1. _d 0-min(PARlocal/PAR0,1. _d 0) )
# Line 1430  c phytoplankton Line 1520  c phytoplankton
1520  #else  #else
1521       &                        - sumgrazphy(np)       &                        - sumgrazphy(np)
1522  #endif  #endif
1523       &                        - mortphy(np)*phytomin(np)       &                        - mortphy(np)*
1524         &                          mortPTempFunction*phytomin(np)
1525       &                        + psinkphy(np)       &                        + psinkphy(np)
1526  #ifdef GEIDER  #ifdef GEIDER
1527  #ifdef DYNAMIC_CHL  #ifdef DYNAMIC_CHL
# Line 1445  c             dphychl(np) = rhochl(np)*P Line 1536  c             dphychl(np) = rhochl(np)*P
1536  #else  #else
1537       &                   - sumgrazphy(np)       &                   - sumgrazphy(np)
1538  #endif  #endif
1539       &                   - mortphy(np)*phytomin(np)) *chl2c(np)*R_PC(np)       &                   - mortphy(np)*
1540         &                     mortPTempFunction*phytomin(np))
1541         &                       *chl2c(np)*R_PC(np)
1542       &                        + psinkChl(np)       &                        + psinkChl(np)
1543  #endif  #endif
1544                Chl=Chl + phychl(np)                Chl=Chl + phychl(np)
# Line 1456  c%%% Line 1549  c%%%
1549  #ifdef OLD_GRAZE  #ifdef OLD_GRAZE
1550                tmpr=grazing_phyto(np)*                tmpr=grazing_phyto(np)*
1551       &              (phytomin(np)/(phytomin(np) + kgrazesat))       &              (phytomin(np)/(phytomin(np) + kgrazesat))
1552       &                        + mortphy(np)*phytomin(np)       &                        + mortphy(np)*
1553         &                          mortPTempFunction*phytomin(np)
1554       &                        - psinkphy(np)       &                        - psinkphy(np)
1555  #else  #else
1556                tmpr=sumgrazphy(np)                tmpr=sumgrazphy(np)
1557       &                        + mortphy(np)*phytomin(np)       &                        + mortphy(np)*
1558         &                          mortPTempFunction*phytomin(np)
1559       &                        - psinkphy(np)       &                        - psinkphy(np)
1560  #endif  #endif
1561  #ifdef DAR_DIAG_RSTAR  #ifdef DAR_DIAG_RSTAR
1562  #ifndef GEIDER  #ifndef GEIDER
1563                tmpgrow=ngrow(np)*mu(np)*ilimit(np)*                tmpgrow=ngrow(np)*mu(np)*ilimit(np)*
1564       &              phytoTempFunction(np)       &              phytoTempFunction(np)*pCO2limit(np)
1565  #endif  #endif
1566  #ifdef GEIDER  #ifdef GEIDER
1567                tmpgrow=grow(np)/limit(np)                tmpgrow=grow(np)/limit(np)
# Line 1527  c zooplankton mortality Line 1622  c zooplankton mortality
1622              do nz=1,nzmax              do nz=1,nzmax
1623  c zoo in P currency  c zoo in P currency
1624                dzooPdt(nz)  = dzooPdt(nz)                dzooPdt(nz)  = dzooPdt(nz)
1625       &                           - mortzoo(nz)*zooP(nz)       &                           - mortzoo(nz)*
1626       &                           - mortzoo2(nz)*zooP(nz)**2       &                             mortZTempFunction*zooP(nz)
1627         &                           - mortzoo2(nz)*
1628         &                             mortZ2TempFunction*zooP(nz)**2
1629  c zooplankton in other currencies  c zooplankton in other currencies
1630  C zooplankton stoichiometry varies according to food source  C zooplankton stoichiometry varies according to food source
1631                dzooNdt(nz)  = dzooNdt(nz)                dzooNdt(nz)  = dzooNdt(nz)
1632       &                           - mortzoo(nz)*zooN(nz)       &                           - mortzoo(nz)*
1633       &                           - mortzoo2(nz)*zooN(nz)**2       &                             mortZTempFunction*zooN(nz)
1634         &                           - mortzoo2(nz)*
1635         &                             mortZ2TempFunction*zooN(nz)**2
1636                dzooFedt(nz) = dzooFedt(nz)                dzooFedt(nz) = dzooFedt(nz)
1637       &                           - mortzoo(nz)*zooFe(nz)       &                           - mortzoo(nz)*
1638       &                           - mortzoo2(nz)*zooFe(nz)**2       &                             mortZTempFunction*zooFe(nz)
1639         &                           - mortzoo2(nz)*
1640         &                             mortZ2TempFunction*zooFe(nz)**2
1641                dzooSidt(nz) = dzooSidt(nz)                dzooSidt(nz) = dzooSidt(nz)
1642       &                           - mortzoo(nz)*zooSi(nz)       &                           - mortzoo(nz)*
1643       &                           - mortzoo2(nz)*zooSi(nz)**2       &                             mortZTempFunction*zooSi(nz)
1644         &                           - mortzoo2(nz)*
1645         &                             mortZ2TempFunction*zooSi(nz)**2
1646              enddo              enddo
1647    
1648    
# Line 1570  c-ONLYNO3   dNO3dt =  - consumpNO3 +  pr Line 1673  c-ONLYNO3   dNO3dt =  - consumpNO3 +  pr
1673  #else  #else
1674       &                *(preminP  + DOPremin)       &                *(preminP  + DOPremin)
1675  #endif  #endif
1676                dNO3dt = dNO3dt - denit                dNO3dt = dNO3dt - (denit_no3/denit_np)*denit
1677                dNH4dt = dNH4dt -                  dNH4dt = dNH4dt -  
1678  #ifdef ALLOW_CDOM  #ifdef ALLOW_CDOM
1679       &                 (DONremin)       &                 (DONremin)
# Line 1656  c loss of O2 by remineralization Line 1759  c loss of O2 by remineralization
1759  #ifdef OLD_GRAZE  #ifdef OLD_GRAZE
1760              do nz=1,nzmax              do nz=1,nzmax
1761                dzooCdt(nz)  = grazingC(nz)*zooClocal(nz)                dzooCdt(nz)  = grazingC(nz)*zooClocal(nz)
1762       &                           - mortzoo(nz)*zooClocal(nz)       &                           - mortzoo(nz)*
1763       &                           - mortzoo2(nz)*zooClocal(nz)**2       &                             mortZTempFunction*zooClocal(nz)
1764         &                           - mortzoo2(nz)*
1765         &                             mortZ2TempFunction*zooClocal(nz)**2
1766              enddo              enddo
1767  #else  #else
1768              do nz=1,nzmax              do nz=1,nzmax
1769                dzooCdt(nz)  = sumgrazzooc(nz)                dzooCdt(nz)  = sumgrazzooc(nz)
1770       &                           - mortzoo(nz)*zooClocal(nz)       &                           - mortzoo(nz)*
1771       &                           - mortzoo2(nz)*zooClocal(nz)**2       &                             mortZTempFunction*zooClocal(nz)
1772         &                           - mortzoo2(nz)*
1773         &                             mortZ2TempFunction*zooClocal(nz)**2
1774              enddo              enddo
1775  #endif  #endif
1776    

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.9

  ViewVC Help
Powered by ViewVC 1.1.22