Difference between revisions of "TI Reports"

From Digital Transformation Wiki
Jump to navigation Jump to search
m (1 revision imported)
(Manual Edit)
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
<html>
 
<html>
 
<script>
 
<script>
 +
var entityMap = {
 +
  '&': '&amp;',
 +
  '<': '&lt;',
 +
  '>': '&gt;',
 +
  '"': '&quot;',
 +
  "'": '&#39;',
 +
  '/': '&#x2F;',
 +
  '`': '&#x60;',
 +
  '=': '&#x3D;',
 +
  'm': 'm',
 +
  'a': 'a',
 +
  'p': 'p'
 +
};
 +
 +
function sanitizeHtml(string) {
 +
  return String(string).replace(/[&<>"'`=\/]/g, function(s) {
 +
      return entityMap[s];
 +
  });
 +
}
 +
 
var selectedButton = '';
 
var selectedButton = '';
  
Line 7: Line 27:
 
}, false);
 
}, false);
  
function hideStrat(){
+
function hideStrat() {
 
   var tables = document.getElementsByClassName("wikitable sortable table");
 
   var tables = document.getElementsByClassName("wikitable sortable table");
   for (const table of tables){
+
   for (const table of tables) {
    var tr = table.getElementsByTagName("tr");
+
      var tr = table.getElementsByTagName("tr");
    // console.log(th.lastChild)
+
      // console.log(th.lastChild)
    for (var i = 0; i < tr.length; i++) {
+
      for (var i = 0; i < tr.length; i++) {
      console.log(tr[i].lastChild)
+
          // console.log(tr[i].lastChild)
      tr[i].lastChild.style["display"] = "None"
+
          tr[i].lastChild.style["display"] = "None"
    }
+
      }
 
   }
 
   }
 
}
 
}
  
function filterA(filterStringA){
+
function filterA(filterStringA) {
   filterStringA = filterStringA.toLowerCase()
+
   filterStringA = sanitizeHtml(filterStringA).toLowerCase();
 
   var tables = document.getElementsByClassName("wikitable sortable table jquery-tablesorter");
 
   var tables = document.getElementsByClassName("wikitable sortable table jquery-tablesorter");
   for (const table of tables){
+
   for (const table of tables) {
    var tr = table.getElementsByTagName("tr");
+
      var tr = table.getElementsByTagName("tr");
    var selectedValue = "";
+
      var selectedValue = "";
    // Reset
+
      // Reset
    for (var i = 0; i < tr.length; i++) {
+
      for (var i = 0; i < tr.length; i++) {
    tr[i].style.display = "";
+
          tr[i].style.display = "";
    }
+
      }
  
    if(filterStringA == "") continue;
+
      if (filterStringA == "") continue;
  
    // Loop through all table rows, and hide those who don't match the search query
+
      // Loop through all table rows, and hide those who don't match the search query
    for (var i = 0; i < tr.length; i++) {
+
      for (var i = 0; i < tr.length; i++) {
      for (const td of tr[i].getElementsByTagName("td"))
+
          for (const td of tr[i].getElementsByTagName("td")) {
      {
+
              if (td) {
        if (td) {
+
                  var txtValue = td.textContent.trim().toLowerCase() || td.innerText.trim().toLowerCase();
          var txtValue = td.textContent.toLowerCase() || td.innerText.toLowerCase();
+
                  if (txtValue.indexOf(filterStringA) == -1) {
          // console.log(txtValue)
+
                      tr[i].style.display = "none";
            if (txtValue.indexOf(filterStringA) == -1) {
+
                  } else {
              // console.log("AA");
+
                      tr[i].style.display = "";
              tr[i].style.display = "none";
+
                      selectedValue = txtValue;
            } else {
+
                      break;
              // console.log("NB");
+
                  }
                tr[i].style.display = "";
 
                selectedValue = txtValue;
 
                break;
 
            }
 
  
 +
              }
 
           }
 
           }
 
       }
 
       }
    }
 
 
   } // end for
 
   } // end for
selectedButton = filterStringA;
+
  selectedButton = filterStringA;
 
}
 
}
  
function filterB(filterStringB){
+
// Had to add sanitize flag for People & Process section
   filterStringB = filterStringB.toLowerCase();
+
function filterB(filterStringB) {
 +
   if (filterStringB.startsWith("People ")) {
 +
    if(filterStringB.endsWith(" Process")){
 +
      if(filterStringB.length == 16){
 +
        filterStringB = filterStringB.toLowerCase();
 +
      } else {
 +
        filterStringB = sanitizeHtml(filterStringB).toLowerCase();
 +
      }
 +
    } else {
 +
      filterStringB = sanitizeHtml(filterStringB).toLowerCase();
 +
    }
 +
  } else {
 +
    filterStringB = sanitizeHtml(filterStringB).toLowerCase();
 +
  }
 +
  console.log(filterStringB);
 +
 
 
   filterA(selectedButton);
 
   filterA(selectedButton);
 
   var tables = document.getElementsByClassName("wikitable sortable table jquery-tablesorter");
 
   var tables = document.getElementsByClassName("wikitable sortable table jquery-tablesorter");
   for (const table of tables){
+
   for (const table of tables) {
    var tr = Array.from(table.getElementsByTagName("tr")).filter(function(row) {
+
      var tr = Array.from(table.getElementsByTagName("tr")).filter(function(row) {
      return row.style.display !== "none";
+
          return row.style.display !== "none";
    });
+
      });
  
 
       // Loop through all table rows, and hide those who don't match the search query
 
       // Loop through all table rows, and hide those who don't match the search query
    for (var i = 0; i < tr.length; i++) {
+
      for (var i = 0; i < tr.length; i++) {
      var td = tr[i].getElementsByTagName("td")[2];
+
          var td = tr[i].getElementsByTagName("td")[2];
      if (td) {
+
          if (td) {
        var txtValue = td.textContent.toLowerCase() || td.innerText.toLowerCase();
+
              var txtValue = td.textContent.trim().toLowerCase() || td.innerText.trim().toLowerCase();
        console.log(filterStringB);
+
              if (txtValue.indexOf(filterStringB) == -1) {
        console.log(txtValue);
+
                  // console.log("AA");
        if (txtValue.indexOf(filterStringB) == -1) {
+
                  tr[i].style.display = "none";
          // console.log("AA");
+
              } else {
          tr[i].style.display = "none";
+
                  // console.log("NB");
        } else {
+
                  tr[i].style.display = "";
          // console.log("NB");
+
              }
            tr[i].style.display = "";
+
          } //end td if
        }
+
      } // end for
      } //end td if
 
    } // end for
 
 
   }
 
   }
 
}
 
}
Line 1,933: Line 1,962:
 
<pre style="display: none">| </pre>
 
<pre style="display: none">| </pre>
 
<pre style="display: none">| </pre>
 
<pre style="display: none">| </pre>
 +
<pre style="display: none">| </pre>
 +
| Technology
 +
<pre style="display: none">| Technology</pre>
 +
 +
|-
 +
| 3002027392
 +
<pre style="display: none">| 3002027392</pre>
 +
| [https://www.epri.com/research/products/000000003002027392 Artificial Intelligence for Distribution Analysis Using Advanced Metering Infrastructure Data]
 +
<pre style="display: none">| AI</pre>
 +
<pre style="display: none">| metering</pre>
 +
<pre style="display: none">| data</pre>
 +
<pre style="display: none">| </pre>
 +
<pre style="display: none">| </pre>
 +
| Data
 +
<pre style="display: none">| Data</pre>
 +
 +
|-
 +
| 3002027521
 +
<pre style="display: none">| 3002027521</pre>
 +
| [https://www.epri.com/research/products/000000003002027521 Program on Technology Innovation: Digital Transformation Maturity Model]
 +
<pre style="display: none">| maturity model</pre>
 +
<pre style="display: none">| DX</pre>
 +
<pre style="display: none">| </pre>
 +
<pre style="display: none">| </pre>
 +
<pre style="display: none">| </pre>
 +
| Strategy
 +
<pre style="display: none">| Strategy</pre>
 +
 +
|-
 +
| 3002027693
 +
<pre style="display: none">| 3002027693</pre>
 +
| [https://www.epri.com/research/products/000000003002027693 Quantum Challenge Results: Quantum Technologies for AI-Enhanced Utility Cybersecurity]
 +
<pre style="display: none">| AI</pre>
 +
<pre style="display: none">| cyber security</pre>
 +
<pre style="display: none">| Quantum</pre>
 +
<pre style="display: none">| </pre>
 +
<pre style="display: none">| </pre>
 +
| Security
 +
<pre style="display: none">| Security</pre>
 +
 +
|-
 +
| 3002027934
 +
<pre style="display: none">| 3002027934</pre>
 +
| [https://www.epri.com/research/products/000000003002027934 Power Consumption Trends from Increased AI and Data Center Utilization]
 +
<pre style="display: none">| AI</pre>
 +
<pre style="display: none">| </pre>
 +
<pre style="display: none">| </pre>
 +
<pre style="display: none">| </pre>
 +
<pre style="display: none">| </pre>
 +
| Strategy
 +
<pre style="display: none">| Strategy</pre>
 +
 +
|-
 +
| 3002026468
 +
<pre style="display: none">| 3002026468</pre>
 +
| [https://www.epri.com/research/products/000000003002026468 ChatGPT and the Power Sector: What's Hype? What's Possible?]
 +
<pre style="display: none">| AI</pre>
 +
<pre style="display: none">| LLM</pre>
 +
<pre style="display: none">| large language models</pre>
 +
<pre style="display: none">| Generative</pre>
 
<pre style="display: none">| </pre>
 
<pre style="display: none">| </pre>
 
| Technology
 
| Technology

Latest revision as of 15:47, 7 August 2024

Search Reports

Strategic Focus Area

TI

Product ID Reports
! Keyword 1
! Keyword 2
! Keyword 3
! Keyword 4
! Keyword 5
Strategic Focus Area
3002023924
| 3002023924
Artificial Intelligence for Energy Storage Operation: Energy Arbitrage
| AI
| artificial intellegence
| 
| 
| 
Data
| Data
3002023869
| 3002023869
Roadmap Towards an Autonomous Plant: A High-Level Overview of Technologies Important for Autonomous Plant Operation
| automation
| roadmap
| 
| 
| 
Technology
| Technology
3002025395
| 3002025395
Secure Open-Source Data Acquisition Unit: A Raspberry Pi Proof-of-Concept
| DAQ
| 
| 
| 
| 
Data
| Data
3002024640
| 3002024640
A Scalable Control Architecture for 100% PV Penetration with Grid Forming Inverters - 2022 Update
| Architecture
| 
| 
| 
| 
Data
| Data
3002025630
| 3002025630
Applications of Robotics in Distribution Systems
| robotics
| distribution
| 
| 
| 
Technology
| Technology
3002024195
| 3002024195
Program on Technology Innovation: DER Gateway Reference Architecture
| Architecture
| DER
| gateway
| 
| 
Strategy
| Strategy
3002025693
| 3002025693
Program on Technology Innovation: Landscape of Automation in Nuclear Power Plants
| automation
| roadmap
| AI
| 
| 
Technology
| Technology
3002024196
| 3002024196
Simplifying and Streamlining Interoperability of Distributed Energy Resources: Application-Specific Profiles for DER Information and Protocol Standards
| integration
| standards
| information
| 
| 
Data
| Data
3002024880
| 3002024880
Applying Advanced Data Science Techniques to Better Understand Transmission and Distribution (T&D) Asset Performance
| analytics
| data science
| 
| 
| 
Data
| Data
3002023839
| 3002023839
EPRI Robotics Research: Electromagnetic Compatibility Assessment of SPOT Robotic Platform
| robotics
| EMI
| EMC
| 
| 
Data
| Data
3002024798
| 3002024798
Enhancing GIS Data Quality Using Artificial Intelligence Tools
| AI
| quaility 
| data
| 
| 
Data
| Data
3002023862
| 3002023862
Using Mobile Robotic Platform for Hazardous Tasks
| robotics
| 
| 
| 
| 
Technology
| Technology
3002025527
| 3002025527
Program on Technology Innovation: Diagramming OT Cyber Security Threats, Vulnerabilities, and Impacts
| security
| OT
| 
| 
| 
Security
| Security
3002025383
| 3002025383
Program on Technology Innovation: A Functional Application Architecture for Grid Model Data Management (GMDM)
| Architecture
| data management
| 
| 
| 
Data
| Data
3002023904
| 3002023904
Program on Technology Innovation: Digital Twin Applications for Advanced Reactors
| digital twin
| 
| 
| 
| 
Technology
| Technology
3002025428
| 3002025428
A Functional Application Architecture for Grid Model Data Management: Model Files
| Architecture
| data management
| 
| 
| 
Data
| Data
3002023841
| 3002023841
SymPLe Architecture Phase II: Refinement, Advancement, and Demonstration of SymPLe Architecture
| Architecture
| 
| 
| 
| 
Technology
| Technology
3002023837
| 3002023837
Program on Technology Innovation: Creating a Digital Twin of a Radiological Environment
| digital twin
| radiation
| 
| 
| 
Technology
| Technology
3002023905
| 3002023905
Program on Technology Innovation: Using Digital Engineering Tools and Methods for New Nuclear Projects--A Review of the State of the Art
| digital engineering
| 
| 
| 
| 
People & Process
| People & Process
3002023899
| 3002023899
Robotic Process Automation for Nuclear Power Plants: Evaluation of Near-Term Opportunities
| automation
| AI
| 
| 
| 
Technology
| Technology
3002022348
| 3002022348
Program on Technology Innovation: Hardware-Based Reference Signatures-An Approach to Digital Hardware Verification
| signature
| 
| 
| 
| 
Security
| Security
3002023458
| 3002023458
Realtime Augmented Reality for Nondestructive Examination Report
| AR
| augmented
| reality
| NDE
| 
Technology
| Technology
3002023018
| 3002023018
Incubatenergy Labs 2021 Pilot Project Report - Copper Labs: Wireless Real-Time Energy Monitoring for Demand Management and Grid-Edge Intelligence
| monitoring
| 
| 
| 
| 
Technology
| Technology
3002023022
| 3002023022
Incubatenergy Labs 2021 Pilot Project Report - DCSix Technologies: Circuit-Level Monitoring and Analytics for a Multifamily Residential Community
| monitoring
| analytics
| 
| 
| 
Technology
| Technology
3002023030
| 3002023030
Incubatenergy Labs 2021 Pilot Project Report - LiveEO: Satellite-Based Post-Storm Disaster Monitoring and Damage Assessment
| monitoring
| 
| 
| 
| 
Technology
| Technology
3002023014
| 3002023014
Incubatenergy Labs 2021 Pilot Project Report - Buzz Solutions: PowerAI Platform for Automated Visual Inspection of Grid Infrastructure
| inspection
| AI
| 
| 
| 
Technology
| Technology
3002023033
| 3002023033
Incubatenergy Labs 2021 Pilot Project Report - Noteworthy AI: Automated Drive-By Distribution Asset Inspection
| inspection
| automation
| 
| 
| 
Technology
| Technology
3002023034
| 3002023034
Incubatenergy Labs 2021 Pilot Project Report - Pano AI - 360-Degree, AI-Based Imaging for Wildfire Situational and Locational Awareness
| AI
| 
| 
| 
| 
Technology
| Technology
3002023035
| 3002023035
Incubatenergy Labs 2021 Pilot Project Report - Shifted Energy: Machine-Learning-Based Load Shaping for Residential Water Heating
| AI
| ML
| 
| 
| 
Technology
| Technology
3002023023
| 3002023023
Incubatenergy Labs 2021 Pilot Project Report - Design Interactive: Instructor-Led, Live-Streamed Augmented Reality Training for Remote Workers
| AR
| augmented
| digital worker
| 
| 
Technology
| Technology
3002023025
| 3002023025
Incubatenergy Labs 2021 Pilot Project Report - Enerbrain: Intelligent Monitoring and Control for Commercial Space Conditioning
| monitoring
| 
| 
| 
| 
Technology
| Technology
3002023027
| 3002023027
Incubatenergy Labs 2021 Pilot Project Report - Future Grid: Using Smart Meter Data for Distribution Network Visualization and Management
| network
| visualization
| smart meter
| 
| 
Technology
| Technology
3002023426
| 3002023426
Smart Grid Interoperability Standards Adoption in Southeast Asia
| integration
| standards
| 
| 
| 
Data
| Data
3002023511
| 3002023511
Utility Blockchain Interest Group: Energy Blockchain Update, Winter 2022
| blockchain
| data
| security
| DLT
| 
Security
| Security
3002022716
| 3002022716
Preparing for the 2030 Energy System: A Vision for Electric Utility Information and Communication Technologies (ICT) and the Role that EPRI's ICT Program Plays in Helping Members Realize This Vision
| communications
| data
| 
| 
| 
Data
| Data
3002022002
| 3002022002
Program on Technology Innovation: Artificial Intelligence Applications to Satellite Imagery - A Wildfire Risk Use Case Focused on Identification of Dead and Stressed Trees
| AI
| 
| 
| 
| 
Technology
| Technology
3002023460
| 3002023460
Hydropower Digital Twin: Roadmap
| digital twin
| hydro
| 
| 
| 
Technology
| Technology
3002023493
| 3002023493
Distributed Ledger Technology and the Internet of Things
| blockchain
| DLT
| Iot
| 
| 
Security
| Security
3002023316
| 3002023316
Hydropower Digital Twin Roadmap Development
| digital twin
| hydro
| 
| 
| 
Technology
| Technology
3002023218
| 3002023218
Field Communicating AR/VR Technology Enablers
| AR
| VR
| 
| 
| 
Technology
| Technology
3002022294
| 3002022294
Building the Digital Thread for Distribution
| digital
| 
| 
| 
| 
Technology
| Technology
3002021414
| 3002021414
Program on Technology Innovation: Utilizing AMI Data for Fault Anticipation
| fault
| data
| 
| 
| 
Technology
| Technology
3002023072
| 3002023072
Heatmap Visualization Tool Demonstration with Plug-In End-Use Loads
| visualization
| 
| 
| 
| 
Data
| Data
3002021563
| 3002021563
Exploration of machine learning applications for extracting network topologies from single-line drawings
| ML
| AI
| 
| 
| 
Technology
| Technology
3002021405
| 3002021405
Program on Technology Innovation: AI Based Dynamic Security Vulnerability Assessment: Power Distribution Systems with High DER Penetration
| Vulnerability
| 
| 
| 
| 
Security
| Security
3002023219
| 3002023219
5G Architecture - Evolution and Roadmap for the Utility Industry
| communications
| wireless
| 5G
| 
| 
Data
| Data
3002021407
| 3002021407
AI Based Vulnerability Assessment for Power Distribution Systems Considering Distributed Energy Resources (DERs)
| AI
| 
| 
| 
| 
Security
| Security
3002019514
| 3002019514
Assessing Grid Modernization Maturity
| maturity
| 
| 
| 
| 
Strategy
| Strategy
3002023194
| 3002023194
Stress Tree Detection using Hyperspectral and Multispectral Imagery Collected from Unmanned Aerial Vehicles
| drones
| aerial
| 
| 
| 
Technology
| Technology
3002021933
| 3002021933
Exploring the Potential for a Building Energy-Focused Data Hackathon
| hackathon
| 
| 
| 
| 
Data
| Data
3002019013
| 3002019013
Program on Technology Innovation: Enhanced DER Monitoring
| monitoring
| DER
| 
| 
| 
Technology
| Technology
3002021525
| 3002021525
Program on Technology Innovation: Environmental Data Science Use Cases - Quick Summaries and Select Deep Dives
| data science
| analytics
| 
| 
| 
Technology
| Technology
3002021418
| 3002021418
Documentation for the A-Diakoptics framework in OpenDSS and test cases
| dss
| a-diakoptics
| 
| 
| 
Technology
| Technology
3002023077
| 3002023077
A Reference Architecture for the Control Center of the Future: Model Files
| Architecture
| control
| 
| 
| 
Technology
| Technology
3002021852
| 3002021852
Program on Technology Innovation: A Reference Architecture for the Control Center of the Future
| Architecture
| control
| 
| 
| 
Technology
| Technology
3002021043
| 3002021043
Automated Analysis of Ultrasonic Inspection of Reactor Vessel Upper Head Penetration Welds
| automation
| NDE
| 
| 
| 
Technology
| Technology
3002022770
| 3002022770
Program on Technology Innovation: Using Hyperspectral Imagery and Artificial Intelligence (AI) to Detect Stressed and Dead Trees
| AI
| 
| 
| 
| 
Technology
| Technology
3002021854
| 3002021854
Advanced Metering Infrastructure (AMI) Reference Architecture
| Architecture
| 
| 
| 
| 
Strategy
| Strategy
3002022715
| 3002022715
Cyber Security Vision for 2030
| security
| 
| 
| 
| 
Security
| Security
3002016698
| 3002016698
HAZCADS: Hazards and Consequences Analysis for Digital Systems - Revision 1
| security
| HAZCADS
| 
| 
| 
Security
| Security
3002021526
| 3002021526
Sustainability Priorities for the North American Electric Power Industry: Assessment of Emerging Artificial Intelligence-Enabled Approaches
| AI
| 
| 
| 
| 
Technology
| Technology
3002022169
| 3002022169
Utility Blockchain Interest Group: Energy Blockchain Update, May 2021
| blockchain
| DLT
| 
| 
| 
Security
| Security
3002019701
| 3002019701
Program on Technology Innovation: Integrated Security Operations Center and Monitoring and Diagnostics Digital Data Integration for Advanced Cyber-Physical Detection Capability-A Roadmap for the Energy Sector
| monitoring
| diagnostics
| integrations
| 
| 
Security
| Security
3002020681
| 3002020681
Utilization of Emerging Data Science Technologies to Electric Power Sector Environmental Challenges: Index of Research
| data science
| analytics
| 
| 
| 
Technology
| Technology
3002020120
| 3002020120
Application of Data Analytics to Mine Nuclear Plant Maintenance Data
| mine
| 
| 
| 
| 
Data
| Data
3002020794
| 3002020794
Preparing for the 2030 Energy System: Why We Need a New Cyber Security Vision
| security
| 
| 
| 
| 
Security
| Security
3002020657
| 3002020657
Incubatenergy Labs 2020 Pilot Project Report: PingThings - PredictiveGrid Time-Series Data Platform
| predictive
| 
| 
| 
| 
Technology
| Technology
3002019867
| 3002019867
Program on Technology Innovation: In-Plant Common Information Model for eXtended Reality, Human Machine Interface
| integration
| standards
| common
| 
| 
Data
| Data
3002020324
| 3002020324
Potential Applications for Artificial Intelligence and Machine Learning in Coal Combustion Product Research: Methods and Applications
| AI
| 
| 
| 
| 
Technology
| Technology
3002019731
| 3002019731
Using Machine Learning to Predict Flow-Accelerated Corrosion Wear Rates
| ML
| AI
| FAC
| 
| 
Technology
| Technology
3002020292
| 3002020292
Digital Twins - A Promising Technology for Data-Centric Cyber Security
| digital twin
| 
| 
| 
| 
Technology
| Technology
3002020263
| 3002020263
Fuels for Small Unmanned Aircraft Systems (sUAS)
| drones
| aerial
| 
| 
| 
Technology
| Technology
3002019416
| 3002019416
Technology Innovation: Grid Cybersecurity for Automated Demand Response Ready Buildings
| security
| 
| 
| 
| 
Security
| Security
3002016561
| 3002016561
Data Analytics and Smart Cities
| analytics
| 
| 
| 
| 
Data
| Data
3002020222
| 3002020222
Metrics Hub: A Data Aggregation Platform for Security Metrics
| security
| 
| 
| 
| 
Security
| Security
3002019801
| 3002019801
Utility Cloud Cyber Security Working Group: 2020 Year-End Summary
| cloud
| security
| 
| 
| 
Security
| Security
3002018720
| 3002018720
A Scalable Control Architecture for 100% PV Penetration with Grid Forming Inverters
| Architecture
| 
| 
| 
| 
Strategy
| Strategy
3002019319
| 3002019319
Understanding Low-impact BES Cyber System NERC CIP Requirements for Cloud
| security
| CIP
| 
| 
| 
Security
| Security
3002019865
| 3002019865
Program on Technology Innovation: In-Plant Common Information Model (CIM) for eXtended Reality Applications
| CIM
| integration
| standards
| 
| 
Data
| Data
3002019887
| 3002019887
Real-Time Online Deposition Monitor for Heat Exchangers and Condensers
| monitoring
| 
| 
| 
| 
Technology
| Technology
3002018898
| 3002018898
Maximizing the Value of Right-of-Way (ROW) Unmanned Aircraft Systems (UAS) Collected Data: Four Applications for Remotely Sensed Data
| drones
| aerial
| 
| 
| 
Technology
| Technology
3002020058
| 3002020058
Program on Technology Innovation: Advantages of Digital Worker Technology in a Pandemic Scenario-An Overview of How Technology Can Reduce Touch Points and Aid in Social Distancing
| digital worker
| 
| 
| 
| 
Technology
| Technology
3002016584
| 3002016584
Program on Technology Innovation: Text Mining Endangered Species Act Permitting Documents Using Artificial Intelligence
| AI
| mining
| 
| 
| 
Data
| Data
3002019868
| 3002019868
Program on Technology Innovation: In-Plant Common Information Model for eXtended Reality, Communications Video
| CIM
| integration
| standards
| 
| 
Data
| Data
3002019968
| 3002019968
Program on Technology Innovation: Identifying Barriers and Solutions to Adoption of Data Tech for Environmental Issues
| data science
| 
| 
| 
| 
Data
| Data
3002019866
| 3002019866
Program on Technology Innovation: In-Plant Common Information Model for eXtended Reality, Messaging Infrastructure Video
| CIM
| integration
| standards
| 
| 
Data
| Data
3002018641
| 3002018641
Program on Technology Innovation: Web Services Robustness, An Agile Data Integration Ecosystem
| agile
| data
| integrations
| 
| 
Data
| Data
3002018740
| 3002018740
Program on Technology Innovation: Development of Deep Learning Methods to Classify Plankton from Holographic Images
| AI
| image
| 
| 
| 
Data
| Data
3002019774
| 3002019774
Algorithm Development for Shared Benefit of Behind-the-Meter Storage Assets
| data science
| 
| 
| 
| 
Data
| Data
3002018632
| 3002018632
Program on Technology Innovation: Software Containers in Utility Field Area Network
| software
| 
| 
| 
| 
Data
| Data
3002013420
| 3002013420
Program on Technology Innovation: Emerging and Data-Driven Solutions for Power Plant Control -- Interim Report
| controls
| 
| 
| 
| 
Technology
| Technology
3002016590
| 3002016590
Vegetation Management using Satellite Imaging, Augmented Reality, Artificial Intelligence, and Image Analysis
| AR
| AI
| image
| 
| 
Technology
| Technology
3002018224
| 3002018224
Program on Technology Innovation: Telecommunication Support for Extended Reality Wearables in the Field - An Introduction to 5G and WiFi 6 Wireless Field Communication Solutions for Extended Reality Wearables
| 5G 
| communications
| wireless
| 
| 
Data
| Data
3002019583
| 3002019583
Zero Trust Considerations for Utility OT Cyber Security Strategies
| OT
| security
| 
| 
| 
Security
| Security
3002019371
| 3002019371
The Digital Voice of Today's Utility Worker: An Instrument of Untapped Potential in T&D Operations and Maintenance
| digital worker
| 
| 
| 
| 
Technology
| Technology
3002016605
| 3002016605
Program on Technology Innovation: Optimizing Real-Time Spatiotemporal Sensor Placement for Monitoring Air Pollutants for Human Health Risk Assessment
| monitoring
| 
| 
| 
| 
Technology
| Technology
3002016599
| 3002016599
Program on Technology Innovation: New Frontiers in Milkweed Detection - Evaluating the Potential of Satellite Data and Machine Learning
| Data
| ML
| AI
| 
| 
Technology
| Technology
3002016327
| 3002016327
Program on Technology Innovation: Techniques for Detecting Faults in Multiple Induction Machines Using Only Aggregate Current Measurements-Phase 2: Plant Feasibility Study
| fault
| monitoring
| 
| 
| 
Technology
| Technology
3002017669
| 3002017669
Case Studies of Integrated Energy Network Planning Challenges - Volume 2: Phase 2 - Framework for Integrated Energy Network Planning (IEN-P)
| integration
| network
| 
| 
| 
Data
| Data
3002017577
| 3002017577
Technology Innovation Program: Secure Cloud Reference Architecture for Real-Time Utility-Based Applications
| Architecture
| cloud
| 
| 
| 
Data
| Data
3002017414
| 3002017414
Utilization of Emerging Data Science Technologies to Electric Power Sector Environmental, Health, and Safety Risks: Annotated Bibliography from a Literature Review
| Technology
| 
| 
| 
| 
Technology
| Technology
3002015813
| 3002015813
Program on Technology Innovation: Development of Adaptive Feedback Welding Technology for Fabrication and Repair Applications
| welding
| feedback
| 
| 
| 
Technology
| Technology
3002016043
| 3002016043
Program on Technology Innovation: Common Information Model (CIM) Power System Model Integration Using SOAP/REST
| CIM
| integration
| standards
| 
| 
Data
| Data
3002017438
| 3002017438
Machine Learning Applications for Improved Planning and Operation of the Power Grid
| ML
| 
| 
| 
| 
Technology
| Technology
3002015801
| 3002015801
Program on Technology Innovation: Leveraging Data Science for Electric Power Industry Transformation
| data science
| 
| 
| 
| 
Data
| Data
3002016583
| 3002016583
Utilization of Emerging Data Science Technologies to Address Electric Power Sector Environmental, Health, and Safety Risks: Early Insights from Interviews
| data science
| 
| 
| 
| 
Data
| Data
3002016558
| 3002016558
Program on Technology Innovation: Assessment of Safety Aspects of Using Augmented Reality Technologies - Field Tests with Electric Utility Power Plant Operators and Manhole Workers
| AR
| 
| 
| 
| 
Technology
| Technology
3002017148
| 3002017148
Program on Technology Innovation: Virtual Power Plant 3D Model User Dashboard
| 3D
| visualization
| 
| 
| 
Technology
| Technology
3002016955
| 3002016955
Program on Technology Innovation: Painting Robot - Functional Specification Development
| robotics
| 
| 
| 
| 
Technology
| Technology
3002016578
| 3002016578
Program on Technology Innovation: Potential for Augmented Reality in Groundwater Applications: Uses and Technology Survey
| AR
| visualization
| 
| 
| 
Technology
| Technology
3002016273
| 3002016273
Remote Vibrational Imaging Through Unmanned Aerial Vehicle (UAV) Integration
| drones
| aerial
| 
| 
| 
Technology
| Technology
3002015657
| 3002015657
Program on Technology Innovation: Managing Cloud Storage and BES Cyber System Information
| BES
| security
| 
| 
| 
Security
| Security
3002015063
| 3002015063
Unmanned Aircraft Systems (UAS): Advanced Payloads
| drones
| aerial
| 
| 
| 
Technology
| Technology
3002014985
| 3002014985
Hardware Security for Interactive Remote Access and Information Transfer: Phase 2b Production Prototype
| remote
| security
| 
| 
| 
Security
| Security
3002014700
| 3002014700
Program on Technology Innovation: Digital Worker Innovation Hub-An Initiative to Promote Digital Worker Research Across the Electric Power Research Institute
| digital worker
| 
| 
| 
| 
Technology
| Technology
3002012708
| 3002012708
Area-Wide Acoustic and Electromagnetic Emissions Monitoring
| monitoring
| 
| 
| 
| 
Technology
| Technology
3002014678
| 3002014678
Program on Technology Innovation: Evaluating IoT Messaging Protocols for DER Management
| DER
| standards
| messaging
| 
| 
Data
| Data
3002012752
| 3002012752
Cyber Security Technical Assessment Methodology: Risk Informed Exploit Sequence Identification and Mitigation, Revision 1
| security
| 
| 
| 
| 
Security
| Security
3002014615
| 3002014615
Evaluation and Development of Narrowband Internet of Things for Private Utility Networks: Scoping Study
| narrowband
| communications
| 
| 
| 
Data
| Data
3002014648
| 3002014648
Program on Technology Innovation: CIM-Based Power System Model Transport
| CIM
| integration
| standards
| 
| 
Data
| Data
3002014370
| 3002014370
Program on Technology Innovation: Understanding Internet of Things Architectures
| Architecture
| 
| 
| 
| 
Strategy
| Strategy
3002011586
| 3002011586
Program on Technology Innovation: Augmented Reality in Generation
| AR
| 
| 
| 
| 
Technology
| Technology
3002012753
| 3002012753
Cyber Security in the Supply Chain: Cyber Security Procurement Methodology, Revision 2
| security
| 
| 
| 
| 
Security
| Security
3002012915
| 3002012915
Configuration and Demonstration of 433-MHz Wireless Gauge Reader
| wireless
| monitoring
| 
| 
| 
Technology
| Technology
3002013946
| 3002013946
Program on Technology Innovation: Heat Stress Monitoring and Sensors-Phase 1, State of Science of Wearable Physiological Monitors to Assess Occupational Heat Strain
| monitoring
| 
| 
| 
| 
Technology
| Technology
3002014288
| 3002014288
Program on Technology Innovation: Annotated Bibliography for 10 Integrated Energy Network Planning Challenges, Phase 2 - Framework for Integrated Energy Network Planning (IEN-P)
| network
| integration
| 
| 
| 
Strategy
| Strategy
3002014308
| 3002014308
Overview of Reality Computing for Research in Energy and Space Exploration
| computing
| 
| 
| 
| 
Technology
| Technology
3002010821
| 3002010821
Developing a Framework for Integrated Energy Network Planning (IEN-P)
| integration
| guide
| 
| 
| 
Strategy
| Strategy
3002012532
| 3002012532
Program on Technology Innovation: Augmented Reality- Literature Review of Human Factors Issues in the Electric Power Industry
| human factors
| 
| 
| 
| 
People & Process
| People & Process
3002012297
| 3002012297
Program on Technology Innovation: A Decentralized Infrastructure for Monitoring and Control of Power Systems
| monitoring
| control
| 
| 
| 
Technology
| Technology
3002011621
| 3002011621
Hardware Security for Interactive Remote Access and Information Transfer: Phase 2a-Proof of Concept
| remote
| security
| 
| 
| 
Security
| Security
3002010237
| 3002010237
Summary of Interoperability Tracking and Reporting by the Information and Communication Technology Program in 2017
| communications
| integration
| 
| 
| 
Data
| Data
3002010242
| 3002010242
Blockchain: Technology Risk and Rewards for Utilities
| blockchain
| DLT
| 
| 
| 
Security
| Security
3002005810
| 3002005810
Program on Technology Innovation: Low-Cost Sensors for Electric End-Use Metering: State of the Market, Requirements and Applications
| monitoring
| 
| 
| 
| 
Technology
| Technology
3002010514
| 3002010514
Program on Technology Innovation: Enterprise Augmented Reality Vision, Interoperability Requirements, and Standards Landscape
| AR
| integration
| 
| 
| 
Data
| Data
3002010622
| 3002010622
Program on Technology Innovation: Evaluation of 433 MHz Sensors in Nuclear Power Plants
| sensing
| monitoring
| 
| 
| 
Technology
| Technology
3002009453
| 3002009453
Program on Technology Innovation: Citizen Science Species Data--An Introduction, Review of Current Uses, and Potential Benefits and Risks
| data science
| 
| 
| 
| 
People & Process
| People & Process
3002009416
| 3002009416
Program on Technology Innovation: An Evaluation of Radio Frequency Fields Produced by School WiFi Systems
| wireless
| communications
| 
| 
| 
Data
| Data
3002008125
| 3002008125
Hardware Security for Interactive Remote Access and Information Transfer - Phase 1: Design
| security
| remote
| 
| 
| 
Security
| Security
3002008039
| 3002008039
Program on Technology Innovation: HTTPN, Securing Nuclear Network Communications in the Age of the Internet of Things
| communications
| standards
| 
| 
| 
data
| data
3002009258
| 3002009258
Program on Technology Innovation: State of the Art of Wearable Enterprise Augmented Reality Displays
| AR
| digital worker
| 
| 
| 
Technology
| Technology
3002009240
| 3002009240
Program on Technology Innovation: Common Needed Attributes of an Architecture for an Integrated Grid
| Architecture
| integration
| 
| 
| 
data
| data
3002008860
| 3002008860
Program on Technology Innovation: Wearable Computers Assessment
| digital worker
| 
| 
| 
| 
Technology
| Technology
3002006955
| 3002006955
Program on Technology Innovation: Data Science Emergence and Relevance to EPRI Research and Member Utilities
| data
| science
| 
| 
| 
Data
| Data
3002007436
| 3002007436
Program on Technology Innovation: Autonomous Mobile Measurement Platform (AMMP)
| automation
| 
| 
| 
| 
Technology
| Technology
3002007428
| 3002007428
Program on Technology Innovation: Open Enabling Platform for Enterprise-Wide Interoperability and the Integrated Grid Year One Update: Connecting the Present to the Future
| integration
| standards
| 
| 
| 
Data
| Data
3002004995
| 3002004995
Program on Technology Innovation: Analysis of Hazard Models for Cyber Security, Phase I
| security
| 
| 
| 
| 
Security
| Security
3002005367
| 3002005367
Program on Technology Innovation: Video Content Analytics for Nuclear Process Monitoring: A Technology Survey
| analytics
| 
| 
| 
| 
Data
| Data
3002005521
| 3002005521
Program on Technology Innovation: Machine Verification in Laser-Scanned Spaces - Status Update 2
| scanning
| 
| 
| 
| 
Technology
| Technology
3002005345
| 3002005345
Program on Technology Innovation: Evaluation of Data Reconciliation Methods for Power Recovery
| DVR
| 
| 
| 
| 
People & Process
| People & Process
3002003545
| 3002003545
Program on Technology Innovation: Data Analytics and Customer Insights
| analytics
| 
| 
| 
| 
Technology
| Technology
3002003062
| 3002003062
Program on Technology Innovation: Machine Verification in Laser-Scanned Spaces-Status Update 1
| laser
| 
| 
| 
| 
Technology
| Technology
3002027392
| 3002027392
Artificial Intelligence for Distribution Analysis Using Advanced Metering Infrastructure Data
| AI
| metering
| data
| 
| 
Data
| Data
3002027521
| 3002027521
Program on Technology Innovation: Digital Transformation Maturity Model
| maturity model
| DX
| 
| 
| 
Strategy
| Strategy
3002027693
| 3002027693
Quantum Challenge Results: Quantum Technologies for AI-Enhanced Utility Cybersecurity
| AI
| cyber security
| Quantum
| 
| 
Security
| Security
3002027934
| 3002027934
Power Consumption Trends from Increased AI and Data Center Utilization
| AI
| 
| 
| 
| 
Strategy
| Strategy
3002026468
| 3002026468
ChatGPT and the Power Sector: What's Hype? What's Possible?
| AI
| LLM
| large language models
| Generative
| 
Technology
| Technology