OC
OceanRemote
Low-code IoT platform
← Back to Course

Dynamic Thresholds by Growth Stage

📈 Dynamic Thresholds by Crop Growth Stage

📊 Tomato Growth Stage Example:

Growth Stage Days After Planting Start Watering (%) Water per Day (L/plant)
Seedling 0-20 40% 0.5-1.0
Vegetative 21-40 50% 1.0-1.5
Flowering 41-60 55% 1.5-2.0
Fruit Set 61-80 60% 2.0-2.5
Harvest 81-100 50% 1.5-2.0
End of Season 100+ 35% 0.5-1.0

📖 Growth Stage Code:

int getWaterThreshold(int daysAfterPlanting) {
    if (daysAfterPlanting <= 20) return 40;    // Seedling
    if (daysAfterPlanting <= 40) return 50;    // Vegetative
    if (daysAfterPlanting <= 60) return 55;    // Flowering
    if (daysAfterPlanting <= 80) return 60;    // Fruit set
    if (daysAfterPlanting <= 100) return 50;   // Harvest
    return 35;                                   // End of season
}
    
💡 Key Takeaways:
  • Apply these concepts directly to your farm or project.
  • Take notes on important details for the quiz.
  • Use the button below to track your progress.