Large Warehouse/Shop Fan (2023)

Credit Cards (MasterCard, Visa, American Express and Discover. For invoices below $5,000.)<\/li>\n<\/ul>\n

Merchandise becomes the full responsibility of the bidder at time of payment and the bidder assumes all risk of loss and damage to property at that time. McLemore Auction Company, LLC reserves the right to resell any property not paid for in full by the conclusion of the stated pickup period. In any such event, the bidder will still be responsible for payment for the original purchase and the costs of collection of this payment and\/or damages resulting from the resale of the property.<\/p>","convenience_fee":"0","affiliate_id":"0","archived":"0","preview_period":"0","state_abbreviation":"TN","registration_time":"","location_override":"","start_end_override":"","time_interval":"1","extended_bidding":"1","description":"

McLemore Auction Company, LLC will sell 90+ lots featuring pallet racks, generators, air compressors, Jet Tools system, AC condensers, hardware, Kenmore microwaves, yard power tools, furniture, and more from a Nashville, TN estate. Everything will sell to the highest bidders no matter the price. The buyer's premium for this auction is 10%.<\/p>\n

Auction Manager:<\/strong>
Ron Brajkovich
(931) 477-6142
ronb@mclemoreauction.com<\/a><\/p>","allow_custom_bids":"","enable_charitable_organizations":"0","increment":"1","starting_bid":"1.00","flat_increment":"0.00","payment_gateway":"AuthDotNet","gateway_account":"","close_groups":"5","extended_bidding_threshold":"5","county":"","extended_bidding_interval":"-5","consignor_id":"0","transcript":"","audio_feed":null,"send_closing_alert":"1","send_admin_closing_alert":"","feed_type":"","completed":"0","flat_rate_shipping":"0.00","paused_time":null,"paused_duration":null,"paused_status":null,"maximum_highbidder_bids":null,"hide_bidhistory_after_sale":"1","currency":"$","clerking_type":"cataloged","aff_logo":null,"blind_bidding":"0","category":"35","shipping_methods":"","documents":[],"time_offset":-3600}; return data;});bidItem.controller('ItemDetailCtrl', ['$scope', '$filter', '$timeout', '$interval', 'bidItemData', function($scope, $filter, $timeout, $interval, bidItemData){ $scope.auction = bidItemData.auction; $scope.item = bidItemData.item; $scope.current_time = current_time; $scope.enable_buy_item_now = enable_buy_item_now; $scope.enable_blind_bidding = enable_blind_bidding; $scope.user_item_distance = 'Calculating...'; $scope.is_admin = false; $.ajax({ type: 'GET', dataType: 'json', url: '/auctionhome/timestamp', async: false, success: function (returndata){ $scope.current_time = parseInt(returndata.current_time, 10); } }); $scope.time_difference = ($scope.current_time - Math.floor(Date.now() / 1000)); if($scope.time_difference > -2 & $scope.time_difference < 2){ $scope.time_difference = 0; } $scope.current_time = (Math.floor(Date.now() / 1000) + $scope.time_difference + $scope.auction.time_offset); $scope.current_user = parseInt(current_user, 10); $scope.seconds = parseInt($scope.item.end_time, 10) - $scope.current_time; $scope.lang = lang; $scope.show_customer_info = show_customer_info; $scope.realtime = realtime; $scope.crowd_bidder = crowd_bidder; $scope.crowd_bidder_username = crowd_bidder_username; $scope.user_deposited_amount = parseInt('0', 10); $scope.disable_bid_history = disable_bidhistory_after_sale; $scope.show_bid_history = true; $scope.item.end_time = parseInt($scope.item.end_time, 10); $scope.item.start_time = parseInt($scope.item.start_time, 10); $scope.item.quantity = parseInt($scope.item.quantity, 10); $scope.item.high_bidder = parseInt($scope.item.high_bidder, 10); $scope.item.buy_now = parseFloat($scope.item.buy_now); $scope.item.current_bid = parseFloat($scope.item.current_bid); $scope.item.minimum_bid = parseFloat($scope.item.minimum_bid); $scope.auction.starts = parseInt($scope.auction.starts, 10); $scope.auction.ends = parseInt($scope.auction.ends, 10); $scope.live_not_started = false; if(is_auction_liveonline){ $scope.live_not_started = $scope.current_time < $scope.auction.ends; } if($scope.disable_bid_history & $scope.item.start_time > 0 && $scope.item.start_time <= $scope.current_time && $scope.item.end_time <= $scope.current_time && (angular.isDefined($scope.auction.hide_bidhistory_after_sale) && parseInt($scope.auction.hide_bidhistory_after_sale))){ $scope.show_bid_history = false; } if($scope.auction.starts > $scope.current_time){ var timeout = parseInt($scope.auction.starts - $scope.current_time + 1)*1000; if(timeout >= 2147483647) timeout = 2147483647; $timeout(function (){ $scope.initData(); }, timeout); } if(is_auction_liveonline & $scope.auction.ends > $scope.current_time){ var timeout = parseInt($scope.auction.ends - $scope.current_time) * 1000; if(timeout >= 2147483647) timeout = 2147483647; setTimeout(function (){ smodal('', 'The live auction has started! Click \'Ok\' to enter the live auction.', true, '', function (){ location.href = '/auction/liveonline/' + $scope.auction.id; }, true, function (){ location.href = '/auction/liveonline/' + $scope.auction.id; }, 0, ''); }, timeout); } if(realtime & ! angular.isDefined($scope.current_interval)){ // Interval is updating current time of the scope $scope.current_interval = $interval(function (){ $scope.current_time = (Math.floor(Date.now() / 1000) + $scope.time_difference + $scope.auction.time_offset); $scope.seconds = $scope.item.end_time - $scope.current_time; if($scope.disable_bid_history & (angular.isDefined($scope.auction.hide_bidhistory_after_sale) && parseInt($scope.auction.hide_bidhistory_after_sale)) && $scope.seconds <= 0){ $scope.show_bid_history = false; } }, 1000); } $scope.scrollToGallery = function(){ $('#imgtab,#detailstab').click(); $('html, body').animate({ scrollTop: $('#itemtabs div.tab_content:visible').offset().top }, 800); }; // Init function of the scope item $scope.initData = function(){ // If auction is ongoing and realtime is enabled then initialize pusher API if(realtime & !angular.isDefined($scope.pusher) && parseInt($scope.auction.starts, 10) <= $scope.current_time && parseInt($scope.item.end_time, 10) > $scope.current_time){ $scope.pusher = new Pusher(pusher_api_key, {cluster: pusher_cluster, disableStats: true, pong_timeout: 20000, activity_timeout: 10000});// Enable for logging pusher events on development, not for production environment// Pusher.log = function(message) {// if (window.console & window.console.log) {// window.console.log(message);// }// }; var first_pusher_connection = true; $scope.pusher.connection.bind('state_change', function(states){ if(states.previous === 'initialized' & states.current === 'connecting'){ return; } if(states.current !== 'connected'){ $timeout(function(){ $scope.show_pusher_warning_alert = true; if(angular.isDefined($scope.current_interval)){ $interval.cancel($scope.current_interval); $scope.current_interval = undefined; } }, 3000); } if((!first_pusher_connection) & states.current === 'connected'){ $scope.show_pusher_warning_alert = false; window.location.reload(); } if(states.current === 'connected'){ first_pusher_connection = false; } }); if(! angular.isDefined($scope.channel)){ $scope.channel = $scope.pusher.subscribe(domain_name + '-auction-' + $scope.auction.id); } if(angular.isDefined($scope.channel)){ $scope.channel.bind('pause', function(){ window.location.reload(); return; }); } } $scope.update_item($scope.item); $scope.softCloseGroupPusherUpdates(); if(realtime & enable_ajax_pusher_updates && (! is_auction_liveonline) && (! is_liveonline_online) && parseInt($scope.auction.starts, 10) <= $scope.current_time && parseInt($scope.item.end_time, 10) > $scope.current_time){ $scope.watchItemsClosing(); } //subscribe to reopen live auction pusher event if(!angular.isDefined($scope.pusher) & typeof (pusher_api_key) !== 'undefined' && enable_ajax_pusher_updates && is_liveonline_online){ $scope.pusher = new Pusher(pusher_api_key, {cluster: pusher_cluster, disableStats: true, pong_timeout: 20000, activity_timeout: 10000}); $scope.auction_reopen_channel = $scope.pusher.subscribe(domain_name + '-reopen_auction-' + $scope.auction.id); $scope.auction_reopen_channel.bind('reopen_auction', function(){ $scope.$apply(function(){ smodal('', 'This Auction has been reopened.', true, '', function (){ window.location.reload(); }, true, function (){ window.location.reload(); }, 0, ''); }); }); } }; // soft close group trigers $scope.softCloseGroupPusherUpdates = function(){ if(realtime & parseInt($scope.auction.starts, 10) <= $scope.current_time && parseInt($scope.item.end_time, 10) > $scope.current_time && ! angular.isDefined($scope.softCloseChannel)){ // Subscribe to soft close pusher API channel $scope.softCloseChannel = $scope.pusher.subscribe(domain_name + '-softclosegroup-' + $scope.item.groupid); } if(realtime & parseInt($scope.auction.starts, 10) <= $scope.current_time && parseInt($scope.item.end_time, 10) > $scope.current_time && angular.isDefined($scope.softCloseChannel)){ $scope.softCloseChannel.bind('softclose', function(data){ $scope.$apply(function(){ // var item = jQuery.extend(true, $scope.item, data.items); // for(var indx2 = 0; indx2 < data.items.length; indx2++){ // if($scope.item.groupid === item[indx2].groupid){ // $scope.item.end_time = item[indx2].end_time; // $scope.item.bidding_extended = item[indx2].bidding_extended; // $scope.update_item($scope.item); // break; // } // } if($scope.item.groupid == data.groupid){ $scope.item.end_time = data.end_time; $scope.item.bidding_extended = data.bidding_extended; $scope.update_item($scope.item, true); } }); }); } }; // Item remaining time clear interval function $scope.removeInterval = function(item){ if(angular.isDefined(item.timeout)){ $timeout.cancel(item.timeout); item.timeout = undefined; } }; // Destroy scope members and API connections $scope.destroy = function(){ if(angular.isDefined($scope.current_interval)){ $interval.cancel($scope.current_interval); $scope.current_interval = undefined; } if(angular.isDefined($scope.item.channel)){ $scope.pusher.unsubscribe(domain_name + '-item-' + $scope.item.id); $scope.item.channel = undefined; } if(angular.isDefined($scope.watch_interval)){ $interval.cancel($scope.watch_interval); $scope.watch_interval = undefined; } }; // Scope event triggered by angular JS $scope.$on('$destroy', function (){ $scope.destroy(); }); // Destroy everything when item is going to close if($scope.item.end_time > $scope.current_time){ var timeout = parseInt($scope.item.end_time - $scope.current_time + 15*60)*1000; if(timeout >= 2147483647) timeout = 2147483647; $timeout(function (){ $scope.destroy(); if($scope.pusher){ $scope.pusher.disconnect(); $scope.show_pusher_warning_alert = false; } }, timeout); } // If auction is closed destory everything if($scope.item.end_time <= $scope.current_time){ $scope.destroy(); if($scope.pusher){ $scope.pusher.disconnect(); $scope.show_pusher_warning_alert = false; } } $scope.refreshPage = function (){ location.reload(); }; // Item initialization and update function $scope.update_item = function(item, ignorePusher){ if(typeof(ignorePusher) === 'undefined'){ ignorePusher = false; } item.end_time = parseInt(item.end_time, 10); item.start_time = parseInt(item.start_time, 10); item.quantity = parseInt(item.quantity, 10); item.high_bidder = parseInt(item.high_bidder, 10); item.buy_now = parseFloat(item.buy_now); item.current_bid = parseFloat(item.current_bid); item.minimum_bid = parseFloat(item.minimum_bid); // Item box highlighting code if(! angular.isDefined(item.highlight)){ item.highlight = ''; } item.url = $filter('slugify')(item.title, item.auction_id, item.id); if($scope.disable_bid_history & $scope.item.start_time > 0 && $scope.item.start_time <= $scope.current_time && $scope.item.end_time <= $scope.current_time && (angular.isDefined($scope.auction.hide_bidhistory_after_sale) && parseInt($scope.auction.hide_bidhistory_after_sale))){ $scope.show_bid_history = false; } item.time_not_set = false; if(item.end_time <= 0 || item.start_time <= 0){ item.time_not_set = true; } $scope.item.buy_now_display = 'Buy Now' + ' ' + $filter('currency')(item.buy_now, '$', decimals) + (item.quantity > 1 ? ' x ' + item.quantity : ''); minbid_quantity = toCurrency(item.minimum_bid, decimals, '$') + (item.quantity > 1 ? (' x ' + item.quantity) : ''); proxy_quantity = toCurrency(item.proxy_bid ? item.proxy_bid : '0', decimals, '$') + (item.quantity > 1 ? (' x ' + item.quantity) : ''); current_bid_quantity = toCurrency(item.current_bid ? item.current_bid : '0', decimals, '$') + (item.quantity > 1 ? (' x ' + item.quantity) : ''); item.proxy_title = " You can enter a new max bid at any time by entering a bid greater than your current high bid. A max bid would make it more difficult for others to outbid you.A max bid is the highest amount you are willing to pay for an auction item.In response to other bids, the auction system will automatically increase your bid in the smallest increment possible (up to your max bid amount) in order to maintain your lead position. To get a max bid you simply enter the maximum amount you are willing to pay into the bid form just as you would any other bid. If your bid is more than one bidding increment above the current high bid you will get a max bid unless another bidder has a max bid in place that is higher than the amount you enter. At the end of the auction, the winning bidder pays only the lowest winning bid possible. That means that you can win an auction item at a price less than your max bid amount.Your max bid amount is kept confidential from other bidders.You can lower or delete a max bid by entering a lower amount.Note: After watching hundreds of auctions and talking to thousands of bidders, we think using max bids in your bidding strategy works best for most people. It eliminates some of the pressure and reduces the risk of "sniping", where other biddersslip in slightly higher bids in the last seconds of bidding."; // Item bid status tooltip logic if(item.high_bidder === $scope.current_user & ((! item.has_reserve) || item.reserve_met)){ if(item.proxy_bid > 0){ item.bid_button_value = lang.adjust_proxy_btn; item.bid_button_title = lang.can_adjust_proxy; item.proxy_title = " You now have a max bid. You can raise or lower your max bid at any time by entering a new amount. If you wish to remove your max bid you can do so by entering an amount equal to the current bid into the bid form."; } else{ item.bid_button_value = lang.add_proxy_btn; item.bid_button_title = lang.can_add_proxy; } } else{ item.bid_button_value = lang.place_bid_btn; item.bid_button_title = lang.can_bid.replace(new RegExp('%s', 'g'), ''+minbid_quantity); } item.reserve_price_display = ((item.reserve_option != 'none') ? ((! item.reserve_met) ? ((item.reserve_option == 'standard') ? 'There is a reserve price that has NOT been met.' : 'Pending Approval' ): ((item.reserve_option == 'standard') ? 'The reserve price HAS been met.' : 'Sells to High Bidder' ) ): ''); item.status = ''; item.status_text = ''; item.bid_status_text = ''; if(has_bids_in_item > 0 & item.high_bidder === $scope.current_user){ item.status = 'winning'; item.bid_status_text = lang.winning_status; } else if(has_bids_in_item > 0){ item.status = 'losing'; item.bid_status_text = lang.losing_status; } if((item.start_time > 0 & item.start_time <= $scope.current_time && item.end_time <= $scope.current_time && $scope.show_bid_history) || (item.first_to_reserve == 1 && item.has_reserve && item.reserve_met)){ item.status_text = 'Bidding is closed.'; if($scope.show_bid_history & ($scope.is_admin || ! ($scope.enable_blind_bidding && $scope.auction.blind_bidding == 1))){ item.status_text += 'High Bid:' + current_bid_quantity + ''; } } else if(item.start_time > 0 & item.start_time > $scope.current_time){ item.status_text = 'Bidding on this item starts Tuesday, January 31, 2023 at 11:00:00 am CT.'; if(item.quantity > 1){ item.status_text += 'This is a per unit bid so the total amount charged will be the the high bid x 1.'; } } else if(item.start_time === 0 || item.end_time === 0){ item.status_text = 'Dates to be announced'; } if(typeof(origin) !== 'undefined' & typeof(destination) !== 'undefined'){ $('.dvprogress').show(); setTimeout(function(){ if(typeof(google) !== 'undefined'){ var service = new google.maps.DistanceMatrixService; service.getDistanceMatrix({ origins: [origin], destinations: [destination], travelMode: google.maps.TravelMode.DRIVING, unitSystem: google.maps.UnitSystem.IMPERIAL, avoidHighways: false, avoidTolls: false }, function(response, status){ $scope.user_item_distance = 'Not Available.'; if(status === google.maps.DistanceMatrixStatus.OK){ var originList = response.originAddresses; for(var i = 0; i < originList.length; i++){ var results = response.rows[i].elements; if(results[0].status !== 'NOT_FOUND' & results[0].status !== 'ZERO_RESULTS'){ for(var j = 0; j < results.length; j++){ if(item.end_time > $scope.current_time){ $scope.user_item_distance = 'Approximately {distance} miles from your registered address'.replace('{distance}', results[j].distance.text.replace(' mi', '')); } else{ $scope.$apply(function (){ $scope.user_item_distance = 'Approximately {distance} miles from your registered address'.replace('{distance}', results[j].distance.text.replace(' mi', '')); }); } } } } } }); } }, 500); } // Item more info tooltip logic item.auction_item_location = ''; address_match = false; if($scope.auction.auction_group_type !== 11 & $scope.auction.auction_group_type !== 12 && $scope.auction.auction_group_type !== 13){ if(item.mapping_city === $scope.auction.city && item.mapping_address === $scope.auction.address && item.mapping_zip === $scope.auction.zip){ address_match = true; } if(! address_match & item.mapping_city && item.state_abbreviation){ address = ''; var display_address = ''; if(item.mapping_address){ address += item.mapping_address + ', '; } address += item.mapping_city + ', ' + item.state_abbreviation; if(item.mapping_zip){ address += ' ' + item.mapping_zip; } if(show_county_info){ if(item.mapping_address){ display_address += item.mapping_address + ', '; } if(typeof(item.mapping_county) !== 'undefined' & item.mapping_county !== ''){ display_address += item.mapping_city + ', ' + item.mapping_county + ', ' + item.state_abbreviation; } else{ display_address += item.mapping_city + ', ' + item.state_abbreviation; } if(item.mapping_zip){ display_address += ' ' + item.mapping_zip; } } var allowAddressCoordinates = true; item.auction_item_location = ''+ ((show_county_info) ? display_address : address) +''; } } // Subscribe item to pusher API item channel if(realtime && item.start_time <= $scope.current_time && item.end_time > $scope.current_time && ! ignorePusher && ! angular.isDefined(item.channel)){ item.channel = $scope.pusher.subscribe(domain_name + '-item-' + item.id); } // Bind item to pusher API item channel callback function if(realtime && item.start_time <= $scope.current_time && item.end_time > $scope.current_time && ! ignorePusher && angular.isDefined(item.channel)){ item.channel.bind('bid', function (data){ $scope.$apply(function (){ if(! angular.isDefined(data.item.result)){ data.item.result = {}; } data.item.result.current_user_winner = parseInt(data.item.high_bidder, 10) === $scope.current_user; if(data.item.result.current_user_winner){ item.highlight = 'highlightg'; $timeout(function (){ item.highlight = ''; }, 3000); } else{ item.highlight = 'highlightr'; $timeout(function (){ item.highlight = ''; }, 3000); } item = jQuery.extend(true, item, data.item); if(! data.item.result.current_user_winner){ item.proxy_bid = 0; } $('#bid-history a.refresh').show(); $('#item-info .flash_error, #item-info .flash_msg').remove(); $scope.update_item(item, true); }); var newText = $('#tbl-details label.tipped').attr('title'); if(typeof (newText) !== 'undefined'){ var trigger = $('#tbl-details label.tipped'); trigger.removeData('tooltip').unbind(); trigger.attr("title", newText); trigger.tooltip(tip_conf).dynamic(); } }); item.channel.bind('pusher:subscription_succeeded', function(data){ $scope.getPusherAJAX(); }); } }; $scope.watchItemsClosing = function (){ if(!angular.isDefined($scope.watch_interval)){ $scope.watch_interval = $interval(function (){ if(!angular.isDefined($scope.item.closed)){ $scope.item.rtime = $scope.item.end_time - $scope.current_time; if($scope.item.rtime <= 10){ $scope.getPusherAJAX(); } } }, 5000); } }; $scope.getPusherAJAX = function(){ var path = '/aucbeat/pusher/' + $scope.auction.id + '-' + $scope.item.id + '.json'; $.get(path, function (data){ if(angular.isDefined(data.item)){ data.item.current_bid = parseFloat(data.item.current_bid); $scope.item.current_bid = parseFloat($scope.item.current_bid); if(data.item.current_bid > $scope.item.current_bid){ $scope.$apply(function (){ if(! angular.isDefined(data.item.result)){ data.item.result = {}; } data.item.result.current_user_winner = parseInt(data.item.high_bidder, 10) === $scope.current_user; if(data.item.result.current_user_winner){ $scope.item.highlight = 'highlightg'; $timeout(function (){ $scope.item.highlight = ''; }, 3000); } else{ $scope.item.highlight = 'highlightr'; $timeout(function (){ $scope.item.highlight = ''; }, 3000); } $scope.item = jQuery.extend(true, $scope.item, data.item); $('#bid-history a.refresh').show(); $('#item-info .flash_error, #item-info .flash_msg').remove(); $scope.update_item($scope.item, true); }); var newText = $('#tbl-details label.tipped').attr('title'); if(typeof (newText) !== 'undefined'){ var trigger = $('#tbl-details label.tipped'); trigger.removeData('tooltip').unbind(); trigger.attr("title", newText); trigger.tooltip(tip_conf).dynamic(); } }else if($scope.item.rtime <-5){ $scope.item.closed = true; if($scope.disable_bid_history && (angular.isDefined($scope.auction.hide_bidhistory_after_sale) && parseInt($scope.auction.hide_bidhistory_after_sale))){ $scope.show_bid_history = false; } } } else if($scope.item.rtime < -5){ $scope.item.closed = true; if($scope.disable_bid_history && (angular.isDefined($scope.auction.hide_bidhistory_after_sale) && parseInt($scope.auction.hide_bidhistory_after_sale))){ $scope.show_bid_history = false; } } }); }; // Initialize item data $scope.initData(); var destroyPusher = function (){ $scope.destroy(); if($scope.pusher){ $scope.pusher.disconnect(); $scope.show_pusher_warning_alert = false; } }; if(window.addEventListener){ window.addEventListener("beforeunload", destroyPusher); } else{ window.attachEvent("beforeunload", destroyPusher); } angular.element(document).ready(function(){ initTips(); setupInfoDiv(); setTimeout(initImgFlipper, 200); }); $('#item-wrapper').show(); clearTimeout(jswarntimeout); $('#jsfmsg').hide();}]);var currencySymbol = '$';var iflipslide_speed = 800;var iflipanim_type = 'swing';var iflip_width = 0;var iflip_height = 0;var setImgHeight = function(img, iheight){ var targetH = 0; if(img.data('ratio') < 1){ targetH = iheight; var margins = ((iflip_width - (iheight*img.data('ratio')))/2)+'px'; img.css({left:margins, right:margins}); } else targetH = iflip_width/img.data('ratio'); var itop = 0; if(targetH < iheight){ itop = (iheight - targetH)/2; } img.css({'width': 'auto', 'max-width' : '100%', 'height': (targetH > iheight ? iheight : targetH)+'px', 'top': itop+'px'});};var imgFlip = function(imgs, left){ timg = $('div#item-image div img.a'); var pa = timg.parent(); pa.find('img').stop(true, true); var cimg = pa.find('img.a'); var nimg = cimg; var inx = 1; if(left){ inx = ((cimg.data('inx') === 0) ? imgs.length : cimg.data('inx')) - 1; cimg.after('Large Warehouse/Shop Fan (1)'); nimg = cimg.next('img').data('inx', inx).data('ratio', imgs[inx].ratio); cimg.css({position:'absolute', zIndex:5, right: '-2px'}).css('left', ''); setImgHeight(nimg, iflip_height); nimg.css({width:'0px', position:'absolute', left:'3px', zIndex:10}).css('right', '').addClass('a'); preimg = new Image(); preimg.src = imgs[((inx === 0) ? imgs.length : inx) - 1].url; cimg.animate({width:'0px', right:'-2px'}, iflipslide_speed, iflipanim_type); var targetW = (Math.floor((nimg.outerHeight()) >= Math.floor(iflip_height)) ? (iflip_height*nimg.data('ratio')) : iflip_width); var targetL = (iflip_width - targetW)/2; nimg.animate({width:targetW+'px',left:(targetL+3)+'px',right:targetL+'px'}, iflipslide_speed, iflipanim_type, function(){cimg.remove();}); } else{ inx = (cimg.data('inx') + 1) % imgs.length; cimg.before('Large Warehouse/Shop Fan (2)'); nimg = cimg.prev('img').data('inx', inx).data('ratio', imgs[inx].ratio); cimg.css({position:'absolute', zIndex:5, left: '3px'}); setImgHeight(nimg, iflip_height); nimg.css({width:'0px', position:'absolute', right:'-2px', zIndex:10}).css('left', '').addClass('a'); preimg = new Image(); preimg.src = imgs[(inx + 1) % imgs.length].url; cimg.animate({width:'0px', left: '3px'}, iflipslide_speed, iflipanim_type); var targetW = (Math.floor((nimg.outerHeight()) >= Math.floor(iflip_height)) ? (iflip_height*nimg.data('ratio')) : iflip_width); var targetL = (iflip_width - targetW)/2; nimg.animate({width:targetW+'px', left:(targetL+3), right:(targetL)+'px'}, iflipslide_speed, iflipanim_type, function(){cimg.remove();}); } return false;};var setItemImageCHeight = function(){ var img_container = $('div#item-image div'); iflip_width = img_container.outerWidth(true) - 6; iflip_height = iflip_width*3/4; img_container.height(iflip_height); timg = img_container.find('img'); timg.attr('src', timg.data('ssrc')); img_container.show(); setImgHeight(img_container.find('img'), iflip_height); img_container.parent().find('span').css({height:(iflip_height+6)+'px','line-height':(iflip_height+6)+'px'});};var initImgFlipper = function(){ setItemImageCHeight(); $(window).resize(setItemImageCHeight); var imgs = []; $('#images,#details-images').find('a').each(function(){ var src = $(this); imgs.push({url:src.attr('href'),ratio:src.data('ratio')}); }); var timg = $('div#item-image div img.a'); timg.data('loaded', 1); timg.data('inx', 0); var pdv = timg.parent().parent(); if(imgs.length > 1){ var iflip_height = pdv.find('div')[0].clientHeight-2; setImgHeight(timg, iflip_height); preimg = new Image(); preimg.src = imgs[1].url; pdv.append(''); pdv.find('span').css({height:(iflip_height+6)+'px','line-height':(iflip_height+6)+'px'}).click(function(ev){ ev.stopPropagation(); imgFlip(imgs, $(this).is('.left')); return false; }); }};

FAQs

What are the best fans to cool a warehouse? ›

Pedestal Fans

They are an excellent way to keep your warehouse or workspace cool without shelling out a small fortune on AC units. One of the best aspects of pedestal fans is that they are lightweight and not permanently mounted, making them convenient to carry across your facility.

What size warehouse fan do I need? ›

For most spaces, a room that is smaller than 350 square feet needs a fan of 52-56 inches while any space over 350 square feet should upgrade to 60 inches for the best airflow.

Are industrial fans worth it? ›

Industrial Fans Are Effective for Some Purposes

You can always find an industrial fan for your setting that will create airflow. Moving air makes industrial fans very effective for purposes like air destratification, ventilation, pressurization, and drying.

What are industrial fans called? ›

Exhaust industrial fans, also referred to as blowers, are designed to create air flow using blades, a hub and shaft, and motor. They are capable of reaching flow rates of 200 cubic feet to 2 million feet per minute.

How many CFM do I need for my warehouse? ›

For warehouses, the ASHRAE minimum ventilation rate is 0.06 CFM per square foot. However, this is a minimum rate and must be adjusted based on occupancy rates, indoor air quality and other factors.

How many CFM do I need for 1000 square feet? ›

Heat and energy recovery ventilators
Total area of home (square feet)Continuous ventilation rate
1,000 square feet50 CFM
2,000 square feet100 CFM
3,000 square feet150 CFM

Which fan is commonly used in a warehouse? ›

There are two types of industrial fans typically used in warehouses: the centrifugal fan and the axial fan. A centrifugal fan blows air out by using deflection and centrifugal force. The air exits the fan at a right angle. These are generally more powerful than axial fans but are also noisier.

Can you leave industrial fans on overnight? ›

Actually, it is recommended to run a whole house exhaust fans overnight. This way, you are cooling more than just the air, you are reducing the temperature of your home's entire structure.

Why do we no longer recommend tower fans? ›

We no longer recommend any tower fans: They're rarely as powerful as a room circulator & very difficult to clean. As we've realized over years of testing fans & other appliances, if something is difficult to clean, you likely won't end up cleaning it all.

Why are metal fans better than plastic? ›

Metal ceiling fans are among the most durable options on the market and are incredibly popular right now. They also cut through the air with very little resistance which provides stronger airflow. As a result, this makes metal ceiling fans ideal for larger areas or in rooms with higher than average ceiling heights.

What fans are used in factories? ›

Most industrial fans may be categorized into one of two general types: centrifugal fans and axial fans.

Why are industrial fans so loud? ›

Industrial fans are loud thanks to their moving parts, often requiring fan noise reduction measures for the safety and comfort of your workplace. First, make sure the inlet and outlet are ducted and/or use a silencer.

