Skip to content
Snippets Groups Projects
Commit 1b19dcc4 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Now aggregated temperature must exceed 0 degrees Celcius before ascospore maturation happens

parent 26145725
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ public class AscosporeMaturityTable { ...@@ -38,7 +38,7 @@ public class AscosporeMaturityTable {
public Double getAscosporeMaturity(Double accumulatedTemperature) public Double getAscosporeMaturity(Double accumulatedTemperature)
{ {
Double ascosporeMaturity; Double ascosporeMaturity;
if ( accumulatedTemperature >= 0 ) if ( accumulatedTemperature > 0 )
{ {
if ( accumulatedTemperature < 600 ) if ( accumulatedTemperature < 600 )
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment