Journal

Dust-Free Home: Selecting Air Filters and Smart Ventilation for Thailand’s Climate

บ้านปลอดฝุ่น: เทคนิคเลือกไส้กรองอากาศและระบบระบายอากาศอัจฉริยะสำหรับสภาพอากาศไทย

May 12, 2026 · 1 min read
Dust-Free Home: Selecting Air Filters and Smart Ventilation for Thailand’s Climate

Understanding Air Filter Types

HEPA (High-Efficiency Particulate Air): Captures particles ≥0.3 µm according to grade (H11=95%, H13=99.95%, H14=99.995%). Suited for PM2.5, pathogens, and allergens. Limitation: HEPA does not filter gases or VOCs — must be paired with a carbon filter.

Carbon / Activated Carbon Filter: Adsorbs gas molecules — VOCs, cigarette smoke, odours, formaldehyde, benzene. Limitation: carbon saturates when fully loaded and must be replaced on schedule, not by colour.

Pre-filter (mesh or foam): Catches coarse dust >10 µm before it reaches the HEPA, extending HEPA life 30–50%. Washable with water every 2–4 weeks.

UV-C Steriliser: Kills pathogens and mould spores at 254 nm. Caution: some UV-C units produce ozone. Choose Far-UVC at 222 nm for safer operation.

Electrostatic Precipitator (ESP): Captures dust electrostatically — washable, no filter replacement cost. Some models produce elevated ozone; not recommended for homes with children or elderly residents.

Smart Ventilation for Thailand’s Climate

Thailand presents a specific challenge: 70–95% RH year-round means conventional ventilation draws humid air in with fresh air, forcing the AC to work harder. The solution is an Energy Recovery Ventilator (ERV).

ERV: Exchanges both heat and moisture between incoming and outgoing air streams. Ideal for Thailand — reduces both heat load and humidity from outdoor air. Recommended models: Mitsubishi Lossnay LGH-15RX5-E, Daikin VAM-FA.

HRV: Exchanges heat only — no moisture transfer. Better suited to cold climates; not recommended for Thailand.

Smart Ventilation Control via Home Assistant

Connect an ERV to HA via Modbus, RS-485, or a brand-specific integration and control it based on:

CO2 level: Activate ERV when CO2 exceeds 800 ppm; deactivate below 600 ppm.

Outdoor AQI: Disable ERV and switch to air purifier when outdoor AQI >100 (data from Air4Thai API or AQI.in.th).

Humidity differential: Run ERV only when outdoor humidity is more than 5% lower than indoor humidity — preventing moisture ingress.

yaml
alias: "Smart ERV CO2 Control"
trigger:
  - platform: numeric_state
    entity_id: sensor.living_room_co2
    above: 800
condition:
  - condition: numeric_state
    entity_id: sensor.outdoor_aqi
    below: 100
action:
  - service: fan.turn_on
    target:
      entity_id: fan.erv_ventilator
  - service: fan.set_percentage
    target:
      entity_id: fan.erv_ventilator
    data:
      percentage: 50

Selecting Filters for Each Situation

Home near a busy road or factory: Priority — HEPA H13 > Carbon > Pre-filter. Double the CADR rating to compensate for higher baseline pollution.

Home with pets: Change pre-filter every 2 weeks, add carbon filter for odour control, use HEPA H13 for pet dander.

Home with allergy or asthma sufferers: HEPA H13 minimum; consider H14 for bedrooms. Replace every 6 months.

Home with frequent high-heat cooking: Prioritise carbon filter and a high-performance kitchen hood.

Filter Life and Replacement Schedule

Filter life depends on local air quality, not just elapsed time. During Bangkok’s haze season (January–March), double the inspection frequency. General guidance: pre-filter wash/replace every 2–4 weeks; HEPA replace every 6–12 months; carbon replace every 3–6 months; UV-C lamp replace every 12–18 months. A smart home tracks cumulative run hours and sends replacement alerts automatically.

Questions & answers

What is the difference between ERV and HRV, and which should I use in Thailand?
ERV exchanges both heat and moisture — ideal for hot, humid climates like Thailand. HRV exchanges heat only — better suited to cold climates. Always use an ERV in Thailand.
How often should a carbon filter be replaced?
Generally every 3–6 months, depending on VOC levels. Homes with frequent cooking or fresh paint should replace every 3 months.
Does UV-C in an air purifier produce ozone?
It depends on wavelength. UV-C at 254 nm can produce ozone in some units. Choose Far-UVC at 222 nm which does not produce ozone, or avoid UV-C in homes with children or elderly.
How can a smart home track filter replacement?
Create a Utility Meter in HA to track cumulative purifier run hours. Set an alert when a runtime threshold is reached — e.g. 2,000 hours for a HEPA filter.
How often do filters need replacing in a home with dogs or cats?
Pre-filter every 2 weeks, HEPA every 4–6 months. Add a carbon filter for odour control. Run a HEPA-filter robotic vacuum more frequently to reduce overall filter load.

Related reading