Which fan is used in factory? ›

Centrifugal fans (or 'blowers') rely on blades to extract air and gases at right angles and spin the air outwards radially and outwards. This type of industrial blower can operate effectively in environments that have both high pressure and extreme temperatures.

How can I cool my warehouse without AC? ›

How to cool a warehouse without AC
  1. Move stagnant air with HVLS fans. ...
  2. Open windows and doors at night. ...
  3. Use dehumidifiers. ...
  4. Invest in insulation. ...
  5. Replace your roof with a cool roof. ...
  6. Seal air leaks. ...
  7. Keep your HVAC system in tip-top shape. ...
  8. Install smart thermostats.
Jun 21, 2021

What is the rule of thumb for warehouse heating? ›

You should aim for about 10 watts of heating power per square foot of your warehouse. As a general reference, one watt of power is equal to just under three and a half BTU per hour.

How many CFM do I need for 1200 square feet? ›

One cfm is needed per square foot (1 cfm/sq ft) of floor area. This is the average air quantity required for a room or an entire building. This number is based upon an averaged heat load calculation for comfort cooling.

How many CFM do I need for 50 square feet? ›

A 50 CFM rating is recommended as a minimum for bathrooms 50 sq. ft. and smaller. Larger bathrooms require additional ventilation capacity.

How many CFM does a 5 ton unit put out? ›

A 5-ton system should have have 2,000 cfm, a 6-ton system should have 2,400 cfm, and so on and son. Measuring how much airflow measurements deviate from that math is a quick way to diagnose airflow issues in a residential duct system.

How do you cool an efficient warehouse? ›

Here are some ways you can beat the heat this summer to keep your warehouse running smoothly.
  1. Install Screen Doors. ...
  2. Keep Your Warehouse Cool. ...
  3. Keep Up with Cold Storage. ...
  4. Examine Your Warehouse Supplies. ...
  5. Keep your Employees Happy and Healthy. ...
  6. Maintain Proper Inventory Control. ...
  7. Utilize Dehumidifiers. ...
  8. Keep Doors and Gates Closed.
Jun 4, 2018

How do you stay cool in a hot warehouse? ›

Lucky for you, there are many things you can do to stay cool while working in a warehouse in summertime, such as:
  1. Stay Hydrated. Drink plenty of water throughout the work day, as this helps keep your body cool. ...
  2. Eat Healthy Foods. ...
  3. Wear Loose, Light-Colored Clothing. ...
  4. Take Regular Breaks. ...
  5. Beware the Signs of Heat Exhaustion.
Jun 12, 2020

How many Btus do I need to cool a warehouse? ›

