npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@energyweb/algorithms

v1.0.0

Published

Collection of algorithms used for performing matching between energy consumers and energy generators.

Downloads

11

Readme

Green proof algorithms

Collection of algorithms used for performing matching between energy consumers and energy generators.

Any input should match algorithm interface, therefore handling special cases like battery charging/discharging should be handled before and after using the algorithm. One example workaround is to create special kind of id (for consumers/generators) that will contain some additional metadata, that for example the entity is a battery.

Proportional Matcher

We expect consumptions and generations assetIds to be unique, that is have one read per device.

Each consumption has it's matching preferences.

Matches happen in rounds (more on that later). In each round not fulfilled consumption, and not used up generation is fed into next round. Therefore rounds determine matching priority. Whatever is matched in the same round in matched proportionally to consumption and available generation.

What gets matched with what in given matching round is determined by paths (that come from path strategies). Path strategy essentially describes matching round, therefore it implies priority. For example if sitePathStrategy is first in list of strategies, then consumers/generators in the same site will be matched first. There are various way to connect consumers with generators (by energy priority preference, regional preference and so on). As the path strategies are written in declarative way (and documented), I'll skip description of them. Please consult the code for details.

Matched volumes in given round are determined in this way:

  1. Consumers are assigned generators (according to paths)
  2. Each consumer makes asks to its generators (one ask per generator). The more volume the generator has, the greater the ask will be created. The sum of all asks for given consumer adds up to this consumer required volume.
  3. Each generator now checks his asks, and assigns its volume to each ask creating a match. The greater the ask, the more volume will be assigned to the ask. The sum of all matches adds up to this generator available volume.

Because asks are created first, and then they are narrowed to matches by generator it may happen, that an ask may not be resolved completely. In such case consumer will be named "leftoverConsumption", and passed to a next round of matching. If sum of all asks is lower than the generator available volume, then such generator will be named "leftoverGenerator", and passed to a next round of matching.

Leftovers from the last round of matching are considered leftovers from the whole matching process.

We don't use fraction of volumes. Therefore if assigning proportionally isn't possible without fractions, then the volume is assigned proportionally as much as possible, and then the volume that would become fraction is assigned to all entities by 1 (Wh) until the volume (whether the ask or generator's volume) is depleted.

Questions and Support

For questions and support please use Energy Web's Discord channel

Or reach out to us via email: [email protected]

EW-DOS

The Energy Web Decentralized Operating System is a blockchain-based, multi-layer digital infrastructure.

The purpose of EW-DOS is to develop and deploy an open and decentralized digital operating system for the energy sector in support of a low-carbon, customer-centric energy future.

We develop blockchain technology, full-stack applications and middleware packages that facilitate participation of Distributed Energy Resources on the grid and create open market places for transparent and efficient renewable energy trading.

  • To learn about more about the EW-DOS tech stack, see our documentation.

  • For an overview of the energy-sector challenges our use cases address, go here.

For a deep-dive into the motivation and methodology behind our technical solutions, we encourage you to read our White Papers:

Connect with Energy Web