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

Dysprosium

Dysprosium is a chemical element with the symbol Dy and atomic number 66. It is a rare earth element with a metallic silver luster. Dysprosium is never found in nature as a free element, though it is found in various minerals, such as xenotime. Naturally occurring dysprosium is composed of seven isotopes, the most abundant of which is 164Dy.

Dysprosium was first identified in 1886 by Paul Émile Lecoq de Boisbaudran, but was not isolated in pure form until the development of ion exchange techniques in the 1950s. Dysprosium is used for its high thermal neutron absorption cross-section in making control rods in nuclear reactors, for its high magnetic susceptibility in data storage applications, and as a component of Terfenol-D. Soluble dysprosium salts are mildly toxic, while the insoluble salts are considered non-toxic.

Characteristics

Physical properties

Dysprosium is a rare earth element that has a metallic, bright silver luster. It is soft enough to be cut with a knife, and can be machined without sparking if overheating is avoided. Dysprosium's physical characteristics can be greatly affected by even small amounts of impurities.

Isotopes of dysprosium

Naturally occurring dysprosium (Dy) is composed of 7 stable isotopes, 156Dy, 158Dy, 160Dy, 161Dy, 162Dy, 163Dy and 164Dy, with 164Dy being the most abundant (28.18% natural abundance). Twenty-nine radioisotopes have been characterized, with the most stable being 154Dy with a half-life of 3.0 million years, 159Dy with a half-life of 144.4 days, and 166Dy with a half-life of 81.6 hours. All of the remaining radioactive isotopes have half-lives that are less than 10 hours, and the majority of these have half-lives that are less than 30 seconds. This element also has 12 meta states, with the most stable being 165mDy (t1/2 1.257 minutes), 147mDy (t1/2 55.7 seconds) and 145mDy (t1/2 13.6 seconds).

The primary decay mode before the most abundant stable isotope, 164Dy, is electron capture, and the primary mode after is beta decay. The primary decay products before 164Dy are terbium isotopes, and the primary products after are holmium isotopes.

Relative atomic mass: 162.500(1).

Podcasts:

  • Dysprosium - THE MOST MUSICAL METAL ON EARTH!

    Patreon: https://www.patreon.com/Thoisoi?ty=h Facebook: https://www.facebook.com/thoisoi2 Instagram: https://www.instagram.com/thoisoi/ Do not repeat the experiments shown in this video! Today I am gonna tell you about a quite unusual metal - dysprosium. As it is clear from the element’s unusual name dysprosium belongs to the lanthanide series where it is preceded by terbium. Like other rare-earth metals dysprosium can be found in various minerals such as xenotime, monazite, gadolinite. The name dysposium is derived from the Greek 'dysprositos', meaning hard to get because it is very hard to extract pure metal from its ore and separate it from other metals. Pure dysposium is a gray metal. My sample is pretty old and has covered in gray oxide layer. Dysprosium is a pretty expensive metal an...

    published: 21 Jul 2018
  • Dysprosium - Periodic Table of Videos

    Dysprosium is element number 66 on the periodic table. More links in description below ↓↓↓ Support Periodic Videos on Patreon: https://www.patreon.com/periodicvideos A video on every element: http://bit.ly/118elements More at http://www.periodicvideos.com/ Follow us on Facebook at http://www.facebook.com/periodicvideos And on Twitter at http://twitter.com/periodicvideos From the School of Chemistry at The University of Nottingham: http://bit.ly/NottChem Periodic Videos films are by video journalist Brady Haran: http://www.bradyharanblog.com Join Brady's mailing list for updates and extra stuff --- http://eepurl.com/YdjL9

    published: 01 Jul 2008
  • Dysprosium Curie Point Demonstration

    I show how the element Dysprosium becomes magnetic when added to liquid nitrogen. Many people have been asking how it gets the energy to run, I've been thinking about this and I believe that it gains its energy from the increase in entropy as the nitrogen boils into a gas while cooling the metal. The cooling decreases the entropy of the metal allowing it to be attracted by the magnet and do work, but Since the gas is escaping the system and increasing the entropy of the universe, it does not violate thermodynamics. Sorry about the audio, Ive looked into it and its not getting any better, I'll see If I can do the next video differently.

    published: 11 Jan 2016
  • Dysprosium

    Dysprosium is a chemical element with the symbol Dy and atomic number 66. It is a rare earth element with a metallic silver luster. Dysprosium is never found in nature as a free element, though it is found in various minerals, such as xenotime. Naturally occurring dysprosium is composed of seven isotopes, the most abundant of which is 164Dy. Dysprosium was first identified in 1886 by Paul Émile Lecoq de Boisbaudran, but was not isolated in pure form until the development of ion exchange techniques in the 1950s. Dysprosium is used for its high thermal neutron absorption cross-section in making control rods in nuclear reactors, for its high magnetic susceptibility in data storage applications, and as a component of Terfenol-D. Soluble dysprosium salts are mildly toxic, while the insoluble sa...

    published: 22 Dec 2015
  • Dysprosium

    Provided to YouTube by Triple Vision Record Distribution Dysprosium · Atsushi Izumi Snow ℗ Subtrakt Released on: 2018-05-15 Artist: Atsushi Izumi Auto-generated by YouTube.

    published: 14 May 2018
  • Dysprosium

    Provided to YouTube by Fandalism Dysprosium · Futurism Dysprosium ℗ 915883 Records DK Released on: 2018-07-14 Auto-generated by YouTube.

    published: 14 Jul 2018
  • Dysprosium Superconductivity Eliminating Resistance to Progress

    Superconductivity -- Eliminating Resistance to Progress In recent years, government regulations on fuel economy have sparked huge changes in the automobile industry, and it is only one of the first of many American industries which will be pushed to reduce CO2 emissions and total energy use as America strives for a greener future. While significant advances have been made in promoting reusable energy sources, the day when all energy produced is renewable is, in all likelihood, far away. Accordingly, a solution is needed which will allow American individuals and industries to consume far less energy in their lives without changing their habits. Such a solution would need to reduce energy use in many areas of society. Superconductors -- materials in which no electrical resistance is pre...

    published: 06 May 2014
  • Magnetic Salt - Dysprosium Nitrate

    We demonstrate the magnetic properties of dysprosium nitrate. Dysprosium nitrate is paramagnetic and is thus attracted to a magnetic field. The salt itself is clear with a beige/yellow tinge and is thus quite unusual among common magnetic materials that are usually opaque or metallic. By itself dysprosium isn't very useful but can adjust the magnetic properties of other materials and is therefore very useful to make the components of motors, actuators and hard drives.

    published: 23 Apr 2012
