Blog items for latest blog page.

Tag Archive for: tech

Let’s TAC™ About It: TAC™: So, what’s it good for?

For the eleventh installment of our blog series, we will cover how utilities are using TAC™ and all of its new features. So, are you ready to TAC™ about it?

Careful readers of our Let’s TAC™ About It blog series will note that VIA has announced nine new features in the past 14 weeks. 

A valid question is what are utilities doing with all of these features?

For starters, utilities are increasing clean energy adoption.

The transition to reliable clean energy requires utilities to share more data with third parties such as other utilities, distributed energy resource providers, and electric vehicle (EV) infrastructure companies.

Many utilities, however, have yet to find efficient processes to make this data sharing possible. Utilities complain that current processes are often slow and manual or outright deny third parties access to data.

TAC™ features such as k-anonymity enable utilities to meet regulator data privacy and security requirements and also efficiently work with:

  • battery storage providers
  • distributed energy resource companies
  • EV infrastructure providers 
  • microgrid developers

The result is faster and better asset planning and increased readiness for clean energy technologies. In fact, some of VIA’s customers are reporting that their time saved ranges from one person-month to a year faster.

Interested in learning more? Write to info@solvewithvia.com for a more detailed case study regarding the benefits and use cases of TAC™.

TAC™ White Paper Release: Balancing Data Owner Protection and Analyst Flexibility

This year, we have published 10 blog posts about TAC™’s data privacy and security features. These are high level overviews of updates and enhancements that we have been rolling out as a result of customer feedback. 

Some of our more technical customers, however, have requested more detail. We’re pleased to release a new 10-page white paper that provides a more comprehensive overview and code examples of TAC™’s current data privacy and security features. The focus of this paper is how we balance data privacy while also providing analysts access and flexibility in their queries.

You can request your copy by sending us an email at info@solvewithvia.com.

Our original 2018 white paper with a general overview of TAC™ and its architecture is also available on request.

Preview of VIA’s recently released white paper, “TAC™: Balancing Data Protection and Query Flexibility”.

Reversing the Curse: The 80 / 20 Split In AI Projects

The USAF (a current VIA customer), as referenced in this 2020 congressional report, has prioritized funds to automate analyst workflows to, “directly tackle the challenge of analysts spending 80% of their time searching for data and 20% making sense of the data.” 

Interviews with analysts and our earliest experiences working with customers’ data has confirmed this 80/20 split. We even created a chart in our earliest VIA introductory materials:

To address this common challenge, VIA has been investing heavily in using our own AI and software development skills to reverse this ratio. We may never eliminate data gathering and cleaning tasks, but we can strive to reduce this to 20% of a project and thereby boost the productivity of data scientists. SWEET is the most recent example of how our TAC™ platform accomplishes this. 

We’re keen to hear from you about whether the 80/20 split is still the norm or if you are seeing it decrease (or *gasp* increase). Suggestions on tools or solutions that you would like to see are genuinely welcome.

Let’s TAC™ About It: Verified Templates: Balancing Security and Flexibility

For the tenth installment of our blog series, we will cover how TAC™ contracts can control what kinds of queries an analyst can ask. So, are you ready to TAC™ about it?

In our last Let’s TAC™ About It blog post, we gave a brief overview of how smart contracts work in TAC™. In addition to timing and user role, TAC™ contracts can also control what kinds of queries an authorized analyst can ask of the data. Arguably, this is the most unique and valuable feature in TAC™. 

We have three methods. On one extreme, TAC™ can do this through Verified Scripts. This provides strong data control but limited analyst flexibility. Any analysis code is reviewed and pre-approved. The limitation is that this requires a manual review and approval process for each script. This is most useful for common and frequently performed analysis. VIA provides a number of Verified Scripts (e.g., descriptive statistics like max, min, etc.) by default.

On the other extreme, we have Free Form Python (FFPy). In this scenario, anything an analyst can ask in Python code (including “send me all the data” kind of queries) is permitted. This is terrific for analyst flexibility but has limited data protection for Data Owners (DOs). Internal power users are the main audience for this method.

What if you need something in-between? This is the most common scenario and hardest to solve for. 

Here, TAC™ uses Verified Templates (VTs). DOs use VTs to set boundaries about what analysts can and cannot do. Within those boundaries, analysts have great flexibility. In short, each VT has two parts. The “end of a Python module” is written or agreed to by the DO and sets the boundaries. It is immutable. The second part, the header of the module, is filled in by the analyst. The VT can even include variables that are not defined. These provide entry points that must be fully defined to control the workflow before running. Any file where the end of the Python module matches the VT exactly (other than newlines and comments), constitutes a validated instance of the template. 

This is an example VT:

def main(db, tables, results_path):
   print(hello_world)
   return []

The variable hello_world is highlighted because it is not defined by the template, thus providing flexibility to an analyst.

Then, the following query is a valid instance of the template:

hello_world='Welcome to TAC!'
def main(db, tables, results_path):
   print(hello_world)
   return []

and the following query is an invalid instance of the template:

def main(db, tables, results_path):
   print('Welcome to TAC!')
   return []

As this example shows, the VT must include the main function. Once an analyst changes the body of the main function or any other functions defined in the template, their query will be rejected by TAC™ and not sent to a DO’s data to run.

Sophisticated DOs can create an infinite number of VTs to suit their specific needs. VIA also has predefined VTs for specific use cases such as 15/15 for utility meter data analysis.

A hash of the DOs VT is stored in the smart contract and must be verified to execute. The VTs themselves can be stored on or off the blockchain. A combination of off-chain VT storage and on-chain hash is a common practice for privacy reasons. 

Customers have been testing VTs on TAC™ for the past few months and we have been very pleased with the results so far. Balancing security and flexibility is a hard but universal challenge. We’re excited to have found a relatively high performance solution for the utility industry.

Let’s TAC™ About It: What’s a Smart Contract?

For the ninth installment of our blog series, we will cover how TAC™ uses smart contracts to govern data and analysis workflows. So, are you ready to TAC™ about it?

You may recall from previous posts that TAC™ uses smart contracts as the key control mechanism to govern data and analysis workflows. We have spoken before about the origins and need for smart contracts, in our blog post, Rock Science: How Van Halen Invented Smart Contracts

But, how exactly do we implement these controls?

To recap, a smart contract is a set of software-enforced rules agreed by two or more parties:

  • Rules are enforced through code (e.g., IF x happens, THEN allow (or don’t allow) y)
  • Parties agree to contract terms using digital signatures

Smart contracts are stored on a blockchain, an auditable and immutable ledger. The rules in the contract set specific restrictions around how data can be accessed.

In addition to a contract name and description (e.g., AI goal), there are five required terms for each TAC™ smart contract.

In a TAC™ release earlier this year, VIA also implemented a sub-contracting function. Sometimes customers need to change or update the terms of the contract. By definition, information stored on a blockchain is “immutable” so we technically can’t make a change to an original contract. To accommodate updates, we do allow sub-contracts that are linked to each other in a parent-child relationship and act as a kind of version control. 

One of the most important and unique terms of a TAC™ smart contract is the disclosure restriction. We will discuss this in more detail in our next blog post.

Let’s TAC™ About It: 15/15

For the eighth installment of our blog series, we will cover TAC™’s ability to meet the 15/15 rule. So, are you ready to TAC™ about it?

Utilities have a core mission to provide reliable power at fair rates to their customers.

A recent article in Energy News Network discussed the use of AI algorithms on utility meter data to rate fairness, particularly for low and moderate income customers.

David Kolata, Executive Director of the Illinois Citizens Utility Board commented after the analysis that “Potentially, lower-income consumers are subsidizing higher-income consumers.” Clustering of actual load curves showed that ”Because these [low income] customers use less electricity and contribute less to the grid’s peak load than others, and because peak load drives overall system costs higher, low-income customers could be paying more than their fair share for electricity.”

Given the seriousness of the issue, why haven’t more utilities performed similar analysis? 

