Meeting California Title 24 2013

California has slowly (too slowly in our humble opinion!) begun mandating Whole House Fans in certain climate zones.  July 1st, 2014 brings us the latest edition (labelled 2013) of the Title 24 standard that mandates the installation of Whole House Fans in climate zones 8-14.  This applies to designers using the “Prescriptive Standards/Components Package” design method (vs. the Performance Standards method).

Rest assured all AirScape Whole House Fans are Title 24 compliant!

You can find the standard for download on the energy.ca.gov website or via the link below.  Of particular interest is Section 150.1.

2013 Building Energy Efficiency Standards – Title 24

Title 24 position on whole house fans:

12. Ventilation Cooling. Single family homes shall comply with the Whole House Fan (WHF) requirements shown in TABLE 150.1-A. When a WHF is required, comply with Subsections A through C below:
A. Have installed one or more WHFs whose total Air Flow CFM as listed in the CEC Directory is at least 2 CFM/ft2 of conditioned floor area; and
B. Have at least 1 square foot of attic vent free area for each 375 CFM of rated whole house fan Air Flow CFM; and
C. Provide homeowners who have WHFs with a one page “How to operate your whole house fan” informational sheet.

Table 150.1-A in the standard breaks down which zones are required to install the whole house fan.  If you are not sure what climate zone you are in, have a look at the map below or click here for a city by city breakdown.

Title 24 Climate Zones

 

 

Wholesale Distributors Wanted

In order to further promote whole house fans to the HVAC industry and to improve stock availability in certain markets AirScape Inc. has decided to open our products to wholesale distribution.  We support our pro installers and future wholesale distributors with manuals, training and technical support.

If you are interested in selling the best, please contact Nicole Ward @ 541-646-9330 or email experts@airscapefans.com.

splash-distributors--lesstext676

INSTEON Integration with Gen 2 Controls

UPDATE: The controls referenced below are currently only available as an upgrade on Sierra units. For more information please call us at 866.448.4187.

Below is an email from a customer who has integrated his AirScape 2.5e WHF with the INSTEON home automation system.  We love the idea so we are sharing it here with his permission.  Many thanks Jeff!

I wanted to let you know that I received my 2.5e WHF last week, installed it over the weekend , and integrated it with my home automation platform in about 30 minutes this morning. I’m really happy with the 2.5e WHF. It’s much, much quieter than my old Tamarack HV1600, and the build quality is appreciably better. But what I like the most is your IP-based control system and DMP! Which leads me to the HA integration, which I’ll try to summarize briefly:

I have an Insteon-based home automation system. If you’re not familiar with Insteon, you can read about it here. In short, it’s a dual-mesh HA network utilizing powerline and RF transmission. Most of the devices on the network are simple relays or dimmers controlling 120V loads (e.g., light switches), but I also have a number of dry contact sensor and relay controls for integrating devices which utilize contact closure, like my Velux skylights, my driveway gate operator, etc.

The Insteon system allows for simple grouping of devices into “scenes,” but to implement more sophisticated automation, you need a programmable controller. There are several products on the market, but I use an ISY-994i which allows me to write simple event-driven programs to control devices on the Insteon network. The ISY also allows me to define network resources (defined as HTTP requests or simple TCP socket protocols) as devices. So for the fan integration, I defined two network resources:

“WHF speed up”  =  http://whf/fanspd.cgi?dir=1
“WHF off”  =  http://whf/fanspd.cgi?dir=4

In my house I have several Insteon keypads, each of which has multiple buttons linked to various Insteon scenes. Here’s what a typical keypad looks like:

2334-232

The buttons labeled “House fan” and “Fan speed” are associated with two scenes, which not only link all of the other keypads with the same buttons (e.g., entry hallway and master bedroom have equivalent controls), but changing the state of these buttons cause events to “fire” which in turn causes programs to execute.

The “House fan” button toggles between ON and OFF states. When it goes on, a program runs and calls the WHF speed up network resource, which turns the fan on.

When “House fan” button toggles to off, the WHF off network resource is called.

The “Fan speed” button is configured in non-toggle mode, which makes it like a momentary switch. Each press of the button sends an ON command to the group, and causes execution of a program that calls the WHF speed up network resource.

I have a third program which I call “WHF protect” which basically locks out the house fan in the case of air conditioning or heating running, and a few other conditions.

