A curated list of open technology projects to sustain a stable climate, energy supply, biodiversity and natural resources.

LEAF

Simulator for modeling energy consumption in cloud, fog, and edge computing environments.
https://github.com/dos-group/leaf

Category: Consumption
Sub Category: Computation and Communication

Keywords

edge-computing energy-consumption fog-computing modeling simulation

Last synced: about 19 hours ago
JSON representation

Repository metadata

Simulator for modeling energy consumption in cloud, fog, and edge computing environments 🌱

README.md

LEAF PyPI version Supported versions License

LEAF is a simulator for analytical modeling of energy consumption in cloud, fog, or edge computing environments.
It enables the modeling of simple tasks running on a single node as well as complex application graphs in distributed, heterogeneous, and resource-constrained infrastructures.
LEAF is based on SimPy for discrete-event simulation and NetworkX for modeling infrastructure or application graphs.

Please have a look at out examples and visit the official documentation for more information on this project.

This Python implementation was ported from the original Java protoype.
All future development will take place in this repository.

⚙️ Installation

You can install the latest release of LEAF via pip:

$ pip install leafsim

Alternatively, you can also clone the repository (including all examples) and set up your environment via:

$ pip install -e .

🚀 Getting started

LEAF uses SimPy for process-based discrete-event simulation and adheres to their API.
To understand how to develop scenarios in LEAF, it makes sense to familiarize yourself with SimPy first.

import simpy
from leaf.application import Task
from leaf.infrastructure import Node
from leaf.power import PowerModelNode, PowerMeter

# Processes modify the model during the simulation
def place_task_after_2_seconds(env, node, task):
    """Waits for 2 seconds and places a task on a node."""
    yield env.timeout(2)
    task.allocate(node)

node = Node("node1", cu=100, power_model=PowerModelNode(max_power=30, static_power=10))
task = Task(cu=100)
power_meter = PowerMeter(node, callback=lambda m: print(f"{env.now}: Node consumes {int(m)}W"))

env = simpy.Environment()  
# register our task placement process
env.process(place_task_after_2_seconds(env, node, task))
# register power metering process (provided by LEAF)
env.process(power_meter.run(env))
env.run(until=5)

Which will result in the output:

0: Node consumes 10W
1: Node consumes 10W
2: Node consumes 30W
3: Node consumes 30W
4: Node consumes 30W

For other examples, please refer to the examples folder.

🍃 What can I do with LEAF?

LEAF enables high-level simulation of computing scenarios, where experiments are easy to create and easy to analyze.
Besides allowing research on scheduling and placement algorithms on resource-constrained environments, LEAF puts a special focus on:

  • Dynamic networks: Simulate mobile nodes which can join or leave the network during the simulation.
  • Power consumption modeling: Model the power usage of individual compute nodes, network traffic, and applications.
  • Energy-aware algorithms: Implement dynamically adapting task placement strategies, routing policies, and other energy-saving mechanisms.
  • Scalability: Model the execution of thousands of compute nodes and applications in magnitudes faster than real time.

Please visit the official documentation for more information and examples on this project.

📖 Publications

If you use LEAF in your research, please cite our paper:

Philipp Wiesner and Lauritz Thamsen. "LEAF: Simulating Large Energy-Aware Fog Computing Environments" In the Proceedings of the 2021 5th IEEE International Conference on Fog and Edge Computing (ICFEC). IEEE. 2021 [arXiv preprint] [video]

Bibtex:

@inproceedings{WiesnerThamsen_LEAF_2021,
  author={Wiesner, Philipp and Thamsen, Lauritz},
  booktitle={2021 IEEE 5th International Conference on Fog and Edge Computing (ICFEC)}, 
  title={{LEAF}: Simulating Large Energy-Aware Fog Computing Environments}, 
  year={2021},
  pages={29-36},
  doi={10.1109/ICFEC51620.2021.00012}
}

💚 Projects using LEAF


Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 6 days ago

Total Commits: 41
Total Committers: 2
Avg Commits per committer: 20.5
Development Distribution Score (DDS): 0.024

Commits in past year: 1
Committers in past year: 1
Avg Commits per committer in past year: 1.0
Development Distribution Score (DDS) in past year: 0.0

Name Email Commits
Philipp Wiesner w****r@t****e 40
Lauritz Thamsen l****n@m****g 1

Committer domains:


Issue and Pull Request metadata

Last synced: 2 days ago

Total issues: 1
Total pull requests: 8
Average time to close issues: about 3 hours
Average time to close pull requests: 7 days
Total issue authors: 1
Total pull request authors: 2
Average comments per issue: 6.0
Average comments per pull request: 0.0
Merged pull request: 5
Bot issues: 0
Bot pull requests: 0

Past year issues: 0
Past year pull requests: 0
Past year average time to close issues: N/A
Past year average time to close pull requests: N/A
Past year issue authors: 0
Past year pull request authors: 0
Past year average comments per issue: 0
Past year average comments per pull request: 0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/dos-group/leaf

Top Issue Authors

  • Muhammad-Fahimullah (1)

Top Pull Request Authors

  • birnbaum (6)
  • kenan991 (2)

Top Issue Labels

Top Pull Request Labels


Package metadata

pypi.org: leafsim

Simulator for modeling energy consumption in cloud, fog, and edge computing environments

  • Homepage: https://github.com/dos-group/leaf
  • Documentation: https://leaf.readthedocs.io/
  • Licenses: MIT
  • Latest release: 0.4.2 (published almost 3 years ago)
  • Last Synced: 2025-04-25T11:32:39.192Z (2 days ago)
  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 2
  • Downloads: 230 Last month
  • Rankings:
    • Dependent packages count: 7.31%
    • Stargazers count: 7.672%
    • Dependent repos count: 11.798%
    • Forks count: 11.986%
    • Average: 13.322%
    • Downloads: 27.842%
  • Maintainers (1)

Dependencies

setup.py pypi
  • networkx *
  • numpy *
  • pandas *
  • simpy *
  • tqdm *
.github/workflows/main.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
.github/workflows/publish.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
  • pypa/gh-action-pypi-publish release/v1 composite
examples/smart_city_traffic/analysis/environment.yml pypi

Score: 10.85371583543798