The cooling capacity of a 100 square foot building, for example, would be 12,000 British thermal units (Btu). The amount of cooling and heating that is used will be taken into account. You will need 24,000 barrels of cooling for a 300 square foot building that requires 12,000 barrels of cooling.

What are the three 3 most important skills that a warehouse worker should have? ›

The 3 Skills Every Warehouse Worker Should Have
  • #1 Dependable. Every employer in every job type would probably list the ability to rely on their employees as their number one request. ...
  • #2 Flexible. The warehouse world isn't just about being able to lift boxes or drive a forklift. ...
  • #3 Organized.

How can I cool down my factory without AC? ›

Some manual cooling methods
  1. Open some windows and doors.
  2. Manage airflow with fans.
  3. Mount your fans on the ceiling.
  4. Pick the right fan blade for the space.
  5. Space your fans for maximum cooling.
  6. In low humidity climates, try evaporative cooling.
  7. Get maximum control with centralized air conditioning.
Sep 27, 2018

What is the difference between regular fan and industrial fan? ›

Industrial fans are designed with heavier duty materials and components to operate longer, supply greater air flow and pressure, and meet more stringent environmental and ambient requirements.

How many air changes per hour for a warehouse? ›

Warehouse summer ventilation rates typically range from 2 – 4 air-changes per hour. The ventilation rate is calculated taking into consideration the estimated volume of air displaced by the warehouse product.

How can we save electricity in warehouse? ›

7 Tips for Lowering Warehouse Energy Bills
  1. Conduct regular energy efficiency assessments. ...
  2. Install insulated industrial doors. ...
  3. Seal around trailers at dock doors. ...
  4. Install HVLS Fans for Destratification. ...
  5. Section warehouse by temperature. ...
  6. Update your lighting system. ...
  7. Utilize smart doors that monitor energy usage.

How do I keep my warehouse workers happy? ›

“Here are seven ways to keep warehouse workers happy and motivated…”
  1. Proper management. ...
  2. Create healthy work cultures. ...
  3. Offer incentives and perks. ...
  4. Recognize and reward achievements. ...
  5. Commit to workers' well-being and safety. ...
  6. Offer/promote employee development. ...
  7. Lead by example.
Jan 18, 2023

How many tons of cooling do you need for a warehouse? ›

Simple answer: You need 0.0016 tons of AC per square foot. In general, for every 600 sq ft, you need 1 ton of AC. This is a general estimate.

How can I heat my warehouse cheap? ›

Radiant floor heating is the ideal heating solution for warehouses, as it's incredibly effective, energy-efficient, and cost-efficient. Instead of wasting heat on the space 6' and above, radiant floor heating efficiently holds and radiates heat from the slab, heating the space occupied by people.