So for a simple control mechanism, that’s all that’s necessary. In the future I may use the temperature data from the WHF controller as input to control logic (e.g., IF outside temp < inside temp AND windows/skylights open, THEN turn on fan), but for now the system is functional using my existing keypads. In fact I didn’t install your wired control in my wall, but I did remove the PCB and temperature sensor and installed it in a return air vent for the purposes of measuring inside air temperature.

Let me know if you have any questions, and thanks for a great product!

-Jeff Mayzurk

Gen 2 Controls API

UPDATE: The controls referenced below are currently only available as an upgrade on Sierra units. For more information please call us at 866.448.4187.

We have recently seen some very cool and imaginative integrations of the AirScape 2nd Gen Controls into home and building automation systems.  Frankly, we could not be happier as this was the intent of introducing network enabled fans like ours.  To help with future integration ideas, here is more info on how our controls communicate.

The API (application programming interface) for our whole house fan web server is very simple.  Its essentially an HTTP command sent to the controller.

http://controllerURL/fanspd.cgi?dir=|1|2|3|4|
where 1=fan speed up, 2=timer hour add, 3=fan speed down, 4=fan off

For example, if you want to turn OFF a fan at IP 192.168.0.20 the command would be:

http://192.168.0.20/fanspd.cgi?dir=4

When you send an API command, you also get an xml data stream back from the controller.

————–Example of xml data ——————

fanspd<fanspd>0</fanspd>
doorinprocess<doorinprocess>0</doorinprocess>
timeremaining<timeremaining>0</timeremaining>
macaddr<macaddr>60:CB:FB:99:99:0A</macaddr>
ipaddr<ipaddr>192.168.0.20</ipaddr>
model<model>2.5eWHF</model>
softver: <softver>2.14.1</softver>
interlock1:<interlock1>0</interlock1>
interlock2: <interlock2>0</interlock2>
cfm: <cfm>0</cfm>
power: <power>0</power>
inside:<house_temp>72</house_temp>
<DNS1>192.168.0.1</DNS1>
attic: <attic_temp>92</attic_temp>
OA: <oa_temp>81</oa_temp>
server response: <server_response>Posted
OK<br/></server_response>
DIP Switches: <DIPS>00000</DIPS>
Remote Switch:<switch2>1111</switch2>
Setpoint:<Setpoint>0</Setpoint>

——————————————————–

If you want to get data from the controller without any control actions, you can send the same HTTP command string without the “?dir=|1|2|3|4|” suffix.

For example, if your fan is at IP 192.168.0.20 the command would be:

http://192.168.0.20/fanspd.cgi

For XML and JSON formatted responses use the following commands with your fan IP inserted:

http://192.168.0.20/status.xml.cgi  gives data in xml format
http://192.168.0.20/status.json.cgi  gives data in json format

As always, if you have any questions on the API or want to brainstorm about your integration call us at 866.448.4187 or email experts@airscapefans.com

IP address reservation on XFINITY / Comcast Routers

Why reserve an IP address?

The AirScape control board gets its IP address from your router through a process called DHCP.  When your router senses that a new device is connected, it assigns an IP address to that device.

A DHCP assigned IP address can and will change over time, but we want a fixed address for our AirScape whole house fan.  With an IP reservation, the router will recognize the fan by its MAC address and then assign it the same IP address each time.  This way, when you use the web browser interface to control your whole house fan you type in the same IP address each time.

Previous blog entry on Dlink router IP reservations.

The video below gives you a brief overview on reserving an IP address on the current (2014) line of XFINITY and Comcast routers:

WHF Discharge into Attics

We occasionally get questions from potential customers about ducting a whole house fan directly outside, instead of having it discharge into the attic.  Have a look at the graph below from our San Jose DMP demo site to illustrate why we recommend discharging into the attic space.

At the end of a hot day, the attic space is around 95 deg F (RED line).  When the whole house fan is started (GRAY line spike to speed 6), the attic temp drops over 10 deg F in just a few minutes.  What you are looking at is the flushing effect of the whole house fan pushing all that hot attic air outside.  Without that flushing effect, the house would continue to have additional heat load from the attic.  This is an additional (bonus) effect on top of the cool outside air being pulled into your living space!

More info on DMP and Demo Page

attic temp