Friday, April 19, 2019

Attic Heat Pump Troubles

About a year ago (Nov 2017 - May 2018) we have built an addition to our old house. The addition adds third floor master suite above the existing living room (upper level) 540 sqft and extends existing kitchen/living room into the backyard (main floor) 450 sqft total close to 960 sqft.


We (the owners) have asked the builder and his mechanical contractor to install heat/AC unit in the addition attic so that would serve both the upper level and the main floor addition.  This was required mostly to avoid cold A/C air coming from the kitchen floor registers out of the main unit in the basement.

The attic heat pump unit provides heat for the upper level (master suit) and the kitchen below. Choice of heat pump was unfortunate as the owner has dry eyes syndrome.


In this picture taken from the floor of the master suit, the heat pump supply side is visible.


This picture shows the supply (left) and return (right) shaft for the duct work to exchange air from the attic heat pump and kitchen addition space.

Over the summer of 2018 and then the following winter of 2019 we have discovered that the kitchen addition does not get enough air flow. In the summer it was stuffy, and in the winter there was not enough heat delivered to the kitchen to make the stay comfortable. Heat pump would render useless when the outside temperature falls below 32F. If it were not for the fireplace in the kitchen addition, the winter there would have been miserable for us.

We have also noticed that the upper level bedroom gets a lot of fine dust in a matter of two days which was kind of unusual for the house.


Another HVAC specialist was called in to run freon level diagnostics on the heat pump unit and he did not find any leaks or low levels of freon.

To figure out what is going on, we have asked the architect to run Manual J calculations for the addition. Then we called another local HVAC company to take CFM measurements with the heat pump unit fan running to compare the measurements with Manual J calculations.



The heat pump is 2.5 ton. It produces enough BTUs and CFMs for ~960 sqft of the addition space. The heating BTU load per Manual J calculations is 27,211.
The master suite gets its share of CFMs (261), but the main floor kitchen/mudroom addition get only 29 CFMs (9%) instead of the expected 338 CFMs.

Our finding indicated that
  • the upper level master suite of addition gets expected CFMs, 
  • the main level (kitchen extension and mudroom) gets only 9% of the expected CFM.
I went to the attic and examined the unit and all of its connectors and found out that on supply side of the unit 3 out of 7 supply connectors are loose and leaking supply air into vented attic space (air loss). This has been going on since the end of the project in May 2018!

On the return side 1 out of 3 connectors has a gap which most likely contributes to the fine dust and another connector is not properly fastened to the connector and detaches periodically.

Here are some shots from my inspection:



This supply connector does not have metal collar on it and is not screwed to the base. It peeled off and loosing air.




The flexible pipe on this connector is loose because the plastic strap fell off. It also looses air.

The connector below is also peeled off in the spot where it is not screwed to the base. It also looses the air.

This flexible duct is bent to the extreme creating an elbow that would make it hard for the air to travel in the most efficient manner.


This is the return connector from the kitchen level. Its collar ring is missing. The connector is not screwed to the base and it peeled off from the base. Most likely this is how the fine dust gets in the unit and spreads across the living conditioned space.






We have reported first the dust issue to the builder back in November 2018 (6 months ago), and although the house addition is still under warranty, we have not had the issue resolved. Considering the fact that the heat loss diminishes the effectiveness of the unit and fine dust poses risk to developing respiratory deceases such as asthma, it is mind boggling why it takes so long for the HVAC specialist to get back and fix it.

Friday, October 11, 2013

How to enable font subpixel smoothing in gnome-shell (Fedora 18)

The default desktop for Fedora 18, gnome-shell, does not offer an intuitive way to enable font sub-pixel smoothing for LCD monitor. Gnome 2 desktop had Fonts configuration utility for ages, but with gnome-shell, this useful capability is well-hidden.
  • Enable RPM Fusion repository. Click on RPM Fusion free for Fedora 18 link to install repository's configuration on your machine.

  • Install freetype-freeworld fronts package:
     
    $ sudo yum -y install freetype-freeworld
    
    

  • If doesn't exist, create $HOME/.Xresources file and turn subpixel rendering on:
     
    Xft.lcdfilter:  lcddefault
    
    

  • Start gnome-tweak-tool utility and configure:
    • "Font Hinting" to "None"
    • "Font Antialiasing" to "Rgba"



  • Reboot your machine.



  • Login back and validate the settings:
    $ xrdb -query
    
    Xft.antialias: 1
    Xft.dpi: 96
    Xft.hinting: 0
    Xft.hintstyle: hintnone
    Xft.lcdfilter: lcddefault
    Xft.rgba: rgb
    
    

  • You might also upgrade your version of liberation-fonts from Koji build for FC18. They are a good replacement for msttcorefonts.

    If all went as suggested, you should enjoy better-looking desktop.

    In conclusion, I might add that it is a crying shame for gnome-shell developers to destroy well-established Gnome desktop ecosystem in their relentless pursuit of the tablet market at the expense of poor Linux desktop users.

    Friday, September 27, 2013

    How to run GUI applications on Linux with sudo

    Linux graphical system configuration tools such as system-config-printer require running desktop environment. I find myself often in need to configure system from remote desktop (via VNC client) with only sudo privileges available to me. Often such systems don't offer GDM access and limit remote desktop access to a selected group of users with sudo privileges only. If we were to launch system-config-printer from shell prompt as a regular user, we would get Query dialog asking to enter root password:
     
    $ system-config-printer
    
    
    To get around this problem, we need to use 'sudo' command in combination with setting DISPLAY environment variable.
    First, find out your system hostname:
     
    $ hostname
    darkstar
    
    
    Then use sudo:
     
    $ sudo DISPLAY=darkstar:1 system-config-printer
    Enter your password to run commands as root@darkstar: xxxxx  
    
    
    You should see Printer configuration dialog pop-up on your screen.


    Note that I used 'darkstar:1' as my VNC session is :1 in this example. Your settings might differ.