'+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; })); }); -->

RL10

The RL10 is a liquid-fuel cryogenic rocket engine used on the Centaur, S-IV and DCSS upper stages. Built in the United States by Aerojet Rocketdyne (formerly by Pratt & Whitney Rocketdyne), the RL10 burns cryogenic liquid hydrogen and liquid oxygen propellants, with each engine producing 64.7 to 110 kN (14,545–24,729 lbf) of thrust in vacuum depending on the version in use. The RL10 was the first liquid hydrogen rocket engine to be built in the United States, and development of the engine by Marshall Space Flight Center and Pratt & Whitney began in the 1950s, with the first flight occurring in 1961. Several versions of the engine have been flown, with two, the RL10A-4-2 and the RL10B-2, still being produced and flown on the Atlas V and Delta IV.

The engine produces a specific impulse (Isp) of 373 to 470 s (3.66–4.61 km/s) in a vacuum and has a mass ranging from 131 to 317 kg (289–699 lb) (depending on version). Six RL10A-3 engines were used in the S-IV second stage of the Saturn I rocket, one or two RL10 engines are used in the Centaur upper stages of Atlas and Titan rockets and one RL10B-2 is used in the upper stage of Delta IV rockets.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/RL10

Podcasts:

  • The Most Efficient Rocket Engine - The RL10 Expander Cycle Engine

    The new(ish) camera on the Delta IV showed the deployment of the RL-10B Nozzle extension so I thought I'd talk about this workhorse upper stage engine. Lots more info on the evolution can be found on this page: http://www.b14643.de/Spacerockets/Specials/P&W_RL10_engine/

    published: 21 Jan 2019
  • RL-10 Rocket Engine

    Pratt & Whitney Aircraft film on the development of the RL-10 rocket engine--the first commercial engine to be fueled with liquid hydrogen and liquid oxygen. The piece includes footage of the assembly, analysis, and test stand firing of the engine. The film was created for NASA's Lewis Research Center. Transcript: The RL-10 rocket engine, power plant for Centaur and Saturn, is the result of years of development The highest performance engine built in the free world uses safe, reliable, and dependable hydrogen. To maintain the high degree of reliability of the RL-10, vital parts are assembled under stringent laboratory conditions. Following a typical engine through its paces, the thrust chamber tubes are installed. After an assembly is placed over a mandrill, the manifold and fan can be ...

    published: 25 Jun 2019
  • 500 Production RL10 Engines

    AEHF-6 Launch Broadcast video about the 500th Flight of the RL10 upperstage rocket engine

    published: 26 Mar 2020
  • What Is RL10?

    Learn more about the RL10 upper-stage rocket engine, which has helped place hundreds of satellites into orbit and sent spacecraft to explore every planet in our solar system.

    published: 14 Aug 2020
  • BTS - RL10 Aluminum Railing Installation . BTS - RL10 Aluminyum Korkuluk Küpeşte

    www.btsaluminyum.com +90 212 875 17 14 ISTANBUL /TURKEY

    published: 30 Nov 2016
  • Kako montirati aluminijumsku ogradu Lyctum RL10 - Lyctum TV

    Više informacija o aluminijusmkim ogradama dostupno je na https://lyctum.com/aluminijumske-ograde-i-gelenderi/ dok više informacija o samom sistemu RL10 možete pronaći na https://staklene-ograde.com/proizvodi/aluminijumske-staklene-ograde/rl10/ #Lyctum #AluminijumskeOgrade #BTS #StakleneOgrade

    published: 09 Dec 2020
  • Expander Cycle Rocket Engines - Using Waste Heat To Drive Your Rocket

    Another installment of 'Things Kerbal Space Program Doesn't Teach' - explaining the expander cycle rocket engines in more detail. Expander cycles use the waste heat from the combustion chamber and nozzles to boil liquid hydrogen and power the turbines. The main advantages are cooler, less chemically active turbine environments, but if used in a closed cycle design the total thrust is limited. Most of this material is at a pretty high level, I'm not a rocket scientist, I only play one on the internet. Most of the flow schematics are taken from this excellent article by William Green https://blogs.nasa.gov/J2X/2014/03/24/inside-the-leo-doghouse-the-art-of-expander-cycle-engines/ I also took some o https://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19850010710.pdf Also, Emre Kelly's st...

    published: 23 Apr 2019
  • Workhorse RL-10 Engine to Power SLS Artemis Upper Stage

    Aerojet Rocketdyne recently delivered four RL10 upper stage engines to NASA’s Stennis Space Center that will help power NASA’s Space Launch System (SLS) rocket as it carries astronauts aboard the Orion spacecraft to deep space. These missions are part of NASA’s Artemis program, which will land the first woman and next man on the Moon. The SLS Block 1 rocket will use one RL10B-2 engine, the same engine currently used by the Delta IV rocket, as a part of the interim cryogenic propulsion stage (ICPS). As the rocket evolves to a more powerful Block 1B configuration, an exploration upper stage (EUS) will be added. The EUS will use four RL10C-3 engines, and the upgraded rocket will send astronauts tens of thousands of miles beyond the moon to explore deep-space. Aerojet Rocketdyne is under con...

    published: 03 Feb 2020
  • RL-10 Rocket Engine Arrival

    Believed to be the only RL-10 rocket engine in private hands, this workhorse has taken satellites to every planet in our solar system and is still the highest ISP engine in operation today. Photos & background details: https://flic.kr/p/8C89Rh

    published: 25 Dec 2019
The Most Efficient Rocket Engine - The RL10 Expander Cycle Engine
7:39

The Most Efficient Rocket Engine - The RL10 Expander Cycle Engine

  • Order:
  • Duration: 7:39
  • Uploaded Date: 21 Jan 2019
  • views: 133709
The new(ish) camera on the Delta IV showed the deployment of the RL-10B Nozzle extension so I thought I'd talk about this workhorse upper stage engine. Lots more info on the evolution can be found on this page: http://www.b14643.de/Spacerockets/Specials/P&W_RL10_engine/
https://wn.com/The_Most_Efficient_Rocket_Engine_The_Rl10_Expander_Cycle_Engine
RL-10 Rocket Engine
8:04

RL-10 Rocket Engine

  • Order:
  • Duration: 8:04
  • Uploaded Date: 25 Jun 2019
  • views: 102485
Pratt & Whitney Aircraft film on the development of the RL-10 rocket engine--the first commercial engine to be fueled with liquid hydrogen and liquid oxygen. The piece includes footage of the assembly, analysis, and test stand firing of the engine. The film was created for NASA's Lewis Research Center. Transcript: The RL-10 rocket engine, power plant for Centaur and Saturn, is the result of years of development The highest performance engine built in the free world uses safe, reliable, and dependable hydrogen. To maintain the high degree of reliability of the RL-10, vital parts are assembled under stringent laboratory conditions. Following a typical engine through its paces, the thrust chamber tubes are installed. After an assembly is placed over a mandrill, the manifold and fan can be attached. Silver wire is laid in for furnace brazing. Placed in a re-torch, the chamber is ready for a burning. Once brazed, the chamber undergoes testing to assure trouble-free operation. Liquid nitrogen is forced through the chamber to perform thermal shock tests. Pressurized with gaseous nitrogen, the chamber is checked for leaks. The inspected subassembly is dried out in a special oven. Final chamber assembly is completed with the installation of the injectors. A special jig is lowered to accurately align the injectors. Then the chamber goes to final machining prior to the assembly of the complete engine. On the assembly floor, all parts come together, fuel lines, valves, turbo pumps are brought from clean rooms and assembled, installed, and inspected. Multiple inspections of each component and subassembly assures maximum reliability. Ready for action, the completed engine must undergo the test of firing. The Rl-10 is made ready for transport to the test site. The operating principle of the RL-10 can best be shown by this simple diagram. Hydrogen at 37 Rankine, -423 degrees Fahrenheit, enters through the inlet shutoff valve, passes through the first stage pump into the second stage pump, where it is discharged at 1000 pounds per square inch. Then it passes through the cooling jacket manifold, through half of the tubes, through the turnaround manifold, back through the long tubes, to the exit manifold, and through venture to the turbine. At this point, the hydrogen is now gas at 850 pounds per square inch and 350 degrees Rankine, -110 degrees Fahrenheit. And provides the power to drive the hydrogen and oxygen pumps. It then goes to the main shutoff valve, into the injector, and to the combustion chamber. Drawn in through the single-stage oxygen pump, oxygen flows the inlet valve, directly to the mixture-ratio control valve, into the injector to combine with the hydrogen in the chamber. The engine itself is as simple as the diagram. To demonstrate, the hydrogen enters at this point, flows through the first-stage pump, into the second-stage pump, passes through the cooling jacket manifold, down through half the tubes, to the turnaround manifold, up the long tubes, collected at the exit manifold, through the venture, into the turbine. There it provides the power to drive the hydrogen and oxygen pumps. Then around the large line, through the main fuel shutoff valve, into the injector, and then to the combustion chamber. On the oxygen side, oxygen flows through the inlet valve directly to a single-stage pump, through the mixture ratio control valve, into the injector. Arriving at one of the vertical test stands, the RL-10 is installed and made ready for test firing. [Countdown in background]. Space firing conditions will be simulated. The steam injector system lowers the pressure to the near-vacuum of space. [Countdown continues]. On completion of this test firing, the engine will be returned to the manufacturing area for complete disassembly, inspection, and reassembly. Years of experience, research, and development have gone into the design and manufacture of the Pratt & Whitney RL-10 rocket engine. The RL-10 has also undergone space condition testing at the NASA Lewis Research Center, where special viewing ports permit continual visual check of space condition firing. Pratt & Whitney Aircraft’s around-the-clock development program is helping accelerate the United States’ space effort.
https://wn.com/Rl_10_Rocket_Engine
500 Production RL10 Engines
3:01

500 Production RL10 Engines

  • Order:
  • Duration: 3:01
  • Uploaded Date: 26 Mar 2020
  • views: 3223
AEHF-6 Launch Broadcast video about the 500th Flight of the RL10 upperstage rocket engine
https://wn.com/500_Production_Rl10_Engines
What Is RL10?
0:52

What Is RL10?

  • Order:
  • Duration: 0:52
  • Uploaded Date: 14 Aug 2020
  • views: 2312
Learn more about the RL10 upper-stage rocket engine, which has helped place hundreds of satellites into orbit and sent spacecraft to explore every planet in our solar system.
https://wn.com/What_Is_Rl10
BTS - RL10 Aluminum Railing Installation . BTS - RL10 Aluminyum Korkuluk Küpeşte
5:28

BTS - RL10 Aluminum Railing Installation . BTS - RL10 Aluminyum Korkuluk Küpeşte

  • Order:
  • Duration: 5:28
  • Uploaded Date: 30 Nov 2016
  • views: 8149
www.btsaluminyum.com +90 212 875 17 14 ISTANBUL /TURKEY
https://wn.com/Bts_Rl10_Aluminum_Railing_Installation_._Bts_Rl10_Aluminyum_Korkuluk_Küpeşte
Kako montirati aluminijumsku ogradu Lyctum RL10 - Lyctum TV
5:28

Kako montirati aluminijumsku ogradu Lyctum RL10 - Lyctum TV

  • Order:
  • Duration: 5:28
  • Uploaded Date: 09 Dec 2020
  • views: 1978
Više informacija o aluminijusmkim ogradama dostupno je na https://lyctum.com/aluminijumske-ograde-i-gelenderi/ dok više informacija o samom sistemu RL10 možete pronaći na https://staklene-ograde.com/proizvodi/aluminijumske-staklene-ograde/rl10/ #Lyctum #AluminijumskeOgrade #BTS #StakleneOgrade
https://wn.com/Kako_Montirati_Aluminijumsku_Ogradu_Lyctum_Rl10_Lyctum_Tv
Expander Cycle Rocket Engines - Using Waste Heat To Drive Your Rocket
14:43

Expander Cycle Rocket Engines - Using Waste Heat To Drive Your Rocket

  • Order:
  • Duration: 14:43
  • Uploaded Date: 23 Apr 2019
  • views: 324093
Another installment of 'Things Kerbal Space Program Doesn't Teach' - explaining the expander cycle rocket engines in more detail. Expander cycles use the waste heat from the combustion chamber and nozzles to boil liquid hydrogen and power the turbines. The main advantages are cooler, less chemically active turbine environments, but if used in a closed cycle design the total thrust is limited. Most of this material is at a pretty high level, I'm not a rocket scientist, I only play one on the internet. Most of the flow schematics are taken from this excellent article by William Green https://blogs.nasa.gov/J2X/2014/03/24/inside-the-leo-doghouse-the-art-of-expander-cycle-engines/ I also took some o https://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19850010710.pdf Also, Emre Kelly's story on the Dragon capsule RUD https://www.floridatoday.com/story/tech/science/space/2019/04/20/smoke-seen-miles-spacex-crew-dragon-suffers-anomaly-cape-canaveral/3531086002/ John Kraus's Delta IV photo is available from his site: https://www.johnkrausphotos.com/
https://wn.com/Expander_Cycle_Rocket_Engines_Using_Waste_Heat_To_Drive_Your_Rocket
Workhorse RL-10 Engine to Power SLS Artemis Upper Stage
9:42

Workhorse RL-10 Engine to Power SLS Artemis Upper Stage

  • Order:
  • Duration: 9:42
  • Uploaded Date: 03 Feb 2020
  • views: 24184
Aerojet Rocketdyne recently delivered four RL10 upper stage engines to NASA’s Stennis Space Center that will help power NASA’s Space Launch System (SLS) rocket as it carries astronauts aboard the Orion spacecraft to deep space. These missions are part of NASA’s Artemis program, which will land the first woman and next man on the Moon. The SLS Block 1 rocket will use one RL10B-2 engine, the same engine currently used by the Delta IV rocket, as a part of the interim cryogenic propulsion stage (ICPS). As the rocket evolves to a more powerful Block 1B configuration, an exploration upper stage (EUS) will be added. The EUS will use four RL10C-3 engines, and the upgraded rocket will send astronauts tens of thousands of miles beyond the moon to explore deep-space. Aerojet Rocketdyne is under contract to deliver 10 RL10 engines to NASA to support the Artemis program. One of the four engines that were recently delivered will be used to support the Artemis II mission that will use the ICPS upper stage, while the other three are slated to support future Artemis missions aboard the EUS. Delivery of the remaining six engines will be completed by 2021. More info - https://www.nasa.gov/exploration/systems/sls/proven-engine-packs-big-in-space-punch-for-nasa-s-sls-rocket.html Credits: Aerojet Rocketdyne / NASA
https://wn.com/Workhorse_Rl_10_Engine_To_Power_Sls_Artemis_Upper_Stage
RL-10 Rocket Engine Arrival
5:02

RL-10 Rocket Engine Arrival

  • Order:
  • Duration: 5:02
  • Uploaded Date: 25 Dec 2019
  • views: 2717
Believed to be the only RL-10 rocket engine in private hands, this workhorse has taken satellites to every planet in our solar system and is still the highest ISP engine in operation today. Photos & background details: https://flic.kr/p/8C89Rh
https://wn.com/Rl_10_Rocket_Engine_Arrival
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Most Efficient Rocket Engine - The RL10 Expander Cycle Engine
    7:39
    The Most Efficient Rocket Engine - The RL10 Expander Cycle Engineremove from playlist
  • RL-10 Rocket Engine
    8:04
    RL-10 Rocket Engineremove from playlist
  • 500 Production RL10 Engines
    3:01
    500 Production RL10 Enginesremove from playlist
  • What Is RL10?
    0:52
    What Is RL10?remove from playlist
  • Kako montirati aluminijumsku ogradu Lyctum RL10 - Lyctum TV
    5:28
    Kako montirati aluminijumsku ogradu Lyctum RL10 - Lyctum TVremove from playlist
  • Expander Cycle Rocket Engines - Using Waste Heat To Drive Your Rocket
    14:43
    Expander Cycle Rocket Engines - Using Waste Heat To Drive Your Rocketremove from playlist
  • Workhorse RL-10 Engine to Power SLS Artemis Upper Stage
    9:42
    Workhorse RL-10 Engine to Power SLS Artemis Upper Stageremove from playlist
  • RL-10 Rocket Engine Arrival
    5:02
    RL-10 Rocket Engine Arrivalremove from playlist