The article continues to explain that data privacy and data confidentiality are the major barriers to this kind of analysis. In this specific instance, the Illinois Commerce Commission enacted the “15 by 15” privacy rule to help enable these findings.

As we wrote about in the fifth installment of our Let’s TAC About It series, 15/15 is a specific example of the k-anonymity privacy-preserving analytics feature that VIA recently released. For utilities interested in replicating the Illinois analytics example, VIA’s TAC™ platform automates the process of privacy-preserving analytics and provides an audited record for regulator review.

Meter data has been used for clean energy analytics and load curve predictions for some time. We’re excited to see privacy-protected AI analysis enabling new kinds of analysis, in particular, equity for low and moderate income communities.

Transformative Experiences at GDAC™ Virtual Mini-Series Session #2

VIA had a record attendance of nearly 30 participants at the second installment of its GDAC™ Virtual Mini-Series this week. The session included customers from the US, Asia, and New Zealand and participants located in four different time zones, all eager to share their strategy and asset management experience for substation transformers.

The highlight of the event was the GDAC™ member panel led by Cristiano Marantes, Chief Executive of Ara Ake, an organization that connects technology innovation with energy industry leaders to lower emissions in New Zealand. The panel covered questions related to: 

  1. Insights about post-failure analysis of transformers
  2. Value from GDAC™ member gas benchmarks
  3. Business cases supported by the GDAC™ member portal
  4. Future equipment data to include in the GDAC™ program

Kate Ravanis, COO, remarked that “it was highly reaffirming to hear that the GDAC™ portal, launched earlier this year, was already being used to save time (one “person month” in one case) to prepare asset management plans and rate case materials.” 

This was one of many comments by participants in addition to the engineering and maintenance insights that were shared over the 90-minute session.

VIA is thrilled with the response to the mini-series and will continue hosting member (and potential member) events in the future.

To learn more about the GDAC™ program or to try out the 30-Minute Pilot, visit our website.

Let’s TAC™ About It: Ease of Use Upgrade

For the seventh installment of our blog series, we will cover the latest release of TAC™ which is an easy to use upgrade to our Models for Private Data (MPD) service. So, are you ready to TAC™ about it?

Open source AI algorithms are rapidly improving and becoming the standard for numerous types of data analyses. Unfortunately, as we touched on in our Models for Private Data post, many companies can’t take advantage of these models because they are concerned about compromising the confidentiality of their data when uploading it to cloud-based analytics platforms. 

The latest release of VIA’s TAC™ platform is a leap forward in terms of simplicity for data owners. TAC™ now makes testing containerized models (e.g., TensorFlow, PyTorch, MLflow) models on private data as easy as four clicks.

This new functionality on TAC™ also provides an even easier to use interface for analysts to catalog and share their trained containerized models with each other. These models can be used on private data even if the models were pre-trained elsewhere on different data sources.

There are at least three different analysis scenarios where TAC™ customers find this functionality of value:

  1. Distributed collaborations: Many of our customers are working remotely or with external (e.g., academic) experts. This is for those who want to collaborate and share different ways of solving a problem.
  2. Large teams of data scientists: In some instances, customers may have large teams (e.g., 50+ data scientists). This helps keep track of who did what, where the results are, and more.
  3. Rotating teams: For at least one of our customers, their data science analysts rotate on a six month basis. Rotating teams can cause knowledge to be lost (e.g., US military). Analysis may be done differently each time causing variability in quality and is slower due to the learning curve for each new person.

What these three scenarios have in common is the challenge of knowledge sharing across analysts about what models work, expected results, and comparing new and old models. 

Data science skills are proliferating at utility companies. In addition to keeping their data private, we’re excited to help analysts collaborate more effectively. Our hope is that our latest release will create a virtuous circle. With greater collaboration, analysts will find insights to support utility reliability and cost savings exponentially faster.

 

AFWERX Announces VIA Among Top Teams Selected to exhibit at EngageSpace (September 29-30) The Premier Event for the Space Industry

