← Crafts
Kiln preview

Kiln

Agritech research Engineering collaborator

Automated coconut drying with ventilation and heat control — embedded loops regulate chamber temperature and airflow for consistent copra moisture.

Problem

Copra quality swings when drying is uneven or weather interrupts sun drying. Kiln automates heat and fan schedules inside a drying chamber so operators hit target moisture with less spoilage.

What it covers

  • Temperature and humidity sensing inside the drying chamber
  • PID-style heat control with ventilation interlocks
  • Batch profiles for different coconut loading densities
  • Safety cutoff on overtemperature and airflow loss
Chamber temp Controller Humidity Heat source relay Ventilation fan Safety cutoff
Drying chamber control
void runDryingProfile(const Profile& profile, ChamberState& state) {
  const float error = profile.targetTempC - state.tempC;
  state.heatDuty = clamp(error * profile.kp, 0.0f, 1.0f);
  state.fanDuty = state.tempC > profile.maxTempC ? 1.0f : profile.minFanDuty;
  applyActuators(state);
}
Kiln drying chamber placeholder
Hardware photo placeholder — swap for the chamber interior and control panel.