Skip to main content

BATEM Tutorial

Welcome to the BATEM tutorial. This guide will help you learn about different aspects of energy management through hands-on exercises using Python and Jupyter notebooks.

Overview

This tutorial consists of:

  • Interactive Jupyter notebooks (named notebookx_XXX.ipynb)
  • Lecture slides (named slidesx_XXX.pdf)

Getting Started

Access the MyBinder project to start the tutorial.

Depending on your internet connection, you may have to wait a few minutes to start the tutorial.

Important:

  • If you are unable to access the MyBinder environment, you can download the project files and run the notebooks locally.
  • To do this, you need to go through the following steps:

Local Installation Guide

  1. Install Python

    • Download Python from python.org
    • Choose the latest Python 3.x version
    • During installation, make sure to check "Add Python to PATH"
    • Verify installation by opening a terminal and typing (PowerShell in Windows, Terminal in macOS/Linux):
      python --version
      
  2. Install Visual Studio Code

    • Download VS Code from code.visualstudio.com
    • Install VS Code following the default installation steps
    • Open VS Code and install the following extensions:
      • "Python" by Microsoft
      • "Jupyter" by Microsoft
  3. Set up the Python Environment

    • Open a terminal in VS Code (Terminal -> New Terminal)
    • Create a new virtual environment:
      python -m venv venv
      
    • Activate the virtual environment:
      • On Windows:
        .\venv\Scripts\activate
        
      • On macOS/Linux:
        source venv/bin/activate
        
    • Install required packages:
      pip install -r requirements.txt
      
  4. Run the Notebooks

    • Open the project folder in VS Code
    • Open any .ipynb file
    • Select the Python interpreter (venv) when prompted
    • Follow the notebook

Working with MyBinder

The MyBinder window should look like this:

There are three main instruments to work with:

  • The project files, accesible from the left panel (Project Structure)
  • The command bar, at the top of the window (Command Bar)
  • The working area, in the middle of the window (Working window)

Following the tutorial

We recommend to follow the tutorial in the following order:

  • Go thorugh the slides for a subject first (slidesXX_XXX.md)
  • Open the corresponding notebook (notebookXX_XXX.ipynb)
    • Solve the exercises in the notebook by writing your replies in a separate document with the references to the questions and exercises.
    • You can check the slides to get the information you need to solve the exercises
  • After finishing the exercises on a notebook, upload the responses to the course platform.

Working with Notebooks

To open any notebook, double-click the corsponding .ipynb file.

Notebook Basics

Notebooks contain two types of cells, as described bellow:

  1. Text Cells (for reading and writing):

    • Double-click to edit
    • Press 'Shift+Enter' to execute the cell and display the text
    • Press 'Ctrl+S' to save the notebook
  2. Code Cells (for running Python):

    • Click the Run (▶️) button to run the cell
    • Alternatively, use the "Restart and run all" (▶️▶️) button in the top menu to run all the cells in the notebook

Notebooks in VS Code

If you are using VS Code and work with the notebooks locally on your machine, your notebook looks like this:

To run a cell, you can either:

  • Click the Run (▶️) button
  • Use the 'Shift+Enter' shortcut

To run all the cells in the notebook, you can either:

  • Click the "Restart" button in the top menu
  • Click the Run All button in the top menu

Working with Plots

The interactive plots typically show evolution of parmaeters (such as power consumption) over time:

  • View Specific Legend Item (for example an appliance): Double-click items in the legend
  • Zoom In: Click and drag a rectangle on the plot
  • Zoom Out: Click "Autoscale" in the top-right corner of the plot
  • View Details: Hover over lines to see line-specific information

For example, hovering over a line in the power consumption plot will show the weather temperature in function of the time.

Evaluation

You will be evaluated based on the answers you provide to the questions and exercises in the notebooks.

We strongly recommend you to put your answers on a separate document (word, pdf, txt, etc.) and provide clear references to the question numbers.

After you have your document ready, you can upload it to the course platform.

Example:

In the notebook: Section I. Sun Question 1. Calculated solar radiations vs measurements Section I., Question 1: (your answer here)

In the separate document: Section I., Question 1: (your answer here)

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

batem-0.4.7.tar.gz (73.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

batem-0.4.7-py3-none-any.whl (73.2 MB view details)

Uploaded Python 3

File details

Details for the file batem-0.4.7.tar.gz.

File metadata

  • Download URL: batem-0.4.7.tar.gz
  • Upload date:
  • Size: 73.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for batem-0.4.7.tar.gz
Algorithm Hash digest
SHA256 7c0bc53e4cba838f7be4045cd6fd0123918034e0f89d0783f6e5094fa8f42d5d
MD5 75e8eabe37e36e10694f8624588aae55
BLAKE2b-256 3aa6221269fc3e7fab589159bbf1b0d15fb0e3d600f631412ea499e28e837b05

See more details on using hashes here.

File details

Details for the file batem-0.4.7-py3-none-any.whl.

File metadata

  • Download URL: batem-0.4.7-py3-none-any.whl
  • Upload date:
  • Size: 73.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for batem-0.4.7-py3-none-any.whl
Algorithm Hash digest
SHA256 677669a075490ee90e7c44517d5657da1f75180976a6397c688d2c3a01248825
MD5 66ba85a0032f6237f908b451067ed1ba
BLAKE2b-256 47d5d1efec8a5705f2e89fa99289a90b3f86b37c0d8af2264f354a2ef8b9adf9

See more details on using hashes here.

Release history Release notifications | RSS feed

0.6.4

2 files

0.6.3

2 files

0.6.2

2 files

0.6.1

2 files

0.6

2 files

0.5.6

2 files

0.5.5

1 file

0.5.4

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

This release

0.4.7 This release

2 files

0.4.6

2 files

0.4.5

2 files

0.4.0

2 files

0.3.29

2 files

0.3.28

2 files

0.3.27

2 files

0.3.25

2 files

0.3.24

2 files

0.3.23

2 files

0.3.21

2 files

0.3.20

2 files

0.3.19

2 files

0.3.18

2 files

0.3.17

2 files

0.3.16

2 files

0.3.15

2 files

0.3.14

2 files

0.3.13

2 files

0.3.11

2 files

0.3.10

2 files

0.3.9

2 files

0.3.8

2 files

0.3.7

2 files

0.3.6

2 files

0.3.5

2 files

0.3.4

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.10

2 files

0.2.9

2 files

0.2.8

2 files

0.2.7

2 files

0.2.6

2 files

0.2.5

2 files

0.2.4

2 files

0.2.1

2 files

0.2.0

2 files

0.1.11

2 files

0.1.10

2 files

0.1.9

2 files

0.1.8

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.0

2 files

0.0.17

2 files

0.0.16

2 files

0.0.15

2 files

0.0.14

2 files

0.0.13

2 files

0.0.12

2 files

0.0.11

2 files

0.0.10

2 files

0.0.9

2 files

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page