PLAYLIST TIME: 0:00 / 59:59

The Most Efficient Rocket Engine - The RL10 Expander Cycle Engine

The new(ish) camera on the Delta IV showed the deployment of the RL-10B Nozzle extension so I thought I'd talk about this workhorse upper stage engine. Lots more info on the evolution can be found on this page: http://www.b14643.de/Spacerockets/Specials/P&W_RL10_engine/
7:39
The Most Efficient Rocket Engine - The RL10 Expander Cycle Engine
The new(ish) camera on the Delta IV showed the deployment of the RL-10B Nozzle extension s...
published: 21 Jan 2019
Play in Full Screen
8:04
RL-10 Rocket Engine
Pratt & Whitney Aircraft film on the development of the RL-10 rocket engine--the first com...
published: 25 Jun 2019
Play in Full Screen
3:01
500 Production RL10 Engines
AEHF-6 Launch Broadcast video about the 500th Flight of the RL10 upperstage rocket engine
published: 26 Mar 2020
Play in Full Screen
0:52
What Is RL10?
Learn more about the RL10 upper-stage rocket engine, which has helped place hundreds of sa...
published: 14 Aug 2020
Play in Full Screen
5:28
BTS - RL10 Aluminum Railing Installation . BTS - RL10 Aluminyum Korkuluk Küpeşte
www.btsaluminyum.com +90 212 875 17 14 ISTANBUL /TURKEY
published: 30 Nov 2016
Play in Full Screen
5:28
Kako montirati aluminijumsku ogradu Lyctum RL10 - Lyctum TV
Više informacija o aluminijusmkim ogradama dostupno je na https://lyctum.com/aluminijumske...
published: 09 Dec 2020
Play in Full Screen
14:43
Expander Cycle Rocket Engines - Using Waste Heat To Drive Your Rocket
Another installment of 'Things Kerbal Space Program Doesn't Teach' - explaining the expand...
published: 23 Apr 2019
Play in Full Screen
9:42
Workhorse RL-10 Engine to Power SLS Artemis Upper Stage
Aerojet Rocketdyne recently delivered four RL10 upper stage engines to NASA’s Stennis Spac...
published: 03 Feb 2020
Play in Full Screen
5:02
RL-10 Rocket Engine Arrival
Believed to be the only RL-10 rocket engine in private hands, this workhorse has taken sat...
published: 25 Dec 2019
Play in Full Screen

RL10

The RL10 is a liquid-fuel cryogenic rocket engine used on the Centaur, S-IV and DCSS upper stages. Built in the United States by Aerojet Rocketdyne (formerly by Pratt & Whitney Rocketdyne), the RL10 burns cryogenic liquid hydrogen and liquid oxygen propellants, with each engine producing 64.7 to 110 kN (14,545–24,729 lbf) of thrust in vacuum depending on the version in use. The RL10 was the first liquid hydrogen rocket engine to be built in the United States, and development of the engine by Marshall Space Flight Center and Pratt & Whitney began in the 1950s, with the first flight occurring in 1961. Several versions of the engine have been flown, with two, the RL10A-4-2 and the RL10B-2, still being produced and flown on the Atlas V and Delta IV.

The engine produces a specific impulse (Isp) of 373 to 470 s (3.66–4.61 km/s) in a vacuum and has a mass ranging from 131 to 317 kg (289–699 lb) (depending on version). Six RL10A-3 engines were used in the S-IV second stage of the Saturn I rocket, one or two RL10 engines are used in the Centaur upper stages of Atlas and Titan rockets and one RL10B-2 is used in the upper stage of Delta IV rockets.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/RL10
'); } 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)); } }); }); }); // -->
×