Brunck 0 Denunciar post Postado Fevereiro 7, 2010 Olá, gostaria de saber se alguém sabe a fórmula para cálculo de BTUs para uma área necessária, envolvendo altura, área, quantidade de pessoas e equipamentos eletrônicos. É importante nessa fórmula ter altura também, pois só achei com a área do local. Quem souber, por favor, poste aqui. Achei esse site aqui que parece ser o melhor para esse cálculo: http://www.airservicenh.com.br/index.php?page=shop.product_details&flypage=detalhes_grande&product_id=28&category_id=8&manufacturer_id=0&option=com_virtuemart&Itemid=8#result Abraços e obrigado! Compartilhar este post Link para o post Compartilhar em outros sites
Brunck 0 Denunciar post Postado Fevereiro 7, 2010 Deixa galera, eu peguei a source no javascript dele e já fiz o calculo. Converti para Linguagem Visual Basic: Dim roomHeight Dim roomWidth Dim roomLength Dim btu Dim wia Dim wiaHeight Dim wiaWidth btu = 0 wia = 0 wiaHeight = 0 wiaWidth = 0 wiaHeight = Text5.Text wiaWidth = Text4.Text wia = wiaHeight * wiaWidth wia = wia * 600 roomHeight = Text3.Text roomWidth = Text1.Text roomLength = Text2.Text btu = roomHeight * roomWidth * roomLength btu = btu * 200 btu = btu + wia Text6.Text = btu & " BTUs" Abraços. Compartilhar este post Link para o post Compartilhar em outros sites