A micro hydro controller regulates power from a small stream or canal turbine, managing battery charging and load distribution. India has enormous micro hydro potential — thousands of perennial streams in the Himalayas, Western Ghats, and Northeast provide consistent water flow year-round. A properly controlled micro hydro system can provide reliable 24/7 power where grid connectivity is poor. This guide covers regulation circuits, ballast controllers, and battery charging from micro hydro sources.
Micro Hydro Power Basics
Micro hydro systems (under 100kW, typically 200W-5kW for Indian village/farm use) convert flowing water energy into electricity:
Power available: P = Q x H x g x efficiency
Q = water flow (m3/s)
H = head/drop height (metres)
g = 9.81 m/s2
efficiency = 50-70% typical
Example: Small Himalayan stream
Flow: 0.01 m3/s (10 litres/second)
Head: 10 metres
P = 0.01 x 10 x 9.81 x 0.6 = 588W continuous
Unlike solar (which is intermittent) and wind (which is variable), micro hydro provides near-constant power 24/7 during the flowing season — making it ideal for baseload battery charging.
Voltage and Frequency Regulation
Most small turbines generate variable-frequency AC. Regulation approaches:
- Battery-based: Rectify AC to DC, charge battery through charge controller, run loads from battery via inverter. Most flexible and common for off-grid Indian installations.
- AC regulation: Electronic load controller (ELC/ballast) maintains constant load on the turbine, keeping frequency stable at 50Hz for direct AC use. More efficient for large loads.
Electronic Load Controller (Ballast)
An ELC diverts excess power to a ballast load (typically water heater) when user loads decrease, maintaining constant turbine loading:
Turbine output: Fixed speed → Fixed frequency → Fixed voltage
User load: Variable (lights on/off, appliances)
Ballast: Absorbs difference (Total = User + Ballast = constant)
Ballast control: Phase-angle control using triac/SCR
Full user load → Ballast fully off
No user load → Ballast fully on (all power to heater)
Partial load → Proportional ballast
Battery Charging from Micro Hydro
For battery-based systems (most common in Indian micro hydro):
- Turbine AC output → Three-phase bridge rectifier → DC
- DC → Buck or buck-boost converter → Battery charge voltage
- Charge controller manages absorption/float/cutoff
- Battery → Inverter → 230V AC for household loads
Since micro hydro runs 24/7, battery charging is continuous. Size the battery for 4-6 hours of autonomy (for turbine maintenance periods) rather than the 24-48 hours needed for solar.
Arduino-Based Hydro Controller
// Micro hydro battery charger with ballast control
#define BATT_V_PIN A0
#define BALLAST_PIN 9 // PWM to triac/MOSFET for ballast
float battAbsorb = 14.4;
float battFloat = 13.6;
void loop() {
float battV = readBatteryVoltage();
if (battV >= battAbsorb) {
// Battery full -- divert to ballast
analogWrite(BALLAST_PIN, 255);
} else if (battV >= battFloat) {
// Proportional ballast
int pwm = map(battV*100, battFloat*100, battAbsorb*100, 0, 255);
analogWrite(BALLAST_PIN, constrain(pwm, 0, 255));
} else {
analogWrite(BALLAST_PIN, 0); // All power to battery
}
delay(100);
}
FAQ
What is the minimum water flow needed for a practical micro hydro system?
With 5+ metres of head: 2-5 litres/second produces 50-150W. With 20+ metres: 1-2 L/s produces 100-200W. This is enough for LED lighting, phone charging, and a small TV. Many Himalayan and Western Ghats streams easily exceed these flows year-round.
Do I need government permission for micro hydro in India?
For sub-100kW installations using run-of-river (no dam), most Indian states do not require environmental clearance. However, check with your state’s irrigation department for water use rights. Central Electricity Authority (CEA) norms apply for grid connection.
Add comment