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

Duke Energy

Duke Energy, headquartered in Charlotte, North Carolina, is the largest electric power holding company in the United States, with assets also in Canada and Latin America.

Overview

Based in Charlotte, North Carolina, Duke Energy owns 58,200 megawatts of base-load and peak generation in the United States, which it distributes to its 7.2 million customers. Duke Energy's service territory covers 104,000 square miles (270,000 km2) with 250,200 miles (402,700 km) of distribution lines. In addition, Duke Energy has more than 4,300 megawatts of electric generation in Latin America. It operates eight hydroelectric power plants in Brazil with an installed capacity of 2,307 megawatts. Almost all of Duke Energy's Midwest generation comes from coal, natural gas, or oil, while half of its Carolinas generation comes from its nuclear power plants. During 2006, Duke Energy generated 148,798,332 megawatt-hours of electrical energy.

Duke Energy Renewable Services (DERS), a subsidiary of Duke Energy, specializes in the development, ownership, and operation of various generation facilities throughout the United States. This segment of the company operates 1,700 megawatts of generation. 240 megawatts of wind generation were under construction and 1,500 additional megawatts of wind generation were in planning stages. On September 9, 2008, DERS updated its projections for future wind power capacity. By the end of 2008, it would have over 500 MW of nameplate capacity of wind power online, and an additional 5,000 MW in development.

Podcasts:

  • Duke Energy Foundation 40th Anniversary

    For over 40 years, the Duke Energy Foundation has been helping answer the call of citizenship and service in the communities where we operate. We are proud to showcase the efforts of partnerships that have made a lasting impact in people’s lives.

    published: 26 Jul 2024
  • History of Duke Energy

    The 117-year history of Duke Energy in many ways is the history of energy production in America. And while technologies changed – as did our country – one thing has remained constant: the vision Duke Energy’s founders set forth long ago to safely, reliably and affordably meet the energy needs of our customers, no matter the challenge.

    published: 27 Jan 2022
  • Duke Energy CEO on clean energy transition: Extraordinary opportunity where innovation meets growth

    Lynn Good, Duke Energy chair and CEO, joins 'Squawk on the Street' to discuss long-term energy security, how much of the company's supply is data centers, and how much tech companies are investing to develop this clean energy power.

    published: 30 May 2024
  • Chief Future Officer: Brian Savoy, Duke Energy

    Chief Financial Officers now play a critical role in shaping corporate strategy and positioning organizations to meet future challenges. This episode focuses on Duke Energy CFO Brian Savoy, who tells Alix Steel how the company plans to invest $145 billion over the next decade to transform its energy generation portfolio. -------- Follow Bloomberg for business news & analysis, up-to-the-minute market data, features, profiles and more: http://www.bloomberg.com Connect with us on... Twitter: https://twitter.com/business Facebook: https://www.facebook.com/bloombergbusiness Instagram: https://www.instagram.com/bloombergbusiness/

    published: 03 Nov 2022
  • Duke Energy plans utility bill increases

    Your Duke Energy bill will likely be going up but it's still unclear exactly by how much. North Carolina utility regulators will meet Thursday to discuss how much Duke Energy will be allowed to raise electricity rates, according to WRAL-TV in Raleigh. "Duke Energy has been making investments to strengthen the electric grid to make it more resistant to outages from severe weather and other threats," Duke spokesperson Jeff Brooks said. "We've also been preparing the grid to transform it to be ready for cleaner energy options in the future. All of these investments are delivering very real benefits to customers but there's a cost of that." READ MORE: https://www.wcnc.com/article/money/duke-energy-utilities-commission-north-carolina-rate-hikes/275-035d7267-b2cd-446c-8711-df497b63ea7...

    published: 04 May 2023
  • Duke Energy promises 'self-healing' tech will prevent outages

    Duke Energy says they've been able to prevent tens of thousands of power outages with the help of 'self-healing technology.' FOX 13 Tampa Bay brings you the important videos like breaking news, Tampa Bay weather, and local stories. But also plenty of fun stuff, like 'We Live Here' tips, the best of our archives, and all those 'only-in-Florida' stories. Subscribe to FOX 13 News: https://www.youtube.com/FOX13TampaBay?sub_confirmation=1 Watch more FOX 13 News video: https://fox13news.com/ Watch FOX 13 News live: https://fox13news.com/live Download our app: https://fox13news.onelink.me/Sd7G?pid=social&c=youtube&af_web_dp=https%3A%2F%2Fwww.fox13news.com%2Fapps Get our newsletter: https://www.fox13news.com/email

    published: 11 Jul 2022
  • Duke Energy Looks to Sell $4 Billion Renewable Unit

    Utility giant Duke Energy Corp. is planning to spin off its $4 billion US solar and wind portfolio in what would be one of the nation's biggest renewable sales ever. CEO Lynn Good speaks to Bloomberg's Guy Johnson about the potential deal.

    published: 04 Aug 2022
  • Duke Energy Live Line Demo

    Duke Energy line technicians demonstrate common causes of power outages and safety around power lines.

    published: 05 Aug 2015
  • Duke Energy burns coal like it's 1499

    @Duke.Energy planning to burn coal until 2048 is as backward as using pigeons to send messages. Tell #DarkAgeDuke to join us in the 21st century: SC.org/DarkAgeDuke ► Subscribe to the Sierra Club's YouTube Channel: http://smarturl.it/SierraClub_Subscribe ► Watch more videos from the Sierra Club: https://www.youtube.com/user/NationalSierraClub The Sierra Club is the most enduring and influential grassroots environmental organization in the United States. We amplify the power of our 3.5+ million members and supporters to defend everyone’s right to a healthy world. Stay connected with the Sierra Club online! ► Like us on Facebook: https://www.facebook.com/SierraClub ► Follow us on Twitter: https://twitter.com/sierraclub ► Follow us on Instagram: https://instagram.com/sierraclub

    published: 09 Sep 2019
  • Duke Energy Careers

    Be part of something powerful. Regardless of your skill set or specific interest, we're looking for the best and brightest talent in the industry. Our people make us great - and we're always looking for more. Find your career path at Duke Energy today.

    published: 03 Oct 2017
developed with YouTube
Duke Energy Foundation 40th Anniversary
2:01

Duke Energy Foundation 40th Anniversary

  • Order:
  • Duration: 2:01
  • Uploaded Date: 26 Jul 2024
  • views: 306
For over 40 years, the Duke Energy Foundation has been helping answer the call of citizenship and service in the communities where we operate. We are proud to showcase the efforts of partnerships that have made a lasting impact in people’s lives.
https://wn.com/Duke_Energy_Foundation_40Th_Anniversary
History of Duke Energy
24:15

History of Duke Energy

  • Order:
  • Duration: 24:15
  • Uploaded Date: 27 Jan 2022
  • views: 3993
The 117-year history of Duke Energy in many ways is the history of energy production in America. And while technologies changed – as did our country – one thing has remained constant: the vision Duke Energy’s founders set forth long ago to safely, reliably and affordably meet the energy needs of our customers, no matter the challenge.
https://wn.com/History_Of_Duke_Energy
Duke Energy CEO on clean energy transition: Extraordinary opportunity where innovation meets growth
3:48

Duke Energy CEO on clean energy transition: Extraordinary opportunity where innovation meets growth

  • Order:
  • Duration: 3:48
  • Uploaded Date: 30 May 2024
  • views: 1732
Lynn Good, Duke Energy chair and CEO, joins 'Squawk on the Street' to discuss long-term energy security, how much of the company's supply is data centers, and how much tech companies are investing to develop this clean energy power.
https://wn.com/Duke_Energy_Ceo_On_Clean_Energy_Transition_Extraordinary_Opportunity_Where_Innovation_Meets_Growth
Chief Future Officer: Brian Savoy, Duke Energy
24:06

Chief Future Officer: Brian Savoy, Duke Energy

  • Order:
  • Duration: 24:06
  • Uploaded Date: 03 Nov 2022
  • views: 3884