Somerville, Mass., September 14, 2020AFWERX, the catalyst for fostering innovation within the U.S. Air Force, announced VIA as one of the 178 top participating teams selected from The AFWERX Space Challenge initiative to exhibit at EngageSpace, a virtual two-day event on September 29-30.

The AFWERX Space Challenge initiative is made up of four challenges targeted at creating integrated space operations leveraging the best in technology while maintaining security, being resilient and increasing agility. Four challenges were run concurrently focused on separate topics – Persistent ISR, DoD Commercial Space Partnerships, Global Space Transport and Delivery and Space Asset Resiliency.

Located in Somerville, VIA is competing in the Persistent ISR Challenge alongside a diverse group of teams that represent entrepreneurial startups, small businesses, large enterprises, academic institutions and research labs.

“The solutions submitted for these space challenges represent the bleeding edge of space innovation,” stated Brennan Townley, AFWERX Challenge Collaboration Lead. “We’re excited to highlight these innovators and connect them with opportunities across the Space ecosystem.”

The Persistent ISR Challenge strives to bring together the existing and future technology solutions to create a comprehensive Intelligence, Surveillance and Reconnaissance (ISR) system that spans the globe.

Trusted Analytics Chain™ (TAC™) from Via Science Inc. (VIA) simplifies the fusion and tracking of data from disparate systems. TAC™ offers USAF Commanders a robust and flexible data fusion layer to feed operational dashboards, AI/ML-enabled decision support systems, or predictive analytics tools. Unlike other platforms, TAC™ brings an analyst’s query or algorithm to where data is located, runs analysis there, and only returns to the analyst authorized answers. This avoids the cost and complexity of centralizing data or creating data lakes.

The EngageSpace event will feature highly engaging opportunities to connect, educate and innovate with other like-minded attendees, industry leaders, individual innovators, academia, investors, as well as military and government leaders. The entire event is designed to transform and accelerate the industry, and enable government buyers to pursue the most promising innovative solutions to the most pressing and threatening Space scenarios.

Register for the EngageSpace event by visiting https://engage.space

“Data fusion is inherently complicated because essential data is distributed across physical or virtual storage locations; formats; degrees of quality and completeness; levels of security classification; and ownership (e.g., DOD, commercial vendor, public domain, etc.). We’re honored to be one of the few selected to present TAC™  to the Space and Missile Systems Center and Pacific Air Forces to address this need,” said Joe Babiec, VIA’s Senior Vice President, Strategic Initiatives.

About VIA

VIA helps governments, regulators, and power companies deliver $200Bn in energy every year to more than 100 million customers. VIA’s privacy-preserving analytics software, Trusted Analytics Chain™ (TAC™) reduces the cost and improves the quality of service of electricity transmission and distribution using AI and blockchain technologies. TAC™ (patents pending) is the bridge that securely connects power company data, distributed across many locations, to potential AI solutions. VIA established the Global Data Asset Collaborative™ (GDAC™), built on top of TAC™, to allow multiple companies to securely pool data for more accurate analytics. Headquartered in Somerville, Massachusetts, VIA has received an InnovateMass grant from the Massachusetts Clean Energy Center and has been featured in Wired and Inc. Magazine for its leadership in technology innovation. For more information, please visit www.solvewithvia.com.

###

ABOUT AFWERX

Established in 2017, AFWERX is a product of the U.S. Air Force, directly envisioned by former Secretary of the Air Force Heather Wilson. Her vision of AFWERX — to solve some of the toughest challenges that the Air Force faces through innovation and collaboration amongst our nation’s top subject matter experts. AFWERX serves as a catalyst to unleash new approaches for the warfighter through a growing ecosystem of innovators. AFWERX and the U.S. Air Force are committed to exploring viable solutions and partnerships to further strengthen the Air Force, which could lead to additional prototyping, R&D, and follow-on production contracts.

Fast Company named AFWERX Best Workplaces for Innovators on the 2020 List, honoring the top 100 businesses and organizations that demonstrate a deep commitment to encouraging innovation at all levels. AFWERX, U.S. Air Force’s innovation arm and catalyst for fostering innovation within the Air Force, came in at #16 ranking in the top 20 alongside brands such as Microsoft, Google, and Amazon. Preview the live announcement with Stephanie Mehta, Editor-in-Chief of Fast Company, unveiled during the AFWERX Fusion 2020 Base of the Future Event & Showcase.

Media Contacts:

Tracy Skenandore / Makenzie Coombs
AFWERX@kirvindoak.com

 

How VIA TAC™-kles Sensor Data

The electric grid is not just filled with sensors. It is a giant sensor.

Smart meters collect data from millions of customers, and in some countries like Spain and Denmark, from over 90% of homes. In addition, every utility collects load data in near real-time. 

Load, SCADA, smart meter, and other sensor data on the grid are extremely powerful datasets for advanced analytics. However, to paraphrase the Spiderman franchise, with great power comes great responsibility.

Many utilities are highly concerned about the responsibility that comes with these datasets. As a result, the data gets trapped for one or more of these four reasons:

  1. Data is too big: After you install a sensor, you might go from a reading once a month to 30 times a second. Data volume becomes an issue.
  2. Data is too confidential: Something in the sensor reveals critical infrastructure or personally identifiable information (PII). Smart meters can tell you vacation schedules and household size, for example. Many of the analytics insights can be considered protected information by consumer privacy laws (think CCPA and GDPR).
  3. Data is too distributed: Data from sensors by definition is going to be in a lot of locations, perhaps even across regional jurisdictional boundaries. This can make it expensive or impossible to aggregate.
  4. Data is too messy: Different sensors or meters or subsidiaries of a utility may have different data formats. Cleaning data is a time intensive process when performed manually.

VIA’s software platform, TAC™ was designed to address all four of these issues in power sector data. TAC™ reduces risk and improves IT efficiency for data access and data analysis projects. Follow the latest section of our website to learn about TAC™ features (in our Let’s TAC™ About It blog series) as well as new customer and project announcements.

VIA’s TAC™ Platform Used by Competing Analysts at Swiss Energy Hackathon to Analyze Private Data

The Energy Data Hackdays 2020 hackathon in Switzerland this past weekend marked a major milestone for VIA. This was the first time our Trusted Analytics Chain™ (TAC™) software platform was used by multiple independent third-party analysts in a highly competitive and time-compressed environment. 

A team from Lucerne University of Applied Sciences and Arts (HSLU) in Switzerland used TAC™ to analyze data in the US and Asia. No data was transferred to the analysts.

The HSLU team wearing their VIA t-shirts while using TAC™ as their data analysis platform during last weekend’s hackathon.

Why was this significant?

Swiss law prohibits many different types of data from leaving the country. This means:

  1. In many cases, cloud services cannot be used to store data (e.g., AWS does not have servers in Switzerland) 
  2. Use of foreign analysts, or international benchmarking and other kinds of analyses are impossible

This kind of “locally trapped data” is common across the globe. We have heard many companies who have subsidiaries in the EU, US, and China lament that they cannot analyze or compare data even internally.

VIA’s TAC™ platform was designed specifically to solve this problem (see Let’s TAC™ About It blog series for more details on how this works). For demo purposes, VIA also placed a smart meter dataset on an Azure server in Switzerland connected to TAC™. Analysts used Amazon AWS workstations hosted in the UK to analyze the data remotely.

Final hackathon presentation from Ben Bowler of HSLU.

Why use TAC™ during a hackathon? 

The promise of privacy-preserving analysis is compelling but it also has to be fast and easy. Can you really analyze data without seeing it? A hackathon is the perfect environment to validate this. That is, can analysts who are unfamiliar with this approach and the TAC™ platform learn it quickly enough to generate analytical results in a time restricted environment?

The answer at the Swiss hackathon was: yes.

Ben Bowler, Senior Research Associate – Intelligent Energy Systems, of HSLU said:

“For data analysts used to being the owner and master of their datasets, TAC™ represented a complete paradigm shift. It created the opportunity to access private, hidden datasets, allowing analysts to create insights from a global pool of data that would have been impossible without TAC™, even in a limited space of time. 

In a world where data privacy is becoming increasingly important, the ability to access data in this way will become essential. There were challenges and lessons to be learned in preserving data privacy using TAC™, but the support provided by the VIA team was excellent and allowed the analysts to equip themselves with the skills necessary to analyze sensitive data without transferring it from its owner. We are looking forward to taking the challenge forward, and are also investigating smart meter applications, where we see huge potential for this technology.

The HSLU team was able to demonstrate that significant insights can be gained through TAC™ even while data remains remote. More details of the specific analysis will be featured in upcoming blogs.

Are you interested in a hackathon for your data while keeping it private and secure? Reach out to us at info@solvewithvia.com.

 

Let’s TAC™ About It: Homomorphic Encryption Algorithms on TAC™ (HEAT)

For the sixth installment of our blog series, we will cover homomorphic encryption algorithms on TAC™, known as HEAT. So, are you ready to TAC™ about it?

It’s standard practice to encrypt data at rest (e.g., data in a database) and in transit (e.g., data sent over the internet). When an analyst has to work with data, however, the data is usually unencrypted to perform any calculation. Homomorphic encryption (HE) is cryptography that holds the promise of allowing computations on data while it remains encrypted. 

Despite the increasing need for data security and privacy, HE is not widely used. There are at least two barriers to adoption:

  • Impracticality: NIST-compliant encryption schemes that power widely-used protocols such as RSA have well-known properties that make it possible to perform a subset of arithmetic operations on encrypted numbers. Many of these methods, however, require brute-force computation that limits their ability to add large numbers.
  • Lack of standardization: To overcome the limitations of NIST-compliant encryption schemes, many new HE protocols have been developed to perform operations on larger numbers with some powerful optimizations. Unfortunately, none have been proven reliable enough to be standardized. Even large projects such as Microsoft SEAL have recognized security challenges.

VIA’s HE algorithm overcomes both these barriers for addition. Our protocol uses NIST-compliant standard elliptic curve cryptography (ECC) algorithms to sum arbitrarily large numbers. The key innovation is to represent integers in a base of 2n and sum the numbers for each column in separate batches up to an overflow limit of 232. This resulting number (a vector of numbers less than 232) can thus be decoded using standard brute-force decoding algorithms. 

To avoid overflow limits, the protocol is limited to summing 2(32-n) numbers at a time. If, however, there is a need to sum more than 2(32-n) at a time, we can increase the overflow limit by increasing computation power available for decoding. We distribute the computation to multiple machines to execute the decoding in parallel. In practice, HE is normally used on numbers that are already aggregated, so the 2(32-n) number limit is not a significant barrier. 

As an example, imagine a decrypting system that could only handle numbers up to 1,000 in base 10. How would you add the numbers, 236 and 56,798? While such a decrypting system can only handle numbers up to 1,000, we are not hampered by this limitation. The number 236 can be represented as a vector of (6,3,2,0,0). The number 56,798 is represented as (8,9,7,6,5). Adding the two numbers, we get (14, 12, 9, 6, 5). We can decode each of the components of that vector because they are all less than 1,000. We can then reexpress this result as (4,3,0,7,5) and finally decode this as 57,034. With this approach, we can add up to 100 numbers at a time and be sure that none of the individual columns exceed 1,000 and thus our cryptosystem will work.

What if we need to add 200 numbers? In this case, we can choose a small base (e.g., from 216 to 24) and raise the limit beyond 1,000 by distributing the decoding in parallel. The size of the base determines the amount of brute-force computation required. By breaking the addition into a series of smaller problems, it now becomes possible to use standardized encryption algorithms and brute-force computation to solve the problem. We also leverage existing standards to make it practical to perform arbitrarily complex sum operations. 

VIA has incorporated this HE addition algorithm into its TAC™ platform, known as Homomorphic Encryption Algorithm on TAC™ or HEAT.

To benchmark the system, we compared execution times for HEAT versus Microsoft SEAL, a popular open source HE library. The simple benchmark consists of recording the execution time to encrypt, add, and decrypt up to 80,000 integers. The cryptographic parameters for the ECC were chosen to match the same level of protection as SEAL.

The graph above shows that HEAT is roughly twice as fast as SEAL.

At VIA, we’re excited to have found a “no-tradeoff” solution for HE addition that has wide applications. We are already using HEAT to enable encrypted benchmarking of data across utilities as part of our GDAC™ program. We are also looking into using HEAT for training a federated deep learning model.

HE is a rapidly developing field. VIA is increasing its dedicated resources to improve its HE implementation including exploring lattice cryptography to meet post-quantum computing requirements and extending HEAT to enable homomorphic multiplication.

Let’s TAC™ About It: K-Anonymity

For the fifth installment of our blog series, we will cover TAC™’s k-anonymity functionality. So, are you ready to TAC™ about it?

Regulators are increasingly demanding that utilities release their data to third parties to support a wide array of clean energy initiatives. At the same time, regulators are also mandating increased information privacy and security requirements like with CCPA and GDPR.

The data about a consumer’s energy behavior can provide enormous insights for efficiency but, of course, they can also reveal private details like vacation habits, income levels, family size, etc.

How can utilities balance these two reasonable but competing requirements? 

VIA has implemented a k-anonymity function to handle this use case. The essence of k-anonymity is to segment the data in such a way that similar consumers are in groups that are both big enough to hide an individual consumer’s behavior and small enough to be meaningful and useful for analysis and creating energy efficiency programs.

The above images show two normally distributed variables with 1,000 points. Each cross indicates one point. There can be several points at each location on top of each other. The second image shows the points grouped with at least 15 points within each group. The groups are smaller and more frequent in the middle because there are more points located in the middle due to the normal distributions.

K-anonymity algorithms are sometimes referred to as Mondrian algorithms due to the groupings resembling the paintings of Piet Mondrian.

Choosing an optimal grouping size is not just a challenge, it is actually an NP-hard mathematical problem. TAC™ now provides a simple function to allow utilities to implement k-anonymity groupings to meet both regulator constraints. When a utility chooses this function, any request of data must meet specific group size constraints. If not enough data exists to create a set of data that would maintain data privacy (e.g., only one consumer meets the specific request), then the utility does not provide the data. Similarly, if a data request is made where there is more than enough data to maintain an individual’s privacy, smaller groups of data will be created to allow for more targeted analysis.

Utilities facing regulatory constraints are excited by the opportunity to have an automated means of ensuring data privacy. As a sign of growing interest in the area, the utility non-profit EPRI (Electric Power Research Institute) is also facilitating a working group to test new solutions to the regulator dilemma.

Hawaiian Electric Extends Commitment to GDAC™: Substation Transformers

VIA and Hawaiian Electric are pleased to share that Hawaiian Electric has extended its commitment to the Global Data Asset Collaborative™ (GDAC™): Substation Transformers. By extending and expanding its commitment to GDAC™, Hawaiian Electric hopes to further improve decision making and regulatory support related to its transformer fleet. In its second year, Hawaiian Electric plans to use GDAC™ to more effectively assess the current and predicted health of its transformers to better plan and prioritize proactive replacements, strengthen spares assessment and contingency planning, and identify opportunities to further enhance its substation transformer preventive maintenance.

Hawaiian Electric recognized that GDAC™, from its founding, has the potential to develop new insights and enhance its current predictive capabilities by using advanced data science and analytics to learn from Hawaiian Electric’s and partner utilities’ historical transformer condition and failure data. Since then, in 2019, Hawaiian Electric helped increase GDAC™ membership by including its Maui County and Hawaiʻi Island operating areas, to expand analysis from more than 300 substation transformers on Oʻahu to 500-plus across Maui, Lānaʻi, Molokaʻi, and Hawaiʻi Island.

“Hawaiian Electric has in the past performed various types of predictive analytics to forecast annual failures, determine adequate spares inventory, and estimate expected remaining life for our substation transformers. We joined GDAC™ to enhance our capabilities by learning from other members and learning more about the application of artificial intelligence and machine learning,” said Rick Pinkerton, Hawaiian Electric director of asset planning & strategy.

