You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error of division by zero in PODS, equation: RNITPD = (RNITP*0.01-PROLFF*0.16)/(FNINL-PROLFF*0.16)
Reason:
The division by zero happens because FNINL is assigned in DEMAND.for with: FNINL = PROLFI * 0.16
This value is not changed during the simulation and will be passed to PODS subroutine. PROLFI and PROLFF comes from the Species file. The values of this variables were set equal as showed below:
The division by zero happens because the FNINL - PROLFF*0.16 will result in 0.0. To bypass this problem the value of PROLFI was increased in 0.001, because it is usually higher than PROLFF based on other CROPGRO models. However, this issue is also present in all CROPGRO-based models and should be added a protection in PODS.for.
The text was updated successfully, but these errors were encountered:
Error of division by zero in PODS, equation:
RNITPD = (RNITP*0.01-PROLFF*0.16)/(FNINL-PROLFF*0.16)
Reason:
The division by zero happens because FNINL is assigned in DEMAND.for with:
FNINL = PROLFI * 0.16
This value is not changed during the simulation and will be passed to PODS subroutine. PROLFI and PROLFF comes from the Species file. The values of this variables were set equal as showed below:
The division by zero happens because the FNINL - PROLFF*0.16 will result in 0.0. To bypass this problem the value of PROLFI was increased in 0.001, because it is usually higher than PROLFF based on other CROPGRO models. However, this issue is also present in all CROPGRO-based models and should be added a protection in PODS.for.
The text was updated successfully, but these errors were encountered: