SELECT 
  cscart_products.*, 
  cscart_product_descriptions.*, 
  MIN(
    IF(
      cscart_product_prices.percentage_discount = 0, 
      cscart_product_prices.price, 
      cscart_product_prices.price - (
        cscart_product_prices.price * cscart_product_prices.percentage_discount
      )/ 100
    )
  ) as price, 
  GROUP_CONCAT(
    IF(
      cscart_products_categories.link_type = 'M', 
      CONCAT(
        cscart_products_categories.category_id, 
        'M'
      ), 
      cscart_products_categories.category_id
    )
  ) as category_ids, 
  popularity.total as popularity, 
  IF(
    shared_prices.product_id IS NOT NULL, 
    MIN(
      IF(
        shared_prices.percentage_discount = 0, 
        shared_prices.price, 
        shared_prices.price - (
          shared_prices.price * shared_prices.percentage_discount
        )/ 100
      )
    ), 
    MIN(
      IF(
        cscart_product_prices.percentage_discount = 0, 
        cscart_product_prices.price, 
        cscart_product_prices.price - (
          cscart_product_prices.price * cscart_product_prices.percentage_discount
        )/ 100
      )
    )
  ) as price, 
  companies.company as company_name, 
  cscart_product_sales.amount as sales_amount, 
  cscart_seo_names.name as seo_name, 
  cscart_seo_names.path as seo_path, 
  cscart_discussion.type as discussion_type 
FROM 
  cscart_products 
  LEFT JOIN cscart_product_prices ON cscart_product_prices.product_id = cscart_products.product_id 
  AND cscart_product_prices.lower_limit = 1 
  AND cscart_product_prices.usergroup_id IN (0, 0, 1) 
  LEFT JOIN cscart_product_descriptions ON cscart_product_descriptions.product_id = cscart_products.product_id 
  AND cscart_product_descriptions.lang_code = 'en' 
  LEFT JOIN cscart_ult_product_prices shared_prices ON shared_prices.product_id = cscart_products.product_id 
  AND shared_prices.company_id = 2 
  AND shared_prices.lower_limit = 1 
  AND shared_prices.usergroup_id IN (0, 0, 1) 
  LEFT JOIN cscart_companies as companies ON companies.company_id = cscart_products.company_id 
  INNER JOIN cscart_products_categories ON cscart_products_categories.product_id = cscart_products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = cscart_products_categories.category_id 
  AND cscart_categories.company_id = 2 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND (
    cscart_products.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_products.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_products.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  AND cscart_products.status IN ('A', 'H') 
  LEFT JOIN cscart_product_popularity as popularity ON popularity.product_id = cscart_products.product_id 
  LEFT JOIN cscart_product_sales ON cscart_product_sales.product_id = cscart_products.product_id 
  AND cscart_product_sales.category_id = 432 
  LEFT JOIN cscart_seo_names ON cscart_seo_names.object_id = 396 
  AND cscart_seo_names.type = 'p' 
  AND cscart_seo_names.dispatch = '' 
  AND cscart_seo_names.lang_code = 'en' 
  AND cscart_seo_names.company_id = 2 
  LEFT JOIN cscart_discussion ON cscart_discussion.object_id = cscart_products.product_id 
  AND cscart_discussion.object_type = 'P' 
  AND cscart_discussion.company_id = 2 
WHERE 
  cscart_products.product_id = 396 
  AND (
    companies.status = 'A' 
    OR cscart_products.company_id = 0
  ) 
GROUP BY 
  cscart_products.product_id

Query time 0.00229

Explain
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE cscart_products const PRIMARY,status,product_id_idx,status_idx PRIMARY 3 const 1
1 SIMPLE popularity const PRIMARY,total PRIMARY 3 const 1
1 SIMPLE cscart_product_sales const PRIMARY,pa PRIMARY 6 const,const 1
1 SIMPLE cscart_product_prices ref usergroup,product_id,lower_limit,usergroup_id product_id 3 const 1 Using where
1 SIMPLE cscart_product_descriptions const PRIMARY,product_id PRIMARY 9 const,const 1 Using where
1 SIMPLE shared_prices ref usergroup,product_id,company_id,lower_limit,usergroup_id product_id 3 const 2 Using where
1 SIMPLE companies eq_ref PRIMARY PRIMARY 4 const 1 Using where
1 SIMPLE cscart_products_categories ref PRIMARY,pt,product_id_idx,category_id_idx,product_category_idx,category_product_idx product_id_idx 3 const 10
1 SIMPLE cscart_categories eq_ref PRIMARY,c_status,p_category_id,idx_category_id PRIMARY 3 mahm3t_cs443.cscart_products_categories.category_id 1 Using where
1 SIMPLE cscart_seo_names const PRIMARY,dispatch PRIMARY 210 const,const,const,const,const 1 Using where
1 SIMPLE cscart_discussion const object_id,company_id object_id 10 const,const,const 1 Using where

Result

product_id product_code product_type status company_id list_price amount weight length width height shipping_freight low_avail_limit timestamp updated_timestamp usergroup_ids is_edp edp_shipping unlimited_download tracking free_shipping zero_price_action is_pbp is_op is_oper is_returnable return_period avail_since out_of_stock_actions localization min_qty max_qty qty_step list_qty_count tax_ids age_verification age_limit options_type exceptions_type details_layout shipping_params shipping_availability_id ms_type master_id unit_price aval_status facebook_obj_type cp_additinal_product_enabled cp_additinal_product_items cp_delivery_date youtube_link show_youtube_video replace_main_image size_chart_id staff_notes emo_pn emo_paczka emo_dostawca emo_kreskowy emo_nrdostawcy emo_uwagi emo_source lang_code product shortname short_description full_description meta_keywords meta_description search_words page_title age_warning_message unit_name promo_text stop_words amp_description custom_header price category_ids popularity company_name sales_amount seo_name seo_path discussion_type
396 ODF 871A A 1 0.00 0.00 0.000 0 0 0 0.00 0 1453455842 1743601048 0 N N N O N R N N N Y 10 0 N 0 0 0 0 6 N 0 P F default a:5:{s:16:"min_items_in_box";i:0;s:16:"max_items_in_box";i:0;s:10:"box_length";i:0;s:9:"box_width";i:0;s:10:"box_height";i:0;} 0 M 0 26 0 activity N [] 0 Tam01KuUw8c N N 0 prices adapted 21/10/2022 0 en Roof window FAKRO FTT U8 Thermo | for passive houes <h2>FAKRO FTT U8 Thermo is wooden roof window with quadruple glazing, dedicated to passive houses. Together with Thermo flashing and insulation set gives one of the best U-values on the market and creates super-insulated roof-window-set.</h2> <p style="text-align: justify;">FAKRO FTT U8 window with innovative structure, characterized by superb thermal performance and air-tightness is suitable for air-conditioned rooms with mechanical ventilation systems as well as passive buildings. It offers very good overall heat-transfer coefficient for the whole window, guaranteeing significant energy savings.&nbsp;The glazing unit is set in a specially designed sash frame, which offers wider wooden profiles in comparison with standard windows. The window is equipped with five seals. Such structure minimises thermal bridging and provides improved window insulation.</p> <p style="text-align: justify;">The sash is opened like a pivot window, however axis of rotation of the sash has been raised by 7cm in relation to its geometric centre. Thanks to it, even a tall person can comfortably stand upright by the open roof window. The opened sash can be stopped anywhere between 0° and 40°, because it is supported by an innovatory assisting mechanism. The mechanism balances the forces resulting from the length differences between the upper and lower section of the sash. Large sizes and innovative structural solutions applied in FTT roof windows, ensure high comfort of use of the loft space as well as unobstructed access to the open window.</p> <h2>Benfits of FAKRO FTT U8 Thermo</h2> <p>Installing large, highly energy-efficient FTT windows brings many advantages. The sizeable glazed area ensures effective lighting of the loft and spacial structure applied insulates the interior, thus protecting the room from cooling. The FTT window allows energy from the sun to be harnessed as the solar radiation can pass through the glazing, even in the winter on sunny days, to provide a radient heating effect in the room. The heat is trapped inside the room as glass with low emission coating prevents it from escaping. For this reason, in the winter, rooms in the loft are partially heated in a natural way.</p> <ul style="text-align: justify;"> <li>The sash frame is thicker in comparison with a standard window, manufactured in pine, vacuum impregnated and double coated with <strong>ecological acrylic lacquer;</strong></li> <li><strong>Tripple-chamber passive glazing unit</strong>; consists of four panes of glass. The whole unit incorporates three layers of low-emission coating and warm TGI spacers. Three inter-pane voids are filled with inert gas – krypton. Such structured glazing units provide<strong> superb thermal performance Ug=0.3 W/m²K.</strong></li> <li><strong>Sold as a set with the Thermo flashing and XDK set</strong></li> <li style="text-align: justify;">Glazing seal provides additional tightness in extreme weather conditions and reduces the micro pulses of the cladding profiles during heavy rain;</li> </ul> <p style="text-align: center;"><img alt="Windows to passive houses" src="https://d2d2yzufo5fwh3.cloudfront.net/images/products/fakro/Glazing/U8_glazing.PNG" style="width: 951px; height: 264px;" title="fourfold glass | super energy efficient" /></p> <ul style="text-align: justify;"> <li style="text-align: justify;"><strong>Easy way of cleaning</strong> the outer pane and awning blind installation when <strong>sash rotated through 180 degrees</strong> and locked with bolt;</li> <li style="text-align: justify;"><strong>Anti-burglary topSafe system</strong>: <ul> <li style="text-align: justify;">&nbsp;&nbsp;&nbsp; specially shaped and mounted hinges prevents from forcing of the hinges and sash</li> <li style="text-align: justify;">&nbsp;&nbsp;&nbsp; metal reinforcement makes break-in using a crowbar much more difficult</li> <li style="text-align: justify;">&nbsp;&nbsp;&nbsp; specially reinforced structure and locking parts.</li> </ul> </li> <li style="text-align: justify;">Installed in roofs with pitches between 15° and 70°;</li> <li style="text-align: justify;"><strong>ThermoPro technology:</strong> <ul> <li style="text-align: justify;">improved thermal insulation - lower heating bills, less warm losses</li> <li style="text-align: justify;">increased durability of wood - water drainage channels, protection from moisture</li> <li style="text-align: justify;">tightness of the window - 3rd and 4th tightness class</li> <li style="text-align: justify;">easier installation - pre-fied new brackets make installation quicker</li> </ul> </li> <li style="text-align: justify;">Wide range of internal and external accessories</li> <li style="text-align: justify;"><strong>Warranty</strong> <ul> <li style="text-align: justify;">&nbsp;hail - lifetime warranty</li> <li style="text-align: justify;">&nbsp;<strong>whole window - 10 years</strong></li> <li style="text-align: justify;">&nbsp;<strong>glazing - 20 years</strong></li> <li style="text-align: justify;">&nbsp;hinges, fitting - 20 years</li> </ul> </li> </ul> <h2>Do I need flashing? Which flashing to choose?</h2> <p style="text-align: justify;">Flashings are essential for the correct installation of roof windows. Precisely designed flashing details ensure a durable and tight fit with the roofing material used. The purpose of flashing is to ensure good drainage away from the window and to provide protection from the elements.</p> <p style="text-align: justify;">FTT U8 Thermo window is supplied and installed with <strong>EHV-AT Thermo</strong> flashing is characterised by U-value Uw = 0,58 W/m²K, which makes it one of the most energy-efficient roof window on the market. As standard it is also equipped with <strong>XDK insulation flashing kit,</strong> which consists of XDP insulation and XDS air tight sets. The XDK set enables fast and proper installation of thermal insulation, air permeable and air tight membranes around the window.</p> <h2>FAKRO accessories to roof windows</h2> <p style="text-align: justify;">Each FAKRO roof window can be upgraded by external and internal accessories. FAKRO offers a lot of products from manual decorative blinds, through light control and heat protection to solar or electro Z-wave accessories. FAKRO offers wide range of designs and colors to cater to all tastes.</p> <p style="text-align: justify;">To<strong> choose the perfect FAKRO product</strong> you must precise what destination it should have. It is important to adjust the the roof window to your activity and preferrences. E.eg. in bedroom it is good to install blackout blind, thank's to which sun light, or moon light won't dusturb while sleeping. In an office, living room, kitchen, or bathroom, decorative blind will be enough - just to cover the glass and give the privacy. Anti heat blinds are perfect for all types of rooms. they will prevent from heat and will help to reduce temperature on the attic. Solar-powered and electro Z-wave products are dedicated for those who seek for comfortable, hi tech solutions, want to connect windows and blinds to smart home system or want to use ecological poducts. Also FAKRO solar powered and Z-Wave accessories are perfect for high-installed windows, where manual operation is difficult or not possible. Elegant remote controls will allow to set opening and closing properties.</p> <p>Internal accessories</p> <div style="overflow-x:auto;"> <table border="1" cellpadding="1" cellspacing="1" style="width:870px;"> <tbody> <tr> <td rowspan="2" width="130px">&nbsp;</td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FTS,<br /> FTP,<br /> FTU</span></td> <td rowspan="2" style="text-align: center;" width="52px"><span style="font-size:11px;">FTT U5* FPT U5*</span></td> <td rowspan="2" style="text-align: center;" width="46px"><span style="font-size:11px;">FTT U6,<br /> FTT U8</span></td> <td rowspan="2" style="text-align: center;" width="42px"><span style="font-size:11px;">PTP, PTP-V</span></td> <td rowspan="2" style="text-align: center;" width="42px"><span style="font-size:11px;">FPP-V, FPU-V</span></td> <td rowspan="2" style="text-align: center;" width="38px"><span style="font-size:11px;">PPP-V</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FEP</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">FYP-V</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">PYP-V</span></td> <td colspan="2" rowspan="1" style="text-align: center;"><span style="font-size:11px;">FDY-V</span></td> <td colspan="2" rowspan="1" style="text-align: center;"><span style="font-size:11px;">FGH-V</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">FTP/D, FTU/D</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FXP, FXU</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FWR, FWL</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FWP</span></td> </tr> <tr> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">up.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">bot.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">up.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">bot.<br /> sash</span></td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=404"><span style="font-size:11px;">FAKRO AJP</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><span style="font-size:11px;">FAKRO AJP z-WAVE</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=402"><span style="font-size:11px;">FAKRO ARS</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=7352"><span style="font-size:11px;">FAKRO ARP</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=9933"><span style="font-size:11px;">FAKRO ARP Z-Wave</span></a>,<br /> <span style="font-size:11px;">ARP WiFi</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=4939"><span style="font-size:11px;">FAKRO ARF</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=9931"><span style="font-size:11px;">FAKRO ARF Z-Wave</span></a>, <span style="font-size:11px;">ARF WiFi</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=7351"><span style="font-size:11px;">FAKRO APS</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=10104"><span style="font-size:11px;">FAKRO APF</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><span style="font-size:11px;">FAKRO AMS</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>1</sup></td> <td style="text-align: center;">+<sup>1</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>1</sup></td> <td style="text-align: center;">+<sup>1</sup></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> </tr> </tbody> </table> <p style="text-align: justify;">&nbsp;</p> <p style="text-align: justify;">External accessories</p> <div style="overflow-x:auto;"> <table border="1" cellpadding="1" cellspacing="1" style="width:870px;"> <tbody> <tr> <td rowspan="2" width="130px">&nbsp;</td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FTS,<br /> FTP,<br /> FTU</span></td> <td rowspan="2" style="text-align: center;" width="52px"><span style="font-size:11px;">FTT U5* FPT U5*</span></td> <td rowspan="2" style="text-align: center;" width="46px"><span style="font-size:11px;">FTT U6,<br /> FTT U8</span></td> <td rowspan="2" style="text-align: center;" width="42px"><span style="font-size:11px;">PTP, PTP-V</span></td> <td rowspan="2" style="text-align: center;" width="42px"><span style="font-size:11px;">FPP-V, FPU-V</span></td> <td rowspan="2" style="text-align: center;" width="38px"><span style="font-size:11px;">PPP-V</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FEP</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">FYP-V</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">PYP-V</span></td> <td colspan="2" rowspan="1" style="text-align: center;"><span style="font-size:11px;">FDY-V</span></td> <td colspan="2" rowspan="1" style="text-align: center;"><span style="font-size:11px;">FGH-V</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">FTP/D, FTU/D</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FXP, FXU</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FWR, FWL</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FWP</span></td> </tr> <tr> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">up.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">bot.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">up.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">bot.<br /> sash</span></td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=7353"><span style="font-size:11px;">FAKRO AMZ</span></a>,<br /> <a href="index.php?dispatch=products.view&amp;product_id=7353"><span style="font-size:11px;">AMZ New Line</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=10012"><span style="font-size:11px;">FAKRO AMZ Z-WAVE</span></a>, <a href="index.php?dispatch=products.view&amp;product_id=10013"><span style="font-size:11px;">AMZ Solar</span></a>, <span style="font-size:11px;"><br /> AMZ WiFi</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>3,4</sup></td> <td style="text-align: center;">+<sup>3,4</sup></td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=10011"><span style="font-size:11px;">FAKRO AME</span></a></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=405"><span style="font-size:11px;">FAKRO ARZ-H</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>2</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=406"><span style="font-size:11px;">FAKRO ARZ Z-WAVE</span></a>, <a href="index.php?dispatch=products.view&amp;product_id=407"><span style="font-size:11px;">ARZ Solar</span></a>, <span style="font-size:11px;">ARZ WiFi</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;"><sup>-</sup></td> <td style="text-align: center;">+<sup>2</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> <tr> <td><span style="font-size:11px;">FAKRO ARK-Z Wave, ARK Solar</span></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> </tbody> </table> <ul> <li><span style="font-size:11px;">* - interior accessories for special request, exterior accessoies -standard</span></li> <li><span style="font-size:11px;">1 -for window opening up to 240 cm length</span></li> <li><span style="font-size:11px;">2 - with 20 cm distance between the windows</span></li> <li><span style="font-size:11px;">3 - installation by FAKRO service required</span></li> <li><span style="font-size:11px;">4 - for special request, limited usage</span></li> </ul> </div> </div> <h2>How to choose proper size of FAKRO accessories?</h2> <p style="text-align: justify;">First af all you should check what size does your windows have. You can do it by checking the nameplate from the window. It is placed on the lower part of the sash, and you need to open the window to see it. After establishing the size ofthe window, just choose blind, awning blind, or shutter in the corresponding size.</p> <div style="overflow-x: auto;"> <table border="1" bordercolor="#00cc99" rules="typ"> <tbody> <tr> <td colspan="2" rowspan="1" style="text-align: center;"><strong>Warning!</strong></td> </tr> <tr> <td style="text-align: justify; width: 312px; height: 142px;">The size of e.g. 78x140 cm applies to roof window's size! The blind itself is smaller. Window's size can be found on the nameplate located at the top of the window. There is no need to measeure the window. Just read the size from the nameplate and order accessories in the corresponding size.</td> <td style="text-align: justify; width: 188px; height: 142px;"><img alt="" src="images/products/fakro_nameplate_animated.gif" /></td> </tr> </tbody> </table> </div> <p style="text-align: justify;">All the FAKRO accessories you can find <a href="https://www.baubay.de/sonnenschutz-and-rollladen-en/fur-fakro-und-optilight-dachfenster-en/">here</a></p> <h2>Technical specification of the FAKRO FTT roof windows</h2> <div style="overflow-x:auto;"> <table> <tbody> <tr> <td colspan="3" style="text-align: center;"><strong>FTT</strong> roof windows</td> <td colspan="3" style="text-align: center;"><strong>FTT/U</strong> roof windows</td> </tr> <tr> <td colspan="6" style="text-align: center;">Inside color / outside color:</td> </tr> <tr> <td colspan="3" style="text-align: center;">Natural (wood)<br /> /<br /> Grey (RAL 7022)</td> <td colspan="3" style="text-align: center;">White (NCS S 0502-Y)<br /> /<br /> Grey (RAL 7022)</td> </tr> <tr> <td colspan="6" style="text-align: center;">Construction:</td> </tr> <tr> <td colspan="3" style="text-align: center;">Pine wood coated with 2 layers of transparent lacquer</td> <td colspan="3" style="text-align: center;">Pine wood coated with 3 layers of polyurethane varnish</td> </tr> <tr> <td colspan="6" style="text-align: center;">FAKRO roof window name:</td> </tr> <tr style="background: #333; color: #fff;"> <td style="background: #999; color: #fff; text-align: center;" width="17%">FTT U8</td> <td style="text-align: center;" width="16%"><a href="index.php?dispatch=products.view&amp;product_id=395">FTT U6</a></td> <td style="text-align: center;" width="17%"><a href="index.php?dispatch=products.view&amp;product_id=1646">FTT R3</a></td> <td style="text-align: center;" width="17%"><a href="index.php?dispatch=products.view&amp;product_id=10164">FTT/U U8</a></td> <td style="text-align: center;" width="16%"><a href="index.php?dispatch=products.view&amp;product_id=10163">FTT/U U6</a></td> <td style="text-align: center;" width="17%"><a href="index.php?dispatch=products.view&amp;product_id=10165">FTT/U R3</a></td> </tr> <tr> <td colspan="6" style="text-align: center;">Window U-value [<sup>W</sup>/<sub>m<sup>2</sup>K</sub>]:</td> </tr> <tr> <td style="background: #999; color: #fff; text-align: center;">U<sub>w</sub> = 0,58</td> <td style="text-align: center;">U<sub>w</sub> = 0,80</td> <td style="text-align: center;">U<sub>w</sub> = 0,81</td> <td style="text-align: center;">U<sub>w</sub> = 0,58</td> <td style="text-align: center;">U<sub>w</sub> = 0,80</td> <td style="text-align: center;">U<sub>w</sub> = 0,81</td> </tr> <tr> <td colspan="6" style="text-align: center;">Acoustic insulation [dB]:</td> </tr> <tr> <td style="background: #999; color: #fff; text-align: center;">R<sub>w</sub> = 36 (-2;-5)</td> <td style="text-align: center;">R<sub>w</sub> = 38 (-1;-4)</td> <td style="text-align: center;">R<sub>w</sub> = 42 (-2;-4)</td> <td style="text-align: center;">R<sub>w</sub> = 36 (-2;-5)</td> <td style="text-align: center;">R<sub>w</sub> = 38 (-1;-4)</td> <td style="text-align: center;">R<sub>w</sub> = 42 (-2;-4)</td> </tr> <tr> <td colspan="6" style="text-align: center;">Glazing type and glazing U-value:</td> </tr> <tr> <td style="background: #999; color: #fff; text-align: center;">Quadruple glazing U8<br /> 4H-12-4HT-12-4HT-12-4HT<br /> U<sub>g</sub>=0,3<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> <td style="text-align: center;">Triple glazing U6<br /> 6H-18-4HT-18-33.2T<br /> U<sub>g</sub>=0,5<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> <td style="text-align: center;">Triple glazing R3<br /> 8H-16-4HT-18-33.2SIT<br /> U<sub>g</sub>=0,5<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> <td style="text-align: center;">Quadruple glazing U8<br /> 4H-12-4HT-12-4HT-12-4HT<br /> U<sub>g</sub>=0,3<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> <td style="text-align: center;">Triple glazing U6<br /> 6H-18-4HT-18-33.2T<br /> U<sub>g</sub>=0,5<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> <td style="text-align: center;">Triple glazing R3<br /> 8H-16-4HT-18-33.2SIT<br /> U<sub>g</sub>=0,5<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> </tr> <tr> <td colspan="6" style="text-align: center;">Inner glass:</td> </tr> <tr> <td style="background: #999; color: #fff; text-align: center;">4 mm</td> <td style="text-align: center;">2x 3mm, laminated (class P2A)</td> <td style="text-align: center;">2x 3mm, laminated (class P2A)</td> <td style="text-align: center;">4 mm</td> <td style="text-align: center;">2x 3mm, laminated (class P2A)</td> <td style="text-align: center;">2x 3mm, laminated (class P2A)</td> </tr> <tr> <td colspan="6" style="text-align: center;">External glass:</td> </tr> <tr> <td style="background: #999; color: #fff; text-align: center;">4 mm, toughened</td> <td style="text-align: center;">4 mm, toughened</td> <td style="text-align: center;">4 mm, toughened</td> <td style="text-align: center;">4 mm, toughened</td> <td style="text-align: center;">4 mm, toughened</td> <td style="text-align: center;">4 mm, toughened</td> </tr> <tr> <td colspan="6" style="text-align: center;">Inert gas filled panes:</td> </tr> <tr> <td style="background: #999; color: #fff; text-align: center;">Krypton</td> <td style="text-align: center;">Argon</td> <td style="text-align: center;">Argon</td> <td style="text-align: center;">Krypton</td> <td style="text-align: center;">Argon</td> <td style="text-align: center;">Argon</td> </tr> <tr> <td colspan="6" style="text-align: center;">Spacers:</td> </tr> <tr> <td style="background: #999; color: #fff; text-align: center;">Warm TGI</td> <td style="text-align: center;">Warm TGI</td> <td style="text-align: center;">Warm TGI</td> <td style="text-align: center;">Warm TGI</td> <td style="text-align: center;">Warm TGI</td> <td style="text-align: center;">Warm TGI</td> </tr> <tr> <td colspan="6" style="text-align: center;">Air inlet type (air flow [m<sup>3</sup>/<sub>h</sub>]):</td> </tr> <tr> <td style="background: #999; color: #fff; text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> <tr> <td colspan="6" style="text-align: center;">Installation range (roof slope) :</td> </tr> <tr> <td style="background: #999; color: #fff; text-align: center;">15° - 70°</td> <td style="text-align: center;">15° - 70°</td> <td style="text-align: center;">15° - 70°</td> <td style="text-align: center;">15° - 70°</td> <td style="text-align: center;">15° - 70°</td> <td style="text-align: center;">15° - 70°</td> </tr> </tbody> </table> </div> The warmest roof window on the market, with excellent thermal performance. For passive buildings and air-conditioned interiors. Make your home energy efficient using FAKRO FTT window with quadruple glazing! Wooden roof window FAKRO FTT U8 with quadruple glazing, for passive houses | baubay.de 5046.000000 263,952,948,954 114861 baubaY.de 1 roof-window-fakro-ftt-u8-thermo-passive-glazing 261/954 B