Dysprosium - THE MOST MUSICAL METAL ON EARTH!
5:36

Dysprosium - THE MOST MUSICAL METAL ON EARTH!

  • Order:
  • Duration: 5:36
  • Uploaded Date: 21 Jul 2018
  • views: 187765
Patreon: https://www.patreon.com/Thoisoi?ty=h Facebook: https://www.facebook.com/thoisoi2 Instagram: https://www.instagram.com/thoisoi/ Do not repeat the experiments shown in this video! Today I am gonna tell you about a quite unusual metal - dysprosium. As it is clear from the element’s unusual name dysprosium belongs to the lanthanide series where it is preceded by terbium. Like other rare-earth metals dysprosium can be found in various minerals such as xenotime, monazite, gadolinite. The name dysposium is derived from the Greek 'dysprositos', meaning hard to get because it is very hard to extract pure metal from its ore and separate it from other metals. Pure dysposium is a gray metal. My sample is pretty old and has covered in gray oxide layer. Dysprosium is a pretty expensive metal and it costs about 20 dollars on ebay. Its physical properties are not that much different from other lanthanides although I have began to question that. For instance a Wikipedia article about the metal in English says that the metal is very soft and that it can even be sliced with a knife. Hm, let us check. I can’t cut it with a knife although it’s possible to cut off a small piece. Probably my sample is just fragile because of its porous structure but it can’t be cut with a knife that is why it is always check if the information is true. Also dysprosium gets attracted to a powerful neodymium magnet quite well, of course not as good as iron. Nevertheless, dysprosium is paramagnetic at room temperatures but if frozen to the temperature of liquid nitrogen it can become ferromagnetic. This property of the metal has applications in a special alloy called terfenol-d the formula of which you can see on your screen. This alloy has a unique property called magnetostriction. To put it simply, if a pole made of this alloy is inserted inside a copper wire coil and alternating current is passed through it, such a pole will be slightly lengthening upon magnetizing and shortening upon demagnetizing. In an alternating magnetic field the pole can quickly change its length and make vibrations that can turn into music! This is where this property of terfenol-d is used - in vibration speakers.
https://wn.com/Dysprosium_The_Most_Musical_Metal_On_Earth
Dysprosium - Periodic Table of Videos
1:42

Dysprosium - Periodic Table of Videos

  • Order:
  • Duration: 1:42
  • Uploaded Date: 01 Jul 2008
  • views: 152332
Dysprosium is element number 66 on the periodic table. More links in description below ↓↓↓ Support Periodic Videos on Patreon: https://www.patreon.com/periodicvideos A video on every element: http://bit.ly/118elements More at http://www.periodicvideos.com/ Follow us on Facebook at http://www.facebook.com/periodicvideos And on Twitter at http://twitter.com/periodicvideos From the School of Chemistry at The University of Nottingham: http://bit.ly/NottChem Periodic Videos films are by video journalist Brady Haran: http://www.bradyharanblog.com Join Brady's mailing list for updates and extra stuff --- http://eepurl.com/YdjL9
https://wn.com/Dysprosium_Periodic_Table_Of_Videos
Dysprosium Curie Point Demonstration
2:36

Dysprosium Curie Point Demonstration

  • Order:
  • Duration: 2:36
  • Uploaded Date: 11 Jan 2016
  • views: 90699
I show how the element Dysprosium becomes magnetic when added to liquid nitrogen. Many people have been asking how it gets the energy to run, I've been thinking about this and I believe that it gains its energy from the increase in entropy as the nitrogen boils into a gas while cooling the metal. The cooling decreases the entropy of the metal allowing it to be attracted by the magnet and do work, but Since the gas is escaping the system and increasing the entropy of the universe, it does not violate thermodynamics. Sorry about the audio, Ive looked into it and its not getting any better, I'll see If I can do the next video differently.
https://wn.com/Dysprosium_Curie_Point_Demonstration
Dysprosium
15:59

Dysprosium

  • Order:
  • Duration: 15:59
  • Uploaded Date: 22 Dec 2015
  • views: 939
Dysprosium is a chemical element with the symbol Dy and atomic number 66. It is a rare earth element with a metallic silver luster. Dysprosium is never found in nature as a free element, though it is found in various minerals, such as xenotime. Naturally occurring dysprosium is composed of seven isotopes, the most abundant of which is 164Dy. Dysprosium was first identified in 1886 by Paul Émile Lecoq de Boisbaudran, but was not isolated in pure form until the development of ion exchange techniques in the 1950s. Dysprosium is used for its high thermal neutron absorption cross-section in making control rods in nuclear reactors, for its high magnetic susceptibility in data storage applications, and as a component of Terfenol-D. Soluble dysprosium salts are mildly toxic, while the insoluble salts are considered non-toxic. This video is targeted to blind users. Attribution: Article text available under CC-BY-SA Creative Commons image source in video
https://wn.com/Dysprosium
Dysprosium
7:30

Dysprosium

  • Order:
  • Duration: 7:30
  • Uploaded Date: 14 May 2018
  • views: 48
Provided to YouTube by Triple Vision Record Distribution Dysprosium · Atsushi Izumi Snow ℗ Subtrakt Released on: 2018-05-15 Artist: Atsushi Izumi Auto-generated by YouTube.
https://wn.com/Dysprosium
Dysprosium
4:54

Dysprosium

  • Order:
  • Duration: 4:54
  • Uploaded Date: 14 Jul 2018
  • views: 11
Provided to YouTube by Fandalism Dysprosium · Futurism Dysprosium ℗ 915883 Records DK Released on: 2018-07-14 Auto-generated by YouTube.
https://wn.com/Dysprosium
Dysprosium Superconductivity   Eliminating Resistance to Progress
8:02

Dysprosium Superconductivity Eliminating Resistance to Progress

  • Order:
  • Duration: 8:02
  • Uploaded Date: 06 May 2014
  • views: 469
Superconductivity -- Eliminating Resistance to Progress In recent years, government regulations on fuel economy have sparked huge changes in the automobile industry, and it is only one of the first of many American industries which will be pushed to reduce CO2 emissions and total energy use as America strives for a greener future. While significant advances have been made in promoting reusable energy sources, the day when all energy produced is renewable is, in all likelihood, far away. Accordingly, a solution is needed which will allow American individuals and industries to consume far less energy in their lives without changing their habits. Such a solution would need to reduce energy use in many areas of society. Superconductors -- materials in which no electrical resistance is present, and therefore can carry current without loss, present a possible means toward this end. In addition to the advances in power transmission that loss-free current could provide, superconductors also can be used to make extremely powerful, low energy electromagnets. This means that superconductors present a method by which electric motors may be drastically improved, and by which frictional personal transportation energy losses may be drastically reduced, as is the case today in experimental superconducting Mag-Lev trains. Unfortunately, the method which is used in the Japanese SC-MAGLEV trains today is not feasible for use in roadways, as the superconducting materials used in these systems only operate at temperatures around -170 degrees Celsius, and therefore require a constant supply of liquid nitrogen for cooling. This method was only made possible recently, by a ceramic (Yttrium barium copper oxide), as well as several similar ceramics, that have been discovered and demonstrate superconductivity at temperatures above the boiling temperature of liquid nitrogen. These materials therefore allow for superconductivity at a much lower cost than previous under 10 degrees Kelvin, and required liquid Helium cooling. Despite this huge benefit, these materials still could be improved. By finding ways to produce materials that are superconductors at even higher temperatures, the potential cost and complexity of such systems could be further reduced. The ways in which these material improvements can be attained can be understood through basic knowledge of what allows for superconductivity. In superconductive metals, superconductivity can be explained as a sudden transformation in which all of the electrons change at the quantum mechanical level, and move together through the material as one entity, without any resistance. In ceramics, however, this theory fails, and superconductivity is still not fully understood. What engineers do know is that the key to increasing the critical temperature at which the ceramics enter the superconducting state is found in increasing the density of CuO2 planes within the material, as well as increasing grain size. Currently, engineers are using complex heat treatments and combinations of elements to attempt to increase this plane density. If they find greater success, this could result in a material with superconducting properties at room temperature, which would make possible "superconducting highways", loss-free power transmission, and lightweight electric motors. Song Names: #1: Untitled by Matt Lockman (featured in video) and Adam Whitener #2: Breathe Easy Remix by DJ Def Chad   Works Cited Informational: 1. "American Magnetics." Superconductivity. American Magnetics Inc. 2012. Accessed April 2014. http://www.americanmagnetics.com/supercon.php 2. Cunningham, Justin. "Superconducting material set to improve performance of electric motors." Eureka. Findlay Media. February 2013. Accessed April 2014. http://www.eurekamagazine.co.uk/design-engineering-features/technology/superconducting-material-set-to-improve-performance-of-electric-motors/47910/ 3. Grant, Paul Michael. "High-temperature superconductivity: The great quantum conundrum." Nature. August 2011. Accessed April 2014. http://goo.gl/FTeyiM 4. "How are these superconductors made?" Colorado Superconductor, Inc. 2001. Accessed April 2014. http://www.users.qwest.net/~csconductor/Experiment_Guide/How%20our%20superconductors%20are%20made.htm 5. Li Shuang. "Energy Impact of Superconductors." Stanford University. Fall 2010. Accessed April 2014. http://large.stanford.edu/courses/2010/ph240/li1/ 6. Livingstone, Paul. "The Business Side Of Superconductivity." R&D Magazine 52.7 (2010): 12-14. Computers & Applied Sciences Complete. Web. 5 May 2014. Remainder of Works Cited including references to videos used can be found on the google plus page for this channel. (due to 5000 character limit on description)
https://wn.com/Dysprosium_Superconductivity_Eliminating_Resistance_To_Progress
Magnetic Salt - Dysprosium Nitrate
0:41

Magnetic Salt - Dysprosium Nitrate

  • Order:
  • Duration: 0:41
  • Uploaded Date: 23 Apr 2012
  • views: 86286
We demonstrate the magnetic properties of dysprosium nitrate. Dysprosium nitrate is paramagnetic and is thus attracted to a magnetic field. The salt itself is clear with a beige/yellow tinge and is thus quite unusual among common magnetic materials that are usually opaque or metallic. By itself dysprosium isn't very useful but can adjust the magnetic properties of other materials and is therefore very useful to make the components of motors, actuators and hard drives.
https://wn.com/Magnetic_Salt_Dysprosium_Nitrate
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Dysprosium - THE MOST MUSICAL METAL ON EARTH!
    5:36
    Dysprosium - THE MOST MUSICAL METAL ON EARTH!remove from playlist
  • Dysprosium - Periodic Table of Videos
    1:42
    Dysprosium - Periodic Table of Videosremove from playlist
  • Dysprosium Curie Point Demonstration
    2:36
    Dysprosium Curie Point Demonstrationremove from playlist
  • Dysprosium
    15:59
    Dysprosiumremove from playlist
  • Dysprosium
    7:30
    Dysprosiumremove from playlist
  • Dysprosium
    4:54
    Dysprosiumremove from playlist
  • Dysprosium Superconductivity   Eliminating Resistance to Progress
    8:02
    Dysprosium Superconductivity Eliminating Resistance to Progressremove from playlist
  • Magnetic Salt - Dysprosium Nitrate
    0:41
    Magnetic Salt - Dysprosium Nitrateremove from playlist
PLAYLIST TIME: 0:00 / 47:00

Dysprosium - THE MOST MUSICAL METAL ON EARTH!

Patreon: https://www.patreon.com/Thoisoi?ty=h Facebook: https://www.facebook.com/thoisoi2 Instagram: https://www.instagram.com/thoisoi/ Do not repeat the experiments shown in this video! Today I am gonna tell you about a quite unusual metal - dysprosium. As it is clear from the element’s unusual name dysprosium belongs to the lanthanide series where it is preceded by terbium. Like other rare-earth metals dysprosium can be found in various minerals such as xenotime, monazite, gadolinite. The name dysposium is derived from the Greek 'dysprositos', meaning hard to get because it is very hard to extract pure metal from its ore and separate it from other metals. Pure dysposium is a gray metal. My sample is pretty old and has covered in gray oxide layer. Dysprosium is a pretty expensive metal and it costs about 20 dollars on ebay. Its physical properties are not that much different from other lanthanides although I have began to question that. For instance a Wikipedia article about the metal in English says that the metal is very soft and that it can even be sliced with a knife. Hm, let us check. I can’t cut it with a knife although it’s possible to cut off a small piece. Probably my sample is just fragile because of its porous structure but it can’t be cut with a knife that is why it is always check if the information is true. Also dysprosium gets attracted to a powerful neodymium magnet quite well, of course not as good as iron. Nevertheless, dysprosium is paramagnetic at room temperatures but if frozen to the temperature of liquid nitrogen it can become ferromagnetic. This property of the metal has applications in a special alloy called terfenol-d the formula of which you can see on your screen. This alloy has a unique property called magnetostriction. To put it simply, if a pole made of this alloy is inserted inside a copper wire coil and alternating current is passed through it, such a pole will be slightly lengthening upon magnetizing and shortening upon demagnetizing. In an alternating magnetic field the pole can quickly change its length and make vibrations that can turn into music! This is where this property of terfenol-d is used - in vibration speakers.
5:36
Dysprosium - THE MOST MUSICAL METAL ON EARTH!
Patreon: https://www.patreon.com/Thoisoi?ty=h Facebook: https://www.facebook.com/thoisoi2 ...
published: 21 Jul 2018
Play in Full Screen
1:42
Dysprosium - Periodic Table of Videos
Dysprosium is element number 66 on the periodic table. More links in description below ↓↓...
published: 01 Jul 2008
Play in Full Screen
2:36
Dysprosium Curie Point Demonstration
I show how the element Dysprosium becomes magnetic when added to liquid nitrogen. Many peo...
published: 11 Jan 2016
Play in Full Screen
15:59
Dysprosium
Dysprosium is a chemical element with the symbol Dy and atomic number 66. It is a rare ear...
published: 22 Dec 2015
Play in Full Screen
7:30
Dysprosium
Provided to YouTube by Triple Vision Record Distribution Dysprosium · Atsushi Izumi Snow...
published: 14 May 2018
Play in Full Screen
4:54
Dysprosium
Provided to YouTube by Fandalism Dysprosium · Futurism Dysprosium ℗ 915883 Records DK ...
published: 14 Jul 2018
Play in Full Screen
8:02
Dysprosium Superconductivity Eliminating Resistance to Progress
Superconductivity -- Eliminating Resistance to Progress In recent years, government regul...
published: 06 May 2014
Play in Full Screen
0:41
Magnetic Salt - Dysprosium Nitrate
We demonstrate the magnetic properties of dysprosium nitrate. Dysprosium nitrate is param...
published: 23 Apr 2012
Play in Full Screen

Dysprosium

Dysprosium is a chemical element with the symbol Dy and atomic number 66. It is a rare earth element with a metallic silver luster. Dysprosium is never found in nature as a free element, though it is found in various minerals, such as xenotime. Naturally occurring dysprosium is composed of seven isotopes, the most abundant of which is 164Dy.

Dysprosium was first identified in 1886 by Paul Émile Lecoq de Boisbaudran, but was not isolated in pure form until the development of ion exchange techniques in the 1950s. Dysprosium is used for its high thermal neutron absorption cross-section in making control rods in nuclear reactors, for its high magnetic susceptibility in data storage applications, and as a component of Terfenol-D. Soluble dysprosium salts are mildly toxic, while the insoluble salts are considered non-toxic.

Characteristics

Physical properties

Dysprosium is a rare earth element that has a metallic, bright silver luster. It is soft enough to be cut with a knife, and can be machined without sparking if overheating is avoided. Dysprosium's physical characteristics can be greatly affected by even small amounts of impurities.

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