How do you stay cool in triple digit heat? ›

How to Stay Cool in the Prolonged Heat Wave
  1. Stay in an air-conditioned area during the hottest hours of the day.
  2. Wear light, loose-fitting clothing.
  3. Drink plenty of water (avoid alcohol and sugary drinks) and don't wait until you are thirsty.
  4. Take cool showers.
Aug 30, 2022

Videos

1. INDUSTRIAL FAN SOUNDS 3 Hour FAN NAP to Barrel Fan Noise
(Randall's Rest & Relaxation)
2. Giant Fan White Noise | Powerful Sound for Focus on Homework, Studying, Office Work | 10 Hours
(Relaxing White Noise)
3. Giant Shop Fans - Jay Leno's Garage
(Jay Leno's Garage)
4. JetVent AirMover – Warehouse Cooling Fan
(Fantech)
5. Installing Shop Fans - Big Ass Fans
(April Wilkerson)
6. Industrial Fans, workshop fans, industrial fan, industrial ceiling fan
(James Wu)
Top Articles
Latest Posts
Article information

Author: Clemencia Bogisich Ret

Last Updated: 12/21/2022

Views: 5916

Rating: 5 / 5 (60 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Clemencia Bogisich Ret

Birthday: 2001-07-17

Address: Suite 794 53887 Geri Spring, West Cristentown, KY 54855

Phone: +5934435460663

Job: Central Hospitality Director

Hobby: Yoga, Electronics, Rafting, Lockpicking, Inline skating, Puzzles, scrapbook

Introduction: My name is Clemencia Bogisich Ret, I am a super, outstanding, graceful, friendly, vast, comfortable, agreeable person who loves writing and wants to share my knowledge and understanding with you.