Changes between Initial Version and Version 1 of Ticket #677
- Timestamp:
- 08/04/15 21:10:40 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #677
- Property Resolution → Fixed
- Property Status new → closed
-
Ticket #677 – Description
initial v1 1 I'm following up on a forum post entitled ' POWELL without SPITZ CPP option' dated Nov 27 2013. This postdiscusses a bug that has gone unfixed as of January 14 2015 when I downloaded the version of ROMS I am currently working with.1 I'm following up on a forum post entitled '''NPZD_POWELL''' without '''SPITZ''' CPP option dated Nov 27 2013. This [https://www.myroms.org/forum/viewtopic.php?f=19&t=3163 post] discusses a bug that has gone unfixed as of January 14 2015 when I downloaded the version of ROMS I am currently working with. 2 2 3 3 To reiterate: 4 4 5 The option to run npzd_Powell without SPITZ flag produces an error in the phytoplankton growth rate. Perhaps make the SPITZ option activated by default as that follows Powell et al. 2006, delete the alternative code, and delete the SPITZCPP option?5 The option to run '''NPZD_POWELL''' without '''SPITZ''' flag produces an error in the phytoplankton growth rate. Perhaps make the '''SPITZ''' option activated by default as that follows Powell ''et al''. 2006, delete the alternative code, and delete the '''SPITZ''' CPP option? 6 6 7 For example, in npzd_Powell.h7 For example, in '''npzd_Powell.h''' replace the following: 8 8 9 replace the following:10 9 10 {{{ 11 11 #ifdef SPITZ 12 12 cff1=dtdays*Vm_NO3(ng)*PhyIS(ng) … … 35 35 36 36 37 }}} 38 37 39 with: 38 40 41 42 {{{ 39 43 cff1=dtdays*Vm_NO3(ng)*PhyIS(ng) 40 44 cff2=Vm_NO3(ng)*Vm_NO3(ng) … … 51 55 END DO 52 56 END DO 57 }}}