“We’re thrilled that Hawaiian Electric has extended its GDAC™ membership. At the end of last year, Hawaiian Electric was named “Utility of the Year” by Utility Dive for being a trailblazer in the industry and for its commitment to 100% clean energy by 2045 or earlier. Having the support of such an innovative and driven company can only help lead the entire utility industry to a more data-driven future,” said Kristen Merrill, VIA’s Vice President, Client Delivery.

Hawaiian Electric is supporting the recruitment of other members to join GDAC™: Substation Transformers to bolster predictive capabilities, gain more insights about their fleet, and to share practices and expertise.

About VIA

VIA helps governments, regulators, and power companies deliver $200Bn in energy every year to more than 100 million customers. VIA’s privacy-preserving analytics software, Trusted Analytics Chain™ (TAC™) reduces the cost and improves the quality of service of electricity transmission and distribution using AI and blockchain technologies. TAC™ (patents pending) is the bridge that securely connects power company data, distributed across many locations, to potential AI solutions. VIA established the Global Data Asset Collaborative™ (GDAC™), built on top of TAC™, to allow multiple companies to securely pool data for more accurate analytics. Headquartered in Somerville, Massachusetts, VIA has received an InnovateMass grant from the Massachusetts Clean Energy Center and has been featured in Wired and Inc. Magazine for its leadership in technology innovation. For more information, please visit www.solvewithvia.com.

About Hawaiian Electric

Hawaiian Electric serves 95 percent of Hawaiʻi’s 1.4 million residents on the islands of Oʻahu, Hawaiʻi Island, Maui, Lānaʻi and Molokaʻi, and has a goal of 100 percent renewables by 2045.

VIA Wins Swiss National Energy Project

VIA, a leader in providing energy analytics while maintaining data privacy and security, has been awarded funding from the Swiss Federal Office of Energy (SFOE) for a project called KnowlEDGE. The joint proposal with Lucerne University of Applied Sciences and Arts (HSLU), Romande Energie SA, and a major smart meter manufacturer, was the top ranked amongst submissions that were selected from a lengthy and highly competitive judging process.

“We are proud to have been selected as the top submission by the Swiss Federal Office of Energy. Together with HSLU and Romande Energie, we will enhance VIA’s Trusted Analytics Chain™ (TAC™) capabilities to run AI algorithms directly on smart meters, also known as edge computing,” said Jeremy Taylor, VIA’s Chief Scientific Officer.

The project will be delivered in Switzerland and led by HSLU. Ben Bowler, from HSLU, said, “this project is an exciting opportunity to bring together leading technology and advanced data science in a way that will benefit utilities and clean energy adoption both within Switzerland and globally.” 

Through the support of SFOE’s program, the collaborative will develop edge computing capabilities on smart meters. This will enable increased data privacy since data from individual meters will not be centralized.

The project will also increase temporal resolution of data, meaning more data can be analyzed more frequently. Traditional methods only allowed for 15, 30, or 60-minute intervals of smart meter data analysis due to the size of data and privacy concerns. With edge computing, this data can be analyzed every minute. This will allow real-time feedback to consumers on their energy usage and better preventative maintenance (e.g., upgrades to transformers because EVs are readily detected).

About VIA

VIA helps governments, regulators, and power companies deliver $200Bn in energy every year to more than 100 million customers. VIA’s privacy-preserving analytics software, Trusted Analytics Chain™ (TAC™) reduces the cost and improves the quality of service of electricity transmission and distribution using AI and blockchain technologies. TAC™ (patents pending) is the bridge that securely connects power company data, distributed across many locations, to potential AI solutions. VIA established the Global Data Asset Collaborative™ (GDAC™), built on top of TAC™, to allow multiple companies to securely pool data for more accurate analytics. Headquartered in Somerville, Massachusetts, VIA has received an InnovateMass grant from the Massachusetts Clean Energy Center and has been featured in Wired and Inc. Magazine for its leadership in technology innovation. For more information, please visit www.solvewithvia.com.