'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Vertical boiler

A vertical boiler is a type of fire-tube or water-tube boiler where the boiler barrel is oriented vertically instead of the more common horizontal orientation. Vertical boilers were used for a variety of steam-powered vehicles and other mobile machines, including early steam locomotives.

Design considerations

Tube arrangements

Many different tube arrangements have been used. Examples include:

  • Vertical fire-tube boiler
  • Vertical boiler with horizontal fire-tubes
  • Vertical cross-tube boiler
  • Field-tube boiler
  • Thimble tube boiler
  • Spiral watertube boiler
  • Advantages

    The main advantages of a vertical boiler are:

  • Small footprint – where width and length constraints are critical, use of a vertical boiler permits design of a smaller machine.
  • Water-level tolerance – The water level in a horizontal boiler must be maintained above the crown (top) of the firebox at all times, or the crownplate could overheat and buckle, causing a boiler explosion. For a vehicle application expected to traverse hills, such as a railway locomotive or steam wagon, maintaining the correct water level when the vehicle itself is not level is a skilled task, and one that occupies much of the fireman's time. In a vertical boiler, the water is all sitting on the top of the firebox, and the boiler would need to be extremely low on water before a gradient could cause a risk by uncovering the firebox top.
  • Podcasts:

    • Simple Vertical Boiler Construction and Working

      #SimpleVerticalBoiler #RKTECHNICALCLASSES Simple vertical boiler : A simple vertical boiler is used for producing steam in small quantities. The pressure of the steam produced is very low. The size of the boiler is small. It may installed in limited space. Facebook: https://www.facebook.com/raja.singh.9421450 Instagram : https://www.instagram.com/raja.109singh previous video related to Locomotive Boiler : https://youtu.be/fkFc-sJo1ao Email id : gyantechanical@gmail.com More video watch on my channel : https://www.youtube.com/c/rktechnicalclassesme

      published: 20 Sep 2020
    • Simple Vertical Boiler

      Working Principle and Construction of Simple Vertical Boiler.

      published: 29 Sep 2021
    • Vertical Firetube Boiler Build!

      This episode on Blondihacks, I'm starting work on a vertical firetube boiler! Exclusive videos, drawings, models & plans available on Patreon! https://www.patreon.com/QuinnDunki Buy Blondihacks stuff in my store! http://www.blondihacks.com/store Books that I used in my design process: Model Boilers and Boiler Making (out of print, still available used) : https://amzn.to/3ejYeG1 Ceramic Burners for Model Steam Boilers : https://amzn.to/3dxZ56P Building Small Boilers For Gas Firing (out of print, available as eBook from UK) : https://www.camdenmin.co.uk/products/building-small-boilers-for-gas-firing Model Boiler regulations in some areas : https://www.homemodelenginemachinist.com/threads/us-state-boiler-code.8141/ Pressure vessels are dangerous. This video is for entertainment purposes on...

      published: 08 May 2021
    • Simple Vertical Boiler

      #simpleverticalboiler #Boiler #classificationofboiler #firetube #watertube #RKTECHNICALCLASSES The equipment used for producing steam is called boiler. A simple vertical boiler is used for producing steam in small quantities. The pressure of the steam produced is very low. The size of boiler is small. it may be installed in limited space. More video watch on my channel and Subscribe to my channel : https://www.youtube.com/c/rktechnicalclassesme Facebook : https://www.facebook.com/raja.singh.9421450 Instagram : https://www.instagram.com/raja.109singh Boiler & Important terms used in boiler : https://youtu.be/_VP6LSYSaMQ Difference between Fire tube boiler and Water tube boiler : https://youtu.be/8pJXNr2QPe8 Cochran Boiler: https://youtu.be/5WlCpggKJTE Babcock and Wilcox boiler :...

      published: 05 May 2021
    • Rigi Railway Steam Loco 7 - Vertical Boiler - Rigi Bahn Zahnraddampflok 7 mit Stehkessel

      For the 150th anniversary of Europe's first rack railway, the vintage 1873 steam locomotive No. 7 was brought back into active service in Central Switzerland for the 2021 season. This is the only operational cog steam loco with a vertical boiler. Designed by legendary engineer Nicklaus Riggenbach for service on the scenic Vitznau - Rigi Bahn (VRB), the unique locomotive has attractive external drive gear and sometimes has also been nicknamed a "Destillery on Wheels", given the shape of its furnace. When not in service for special jubilee events at Mount Rigi, the locomotive is normally on static display at the Verkehrshaus in Lucerne. This short film shows the unusual four-wheeler with just one driven axle power up the gradients between Rigi Staffel and Rigi Kulm in late May 2021. - - ...

      published: 01 Jun 2021
    • 6" Vertical Boiler Build Part 1

      A side project to build a Reeves RV62 6" vertical boiler

      published: 02 Mar 2019
    Simple Vertical Boiler Construction and Working
    6:12

    Simple Vertical Boiler Construction and Working

    • Order:
    • Duration: 6:12
    • Uploaded Date: 20 Sep 2020
    • views: 7678
    #SimpleVerticalBoiler #RKTECHNICALCLASSES Simple vertical boiler : A simple vertical boiler is used for producing steam in small quantities. The pressure of the steam produced is very low. The size of the boiler is small. It may installed in limited space. Facebook: https://www.facebook.com/raja.singh.9421450 Instagram : https://www.instagram.com/raja.109singh previous video related to Locomotive Boiler : https://youtu.be/fkFc-sJo1ao Email id : gyantechanical@gmail.com More video watch on my channel : https://www.youtube.com/c/rktechnicalclassesme
    https://wn.com/Simple_Vertical_Boiler_Construction_And_Working
    Simple Vertical Boiler
    22:54

    Simple Vertical Boiler

    • Order:
    • Duration: 22:54
    • Uploaded Date: 29 Sep 2021
    • views: 1352
    Working Principle and Construction of Simple Vertical Boiler.
    https://wn.com/Simple_Vertical_Boiler
    Vertical Firetube Boiler Build!
    22:53

    Vertical Firetube Boiler Build!

    • Order:
    • Duration: 22:53
    • Uploaded Date: 08 May 2021
    • views: 78946
    This episode on Blondihacks, I'm starting work on a vertical firetube boiler! Exclusive videos, drawings, models & plans available on Patreon! https://www.patreon.com/QuinnDunki Buy Blondihacks stuff in my store! http://www.blondihacks.com/store Books that I used in my design process: Model Boilers and Boiler Making (out of print, still available used) : https://amzn.to/3ejYeG1 Ceramic Burners for Model Steam Boilers : https://amzn.to/3dxZ56P Building Small Boilers For Gas Firing (out of print, available as eBook from UK) : https://www.camdenmin.co.uk/products/building-small-boilers-for-gas-firing Model Boiler regulations in some areas : https://www.homemodelenginemachinist.com/threads/us-state-boiler-code.8141/ Pressure vessels are dangerous. This video is for entertainment purposes only, and you should not use any information contained herein to build your own pressure vessel. It is your responsibility to know what you are doing, and to conform to all local laws and regulations. Here are links for many of the tools that you see me using: (I earn small commissions on these links) • Mill clamping set : https://amzn.to/2xc9vqr • Thread checker : https://amzn.to/2xgO2gc • Chamfering Tool : https://amzn.to/2IJsAUs • Zero Flute Chamfering Tool : https://amzn.to/3bmPLPe • NOGA Deburring set : https://amzn.to/2Jv3RlW • NOGA Reversible Deburring Tool : https://amzn.to/2X07WX1 • Knurling Tool : https://amzn.to/2FblXb1 • Tapered Reamer : https://amzn.to/2Gn0b3G • Chucking Reamer set : https://amzn.to/3odnVvh • Nicholson files : https://amzn.to/2VcHkls • Nicholson needle files : https://amzn.to/2BDt7ph • 1-2-3 Blocks : https://amzn.to/2EvAsGq • Dormer center drills : https://amzn.to/2X7U6ij • 6” Divider : https://amzn.to/2GTncM3 • NOGA arm with magnetic base : https://amzn.to/2U2bGTI • Collet Block set : https://amzn.to/2UkF1vZ • DeWalt portable band saw : https://amzn.to/2U4Mhsw • DeWalt band saw blades : https://amzn.to/2H2J4X0 • High Speed Steel parting blade : https://amzn.to/2YcdYBv • High Speed Steel blade holder : https://amzn.to/2JgO0IK • High Speed Steel tool blanks : https://amzn.to/2H1qoqr • Grizzly Pre-ground tool bits : https://amzn.to/2H4yr5z • AXA tool holders : https://amzn.to/2V1gOHl • Quick Change Toolpost : https://amzn.to/310mshq • Norton oil stone kit : https://amzn.to/2EbLEH3 • Norton small sharpening stone: https://amzn.to/2PQwex9 • End mills : https://amzn.to/2U76Vsf • Milling machine starter pack : https://amzn.to/2tA2M4e • Forceps : https://amzn.to/2Ww5dFT • Mill Parallels : https://amzn.to/2lfW82i • Starrett automatic center punch : https://amzn.to/2DCI7C9 • Budget transfer punch set : https://amzn.to/2yfDgHi • Precision shim stock : https://amzn.to/34lJlME • Jet 2-ton press : https://amzn.to/2SLas1s • Gear Wrench locking puller : https://amzn.to/2ubBV1W • Starrett tap wrenches : https://amzn.to/35jxM9e • Goldenrod oiler : https://amzn.to/2TTS0En • Scotchbrite deburring wheel : https://amzn.to/3ks0P2V • Fein Turbo I shop vac : https://amzn.to/2vXpech • Machinist’s scale : https://amzn.to/2Zk6oVj • Mitutoyo dial caliper : https://amzn.to/2IMIxJE • Mitutoyo micrometer set : https://amzn.to/2GtICPx • Mitutoyo depth micrometer : https://amzn.to/33M8aSH • Mitutoyo edge finder : https://amzn.to/2G36omq • Mitutoyo dial indicator : https://amzn.to/2H09gBr • Mitutoyo dial test indicator : https://amzn.to/2E5lRQw • Mitutoyo telescoping gauge set : https://amzn.to/2Z6houn • Fowler dial bore gauge : https://amzn.to/2KQJNf2 • Fowler inside micrometer : https://amzn.to/2TVm7Jo • Starrett 98-6 Level : https://amzn.to/38K7lMD • Grizzly Height Gage : https://amzn.to/2PDTr7i • The Amateur’s Lathe book : https://amzn.to/3jIYlwe • Anchor Lube : https://amzn.to/2H9X6oQ • Boeshield T-9 : https://amzn.to/2TCE0wB • Brownell’s Oxpho Blue : https://amzn.to/2YhZTmR • JAX Metal Blackener : https://amzn.to/2MVe8wj • Dykem layout fluid : https://amzn.to/2U7KQts • Dykem dauber : https://amzn.to/2uoXtbm • Tap Magic cutting oil : https://amzn.to/37uYzRS • WD-40 : https://amzn.to/2GYV8rY • Loctite 603 : https://amzn.to/2EYsPbi • Loctite 242 : https://amzn.to/2RIt3sQ • Way oil : https://amzn.to/38Gl9qW • High pressure grease : https://amzn.to/2GloHTd • CMD Extreme Pressure lube : https://amzn.to/36JPNy9 • Dry graphite lube : https://amzn.to/2U0YEZH • 3-in-1 oil : https://amzn.to/36in43e • Kroil : https://amzn.to/2uCf1RL • Evaporust : https://amzn.to/36NSkII • Brasso : https://amzn.to/3buE6yL Commenting policy : https://blondihacks.com/commenting-policy/ Want more content like this? Try these places: Blondihacks on Instagram : http://instagram.com/blondihacks/ Blondihacks on Twitter : https://twitter.com/quinndunki Blondihacks on Patreon : https://www.patreon.com/QuinnDunki As an Amazon Associate, I earn from qualifying purchases. Water tube boiler imageb by Jooja - This file was derived from:  Water tube boiler schematic.png:, CC BY-SA 4.0, https://commons.wikimedia.org/w/index.php?curid=97301264
    https://wn.com/Vertical_Firetube_Boiler_Build
    Simple Vertical Boiler
    9:50

    Simple Vertical Boiler

    • Order:
    • Duration: 9:50
    • Uploaded Date: 05 May 2021
    • views: 3174
    #simpleverticalboiler #Boiler #classificationofboiler #firetube #watertube #RKTECHNICALCLASSES The equipment used for producing steam is called boiler. A simple vertical boiler is used for producing steam in small quantities. The pressure of the steam produced is very low. The size of boiler is small. it may be installed in limited space. More video watch on my channel and Subscribe to my channel : https://www.youtube.com/c/rktechnicalclassesme Facebook : https://www.facebook.com/raja.singh.9421450 Instagram : https://www.instagram.com/raja.109singh Boiler & Important terms used in boiler : https://youtu.be/_VP6LSYSaMQ Difference between Fire tube boiler and Water tube boiler : https://youtu.be/8pJXNr2QPe8 Cochran Boiler: https://youtu.be/5WlCpggKJTE Babcock and Wilcox boiler : https://youtu.be/qm5ctdCQsB8 Lancashire Boiler : https://youtu.be/tId7R99aJCk Cornish Boiler : https://youtu.be/mKccHDsPZ3I Locomotive Boiler : https://youtu.be/fkFc-sJo1ao Simple vertical Boiler : https://youtu.be/EYSfM6nu58z Stirling boiler : https://youtu.be/FO3HsC86HOA LaMont boiler : https://youtu.be/h-ytOObw2yI Loeffler Boiler : https://youtu.be/LQSnNVNqO3E Benson Boiler : https://youtu.be/OaczEd6V5eU Velox Boiler : https://youtu.be/vibAHueUTo4 Email id : gyantechanical@gmail.com
    https://wn.com/Simple_Vertical_Boiler
    Rigi Railway Steam Loco 7 - Vertical Boiler - Rigi Bahn Zahnraddampflok 7 mit Stehkessel
    5:09

    Rigi Railway Steam Loco 7 - Vertical Boiler - Rigi Bahn Zahnraddampflok 7 mit Stehkessel

    • Order:
    • Duration: 5:09
    • Uploaded Date: 01 Jun 2021
    • views: 849
    For the 150th anniversary of Europe's first rack railway, the vintage 1873 steam locomotive No. 7 was brought back into active service in Central Switzerland for the 2021 season. This is the only operational cog steam loco with a vertical boiler. Designed by legendary engineer Nicklaus Riggenbach for service on the scenic Vitznau - Rigi Bahn (VRB), the unique locomotive has attractive external drive gear and sometimes has also been nicknamed a "Destillery on Wheels", given the shape of its furnace. When not in service for special jubilee events at Mount Rigi, the locomotive is normally on static display at the Verkehrshaus in Lucerne. This short film shows the unusual four-wheeler with just one driven axle power up the gradients between Rigi Staffel and Rigi Kulm in late May 2021. - - - Kurzfilm mit Impressinen zur legendären Rigi Lok Nr. 7 aus dem Jahre 1873, eine der ersten Maschinen aus der Schmiede der neugegründeten SLM. Die Lok stösst jeweils einen Vorstellwagen den Berg hoch, besonders beliebt ist das Mitfahren im "Körbli", gleich neben dem Kessel.
    https://wn.com/Rigi_Railway_Steam_Loco_7_Vertical_Boiler_Rigi_Bahn_Zahnraddampflok_7_Mit_Stehkessel
    6" Vertical Boiler Build Part 1
    7:00

    6" Vertical Boiler Build Part 1

    • Order:
    • Duration: 7:00
    • Uploaded Date: 02 Mar 2019
    • views: 4945
    A side project to build a Reeves RV62 6" vertical boiler
    https://wn.com/6_Vertical_Boiler_Build_Part_1
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Simple Vertical Boiler Construction and Working
      6:12
      Simple Vertical Boiler Construction and Workingremove from playlist
    • Simple Vertical Boiler
      22:54
      Simple Vertical Boilerremove from playlist
    • Vertical Firetube Boiler Build!
      22:53
      Vertical Firetube Boiler Build!remove from playlist
    • Simple Vertical Boiler
      9:50
      Simple Vertical Boilerremove from playlist
    • Rigi Railway Steam Loco 7 - Vertical Boiler - Rigi Bahn Zahnraddampflok 7 mit Stehkessel
      5:09
      Rigi Railway Steam Loco 7 - Vertical Boiler - Rigi Bahn Zahnraddampflok 7 mit Stehkesselremove from playlist
    PLAYLIST TIME: 0:00 / 1:13:58

    Simple Vertical Boiler Construction and Working

    #SimpleVerticalBoiler #RKTECHNICALCLASSES Simple vertical boiler : A simple vertical boiler is used for producing steam in small quantities. The pressure of the steam produced is very low. The size of the boiler is small. It may installed in limited space. Facebook: https://www.facebook.com/raja.singh.9421450 Instagram : https://www.instagram.com/raja.109singh previous video related to Locomotive Boiler : https://youtu.be/fkFc-sJo1ao Email id : gyantechanical@gmail.com More video watch on my channel : https://www.youtube.com/c/rktechnicalclassesme
    6:12
    Simple Vertical Boiler Construction and Working
    #SimpleVerticalBoiler #RKTECHNICALCLASSES Simple vertical boiler : A simple vertical boil...
    published: 20 Sep 2020
    Play in Full Screen
    22:54
    Simple Vertical Boiler
    Working Principle and Construction of Simple Vertical Boiler.
    published: 29 Sep 2021
    Play in Full Screen
    22:53
    Vertical Firetube Boiler Build!
    This episode on Blondihacks, I'm starting work on a vertical firetube boiler! Exclusive vi...
    published: 08 May 2021
    Play in Full Screen
    9:50
    Simple Vertical Boiler
    #simpleverticalboiler #Boiler #classificationofboiler #firetube #watertube #RKTECHNICALCLA...
    published: 05 May 2021
    Play in Full Screen
    5:09
    Rigi Railway Steam Loco 7 - Vertical Boiler - Rigi Bahn Zahnraddampflok 7 mit Stehkessel
    For the 150th anniversary of Europe's first rack railway, the vintage 1873 steam locomotiv...
    published: 01 Jun 2021
    Play in Full Screen
    7:00
    6" Vertical Boiler Build Part 1
    A side project to build a Reeves RV62 6" vertical boiler
    published: 02 Mar 2019
    Play in Full Screen

    Vertical boiler

    A vertical boiler is a type of fire-tube or water-tube boiler where the boiler barrel is oriented vertically instead of the more common horizontal orientation. Vertical boilers were used for a variety of steam-powered vehicles and other mobile machines, including early steam locomotives.

    Design considerations

    Tube arrangements

    Many different tube arrangements have been used. Examples include:

  • Vertical fire-tube boiler
  • Vertical boiler with horizontal fire-tubes
  • Vertical cross-tube boiler
  • Field-tube boiler
  • Thimble tube boiler
  • Spiral watertube boiler
  • Advantages

    The main advantages of a vertical boiler are:

  • Small footprint – where width and length constraints are critical, use of a vertical boiler permits design of a smaller machine.
  • Water-level tolerance – The water level in a horizontal boiler must be maintained above the crown (top) of the firebox at all times, or the crownplate could overheat and buckle, causing a boiler explosion. For a vehicle application expected to traverse hills, such as a railway locomotive or steam wagon, maintaining the correct water level when the vehicle itself is not level is a skilled task, and one that occupies much of the fireman's time. In a vertical boiler, the water is all sitting on the top of the firebox, and the boiler would need to be extremely low on water before a gradient could cause a risk by uncovering the firebox top.
  • '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×