Chief Financial Officers now play a critical role in shaping corporate strategy and positioning organizations to meet future challenges. This episode focuses on Duke Energy CFO Brian Savoy, who tells Alix Steel how the company plans to invest $145 billion over the next decade to transform its energy generation portfolio. -------- Follow Bloomberg for business news & analysis, up-to-the-minute market data, features, profiles and more: http://www.bloomberg.com Connect with us on... Twitter: https://twitter.com/business Facebook: https://www.facebook.com/bloombergbusiness Instagram: https://www.instagram.com/bloombergbusiness/
https://wn.com/Chief_Future_Officer_Brian_Savoy,_Duke_Energy
Duke Energy plans utility bill increases
0:28

Duke Energy plans utility bill increases

  • Order:
  • Duration: 0:28
  • Uploaded Date: 04 May 2023
  • views: 590
Your Duke Energy bill will likely be going up but it's still unclear exactly by how much. North Carolina utility regulators will meet Thursday to discuss how much Duke Energy will be allowed to raise electricity rates, according to WRAL-TV in Raleigh. "Duke Energy has been making investments to strengthen the electric grid to make it more resistant to outages from severe weather and other threats," Duke spokesperson Jeff Brooks said. "We've also been preparing the grid to transform it to be ready for cleaner energy options in the future. All of these investments are delivering very real benefits to customers but there's a cost of that." READ MORE: https://www.wcnc.com/article/money/duke-energy-utilities-commission-north-carolina-rate-hikes/275-035d7267-b2cd-446c-8711-df497b63ea76
https://wn.com/Duke_Energy_Plans_Utility_Bill_Increases
Duke Energy promises 'self-healing' tech will prevent outages
1:20

Duke Energy promises 'self-healing' tech will prevent outages

  • Order:
  • Duration: 1:20
  • Uploaded Date: 11 Jul 2022
  • views: 2734
Duke Energy says they've been able to prevent tens of thousands of power outages with the help of 'self-healing technology.' FOX 13 Tampa Bay brings you the important videos like breaking news, Tampa Bay weather, and local stories. But also plenty of fun stuff, like 'We Live Here' tips, the best of our archives, and all those 'only-in-Florida' stories. Subscribe to FOX 13 News: https://www.youtube.com/FOX13TampaBay?sub_confirmation=1 Watch more FOX 13 News video: https://fox13news.com/ Watch FOX 13 News live: https://fox13news.com/live Download our app: https://fox13news.onelink.me/Sd7G?pid=social&c=youtube&af_web_dp=https%3A%2F%2Fwww.fox13news.com%2Fapps Get our newsletter: https://www.fox13news.com/email
https://wn.com/Duke_Energy_Promises_'Self_Healing'_Tech_Will_Prevent_Outages
Duke Energy Looks to Sell $4 Billion Renewable Unit
6:48

Duke Energy Looks to Sell $4 Billion Renewable Unit

  • Order:
  • Duration: 6:48
  • Uploaded Date: 04 Aug 2022
  • views: 3348
Utility giant Duke Energy Corp. is planning to spin off its $4 billion US solar and wind portfolio in what would be one of the nation's biggest renewable sales ever. CEO Lynn Good speaks to Bloomberg's Guy Johnson about the potential deal.
https://wn.com/Duke_Energy_Looks_To_Sell_4_Billion_Renewable_Unit
Duke Energy Live Line Demo
28:23

Duke Energy Live Line Demo

  • Order:
  • Duration: 28:23
  • Uploaded Date: 05 Aug 2015
  • views: 84199
Duke Energy line technicians demonstrate common causes of power outages and safety around power lines.
https://wn.com/Duke_Energy_Live_Line_Demo
Duke Energy burns coal like it's 1499
1:01

Duke Energy burns coal like it's 1499

  • Order:
  • Duration: 1:01
  • Uploaded Date: 09 Sep 2019
  • views: 4316
@Duke.Energy planning to burn coal until 2048 is as backward as using pigeons to send messages. Tell #DarkAgeDuke to join us in the 21st century: SC.org/DarkAgeDuke ► Subscribe to the Sierra Club's YouTube Channel: http://smarturl.it/SierraClub_Subscribe ► Watch more videos from the Sierra Club: https://www.youtube.com/user/NationalSierraClub The Sierra Club is the most enduring and influential grassroots environmental organization in the United States. We amplify the power of our 3.5+ million members and supporters to defend everyone’s right to a healthy world. Stay connected with the Sierra Club online! ► Like us on Facebook: https://www.facebook.com/SierraClub ► Follow us on Twitter: https://twitter.com/sierraclub ► Follow us on Instagram: https://instagram.com/sierraclub
https://wn.com/Duke_Energy_Burns_Coal_Like_It's_1499
Duke Energy Careers
0:53

Duke Energy Careers

  • Order:
  • Duration: 0:53
  • Uploaded Date: 03 Oct 2017
  • views: 5590
Be part of something powerful. Regardless of your skill set or specific interest, we're looking for the best and brightest talent in the industry. Our people make us great - and we're always looking for more. Find your career path at Duke Energy today.
https://wn.com/Duke_Energy_Careers
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Duke Energy Foundation 40th Anniversary

For over 40 years, the Duke Energy Foundation has been helping answer the call of citizenship and service in the communities where we operate. We are proud to showcase the efforts of partnerships that have made a lasting impact in people’s lives.
2:01
Duke Energy Foundation 40th Anniversary
For over 40 years, the Duke Energy Foundation has been helping answer the call of citizens...
published: 26 Jul 2024
Play in Full Screen
24:15
History of Duke Energy
The 117-year history of Duke Energy in many ways is the history of energy production in Am...
published: 27 Jan 2022
Play in Full Screen
3:48
Duke Energy CEO on clean energy transition: Extraordinary opportunity where innovation meets growth
Lynn Good, Duke Energy chair and CEO, joins 'Squawk on the Street' to discuss long-term en...
published: 30 May 2024
Play in Full Screen
24:06
Chief Future Officer: Brian Savoy, Duke Energy
Chief Financial Officers now play a critical role in shaping corporate strategy and positi...
published: 03 Nov 2022
Play in Full Screen
0:28
Duke Energy plans utility bill increases
Your Duke Energy bill will likely be going up but it's still unclear exactly by how much. ...
published: 04 May 2023
Play in Full Screen
1:20
Duke Energy promises 'self-healing' tech will prevent outages
Duke Energy says they've been able to prevent tens of thousands of power outages with the ...
published: 11 Jul 2022
Play in Full Screen
6:48
Duke Energy Looks to Sell $4 Billion Renewable Unit
Utility giant Duke Energy Corp. is planning to spin off its $4 billion US solar and wind p...
published: 04 Aug 2022
Play in Full Screen
28:23
Duke Energy Live Line Demo
Duke Energy line technicians demonstrate common causes of power outages and safety around ...
published: 05 Aug 2015
Play in Full Screen
1:01
Duke Energy burns coal like it's 1499
@Duke.Energy planning to burn coal until 2048 is as backward as using pigeons to send mess...
published: 09 Sep 2019
Play in Full Screen
0:53
Duke Energy Careers
Be part of something powerful. Regardless of your skill set or specific interest, we're lo...
published: 03 Oct 2017
Play in Full Screen

Duke Energy

Duke Energy, headquartered in Charlotte, North Carolina, is the largest electric power holding company in the United States, with assets also in Canada and Latin America.

Overview

Based in Charlotte, North Carolina, Duke Energy owns 58,200 megawatts of base-load and peak generation in the United States, which it distributes to its 7.2 million customers. Duke Energy's service territory covers 104,000 square miles (270,000 km2) with 250,200 miles (402,700 km) of distribution lines. In addition, Duke Energy has more than 4,300 megawatts of electric generation in Latin America. It operates eight hydroelectric power plants in Brazil with an installed capacity of 2,307 megawatts. Almost all of Duke Energy's Midwest generation comes from coal, natural gas, or oil, while half of its Carolinas generation comes from its nuclear power plants. During 2006, Duke Energy generated 148,798,332 megawatt-hours of electrical energy.

Duke Energy Renewable Services (DERS), a subsidiary of Duke Energy, specializes in the development, ownership, and operation of various generation facilities throughout the United States. This segment of the company operates 1,700 megawatts of generation. 240 megawatts of wind generation were under construction and 1,500 additional megawatts of wind generation were in planning stages. On September 9, 2008, DERS updated its projections for future wind power capacity. By the end of 2008, it would have over 500 MW of nameplate capacity of wind power online, and an additional 5,000 MW in development.

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