| 127 | |
| 128 | == '''2. Parameter value issue: constantes_mtc.f90''' == |
| 129 | The parameter k_latosa_max and k_latosa_min were initially designed for tree PFT only. However these variables are also used for grass PFT. Therefore these parameter cannot be set to undef. |
| 130 | Parameter set to value of tree PFT. |
| 131 | {{{ |
| 132 | !DSGdebug_03 |
| 133 | REAL(r_std), PARAMETER, DIMENSION(nvmc) :: k_latosa_max_mtc = & !! Maximum leaf-to-sapwood area ratio as defined in McDowell et al |
| 134 | & (/ undef, 5000., 5000., 5000., 3000., 5000., 5000., & !! 2002, Oecologia and compiled in Hickler et al 2006, Appendix S2 |
| 135 | ! & 5000., 5000., undef, undef, undef, undef /) !! (unitless) |
| 136 | & 5000., 5000., 5000., 5000., 5000., 5000. /) !! (unitless) |
| 137 | |
| 138 | REAL(r_std), PARAMETER, DIMENSION(nvmc) :: k_latosa_min_mtc = & !! Minimum leaf-to-sapwood area ratio as defined in McDowell et al |
| 139 | & (/ undef, 1500., 1500., 1500., 1000., 1500., 1500., & !! 2002, Oecologia and compiled in Hickler et al 2006, Appendix S2 |
| 140 | ! & 1500., 1500., undef, undef, undef, undef /) !! (unitless) |
| 141 | & 1500., 1500., 1500., 1500., 1500., 1500. /) !! (unitless) |
| 142 | !DSGdebug_03 |
| 143 | }}} |
| 144 | |