ZEVAMPY: Zero Emission Vehicle Adoption model in Python
Project description
🚗 ZEVAMPY: Zero-Emission Vehicle Adoption Model in Python
A flexible Python framework for vehicle stock modelling, fleet survival analysis, and zero-emission vehicle adoption projections
ZEVAMPY estimates future vehicle fleet composition by powertrain using empirical survival rates and vehicle registration scenarios.
Table of Contents
- About
- Statement of need
- Recommended skills
- Installation
- Testing
- Acknowledgements
- Authorship
- Citation
- License
- Contacts
🔋 About
ZEVAMPY is an open-source Python framework for modelling vehicle fleet evolution using empirical survival rates and new vehicle registration scenarios. The framework estimates cumulative survival probability (CSP) curves, calculates vehicle stock by powertrain, and projects future fleet composition over user-defined time horizons.
Although ZEVAMPY was originally developed and validated for European passenger-car fleets, it is designed to be reusable for other countries, powertrain categories, and projection periods when suitable stock and registration data are available. Survival rates can be estimated at different aggregation levels, including country-level, powertrain-level, or combined country–powertrain groupings.
The repository includes a default European passenger-car application based on country-specific survival rates and registration scenarios for EU-27 countries and Norway. The methodological foundations draw on the transport-demand modelling framework presented in Möring-Martínez et al., 2024 and on the empirical survival-rate methodology described in Held et al., 2021. The framework has been applied to analyse future BEV fleet evolution in Europe in Möring-Martínez et al., 2025.
Figure 1: Example output from ZEVAMPY showing projected BEV stock shares for EU-27 countries and Norway up to 2050 using country-specific empirical survival rates.
📜 Statement of need
Vehicle fleet models are used to explore how passenger-car fleets evolve under different technology, policy, and market assumptions. However, many existing tools are difficult to reproduce, not openly available, or tightly coupled to a specific dataset or case study.
ZEVAMPY addresses this gap by providing a reusable and modular Python framework for vehicle stock modelling. It separates the modelling workflow into transparent components for data loading, survival-rate estimation, CSP fitting, stock calculation, validation, plotting, and sensitivity analysis. This structure allows users to adapt the framework to different countries, powertrain classifications, vehicle categories, and time horizons.
Core features
-
Flexible stock projections:
Users can project vehicle fleet composition by powertrain using custom registration scenarios and user-defined projection periods. -
Empirical survival-rate estimation:
Survival rates can be estimated from stock and registration data at different years and aggregation levels, including country-level, powertrain-level, or combined country–powertrain groupings. -
CSP fitting and stock modelling:
The framework fits cumulative survival probability curves and combines them with new registration data to estimate future vehicle stock. -
Reusable and extensible design:
The model can be coupled with external transportation models or scenario datasets, enabling applications beyond the default European passenger-car case. -
Research-oriented analysis workflows:
The repository includes example workflows for validation, sensitivity analysis, and comparative scenario exploration based on alternative survival-rate and registration assumptions.
Contribution to the state of the art
Unlike many fleet-modelling tools, ZEVAMPY is open source, modular, and designed for reuse. It enables transparent analysis of how vehicle registrations and survival rates influence future fleet composition. While the default application focuses on European battery-electric passenger cars, the framework can be adapted to other regions, powertrain groups, and modelling horizons when the required input data are available.
Explorative, not prescriptive
ZEVAMPY does not optimize fleet composition. Instead, it helps users explore how different assumptions about vehicle registrations and fleet turnover affect future stock shares. This makes it useful for researchers, policymakers, and analysts who want to assess long-term fleet dynamics under alternative scenarios.
🔧 Recommended skills
The European Passenger Car Stock Model is implemented in Python. While no programming skills are strictly required to configure and run the model, experience with transportation modeling and Python is beneficial. Developers wishing to modify the model's functionality or enhance its capabilities should have at least a basic understanding of Python.
📦 Installation
ZEVAMPY can be installed in two ways:
- As a user: install the released package from PyPI.
- As a developer: clone the repository and install it in editable mode.
Requirements
ZEVAMPY requires:
- Python 3.12 or later
pip- input datasets in CSV format
- a YAML configuration file defining model settings and file paths
The package has primarily been developed and tested on Windows 10/11 using WSL2 Ubuntu. It should also work on Linux and macOS, but these systems have not yet been fully tested.
What users need
To run ZEVAMPY, users provide a set of CSV input files together with a YAML configuration file describing the modelling setup.
Required input datasets
At the current stage, ZEVAMPY expects the following filenames inside the folder defined by data.input_path in config.yaml. The input-folder path can be modified, but the filenames are currently fixed.
Country clusters (optional)
inputs/0_country_clusters.csv:
Defines optional country clusters used to reduce the number of independent registration forecasts required. Countries assigned to the same cluster are assumed to share the same projected powertrain registration shares.
This file is optional and can be disabled in config.yaml by setting:
geography:
use_clusters: false
Historical and projected vehicle registrations by powertrain
inputs/1_1_new_registrations_by_fuel_type_clusters.csv
Contains historical and projected vehicle-registration shares by powertrain for the defined countries or clusters.
Historical total vehicle registrations
inputs/1_2_A_2_historical_new_registrations_data_passenger_cars.csv
Contains historical absolute vehicle-registration numbers by country up to the latest available historical year.
Projected total vehicle registrations
inputs/1_3_new_registrations_projected.csv
Contains projected total vehicle-registrations for future years up to the selected simulation horizon.
Stock-by-age datasets
inputs/2_1_A_1_age_resolved_data_passenger_car_stock_fleet.csv
Contains the vehicle stock resolved by vehicle age. This dataset is used to estimate empirical cumulative survival probability (CSP) curves.
The dataset can optionally include additional dimensions such as:
geo countrypowertrain
This allows empirical survival rates to be estimated at different aggregation levels.
Meaningful survival-rate estimation and subsequent stock projections require sufficiently high goodness-of-fit values for the fitted CSP curves (e.g., high R² values in outputs/2_1_optimum_parameters_csp_curves.csv).
CSP reference year
inputs/2_2_A_1_stock_year.csv
Defines the reference year associated with the stock-by-age dataset used for CSP estimation.
For example, the configuration file config.yaml may define:
csp_reference_year: 2021
However, some countries may only provide stock-by-age data for neighbouring years such as 2020 or 2022. This file specifies the actual stock-reference year used for each country or dataset during CSP estimation.
Optional validation and sensitivity-analysis datasets
Files in the default inputs beginning with:
4_*5_*
are optional and mainly used for:
- historical validation,
- sensitivity analysis,
- and reproduction of the default European case study.
These files are not required for running custom ZEVAMPY applications.
Configuration file
config.yaml
The configuration file acts as the main user interface of ZEVAMPY and controls the complete modelling workflow. It defines:
- input and output paths
- countries or regions
- If
countriesis left empty, all available countries found in the input datasets are used.
- If
- powertrains
- If
powertrainsis left empty, all available powertrain categories found in the input datasets are used.
- If
- projection horizon
- Cumulative Survival Probability (CSP) settings
- validation settings
- and optional sensitivity-analysis options.
A complete example configuration file is provided with the default ZEVAMPY example dataset.
Installation for users
Use this option if you want to run ZEVAMPY without modifying the source code.
1. Create and activate a virtual environment
python -m venv venv
On Windows PowerShell:
venv\Scripts\Activate.ps1
On Linux/macOS/WSL:
source venv/bin/activate
2. Install ZEVAMPY from PyPI
pip install zevampy
3. Prepare your input folder
Create a project folder containing:
my_zevampy_project/
├── config.yaml
├── inputs/
└── outputs/
The inputs folder should contain the required CSV input files.
4. Configure the model
Edit config.yaml to define the model setup, for example:
data:
input_path: inputs
output_path: outputs
geography:
countries:
- Germany
- France
use_clusters: true
powertrains:
- BEV
- Gasoline
- Diesel
model:
start_new_registration_year: 1970
first_stock_year: 2014
end_year: 2050
csp_reference_year: 2021
csp_available_years: 45
historical_validation: false
historical_csp: false
sensitivity_analysis: true
survival_rates:
grouping:
- geo country
To estimate survival rates by both country and powertrain, use:
survival_rates:
grouping:
- geo country
- powertrain
This requires stock-by-age input data that also contains a powertrain column.
5. Run ZEVAMPY
zevampy --config config.yaml
Alternatively:
python -m zevampy.cli --config config.yaml
🚀 Quick start example
A minimal runnable example is available in:
You can download the example inputs and configuration files directly from the repository and run:
zevampy --config config.yaml
Installation for developers
Use this option if you want to modify the codebase or contribute to ZEVAMPY.
1. Clone the repository
git clone https://github.com/gabrielmoringmartinez/zevampy.git
cd zevampy
2. Create and activate a virtual environment
python -m venv venv
On Windows PowerShell:
venv\Scripts\Activate.ps1
On Linux/macOS/WSL:
source venv/bin/activate
3. Install the package in editable mode
pip install -e .
If you keep a separate requirements file for development tools, install it as well:
pip install -r stock_model_requirements.txt
4. Run the model locally
zevampy --config config.yaml
or:
python -m zevampy.cli --config config.yaml
Adapting ZEVAMPY to new use cases
ZEVAMPY separates model logic from input datasets and configuration settings, allowing users to adapt the framework to new applications without modifying the core source code.
ZEVAMPY is designed to be reusable beyond the default European passenger-car case.
Users can adapt:
- Countries or regions by changing the geography.countries section in config.yaml
- Powertrains by changing the powertrains list
- Projection horizon by changing model.end_year
- Input and output folders through the data section
- Survival-rate grouping through survival_rates.grouping
For example, to model country- and powertrain-specific survival rates:
survival_rates:
grouping:
- geo country
- powertrain
The input stock-by-age file must then include at least:
geo country;vehicle age;powertrain;number of registered vehicles
For country-level survival rates only, the stock-by-age input file should include:
geo country;vehicle age;number of registered vehicles
This makes it possible to extend ZEVAMPY to additional countries, powertrain categories, vehicle classes, or projection horizons when suitable input data are available.
🧪 Testing
This repository includes unit tests to ensure consistent and reliable behavior of ZEVAMPY.
To run all tests:
python run_tests.py
This will:
- Discover and execute all tests in the
tests/folder usingpytest - Print outputs to the terminal
- Save generated model outputs in the
outputs/folder - Exit with a status code indicating success or failure
Optional: Run a specific test
To run an individual test, modify the run_tests.py script. For example:
# Uncomment and adapt one of the lines below in run_tests.py
# Syntax:
# sys.exit(pytest.main(["tests/test_file.py::test_function"]))
# Example:
# sys.exit(pytest.main(["tests/test_4_model_runs_on_minimal_input_single_country.py::test_model_runs_on_minimal_input"]))
Note: The tests assume the Python environment is already set up and all required dependencies are installed:
pip install -r stock_model_requirements.txt
🤝 Acknowledgements
Development of the Zero-Emission Vehicle Adoption Model in Python (ZEVAMPY) was funded through the NDC ASPECTS project, which received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No. 101003866.
Additional support for this research was provided through the MoDa project of the German Aerospace Center (DLR).
The authors gratefully acknowledge all contributors, collaborators, and reviewers who supported the development and testing of the model.
✍️ Authorship
ZEVAMPY was developed by Gabriel Möring-Martínez at the DLR's Institute of Vehicle concepts. Special thanks to the DLR members Stephan Schmid, Isheeka Dasgupta, Murat Senzeybek and Samuel Hasselwander for their contributions to the model conceptualization and development.
Additional thanks to Fabia Miorelli for contributions that improved the reusability and software engineering practices of ZEVAMPY.
📝 Citation
If you use ZEVAMPY in academic work, please cite the software publication below.
Software citation
Möring-Martínez, G. (2026). "ZEVAMPY: Zero-Emission Vehicle Adoption Model in Python." Journal of Open Source Software, XX(XXX), XXXX. doi:XX.XXXXX/joss.XXXXX, https://doi:XX.XXXXX/joss.XXXXX
@article{MoringMartinez2025ZEVAMPY,
author = {M{\"o}ring-Martínez, Gabriel},
title = {{ZEVAMPY}: Zero-Emission Vehicle Adoption Model in {Python}},
year = {2026},
doi = {10.21105/joss.XXXXX},
url = {https://doi.org/XX.XXXXX/joss.XXXXX},
journal = {Journal of Open Source Software},
volume = {X},
number = {X},
pages = {X},
publisher = {The Open Journal}
}
Related research article
The following article presents an early scientific application of the modelling framework and discusses the impact of fleet turnover on vehicle electrification in Europe:
Möring-Martínez, G., Senzeybek, M., Hasselwander, S., & Schmid, S. (2025). Quantifying the impact of fleet turnover on electric vehicle uptake in Europe. Transportation Research Part D: Transport and Environment, 147, 104945. https://doi.org/10.1016/j.trd.2025.104945
@article{MoringMartinez2025TRD,
author = {Gabriel M{\"o}ring-Mart{\'i}nez and Murat Senzeybek and Samuel Hasselwander and Stephan Schmid},
year = {2025},
title = {Quantifying the impact of fleet turnover on electric vehicle uptake in Europe},
url = {https://www.sciencedirect.com/science/article/pii/S1361920925003554},
pages = {104945},
volume = {147},
issn = {13619209},
journal = {Transportation Research Part D: Transport and Environment},
doi = {10.1016/j.trd.2025.104945}
}
You can also find machine-readable citation metadata in the CITATION.cff file for use with GitHub’s citation button, Zotero, and other citation tools.
📃 License
This project is REUSE compliant and licensed under multiple open licenses depending on content type:
- Source Code: MIT License
- Datasets: CC BY-SA 4.0
- Documentation and Plots: CC BY 4.0
- Minor Assets: CC0-1.0
Some third-party data is excluded (see details below).
For full licensing details and exceptions, see the LICENSE.md file.
🗨️ Contacts
For questions, collaborations, or support related to ZEVAMPY, please contact:
- Email: gabriel.moeringmartinez@dlr.de
- DLR Institute of Vehicle Concepts: https://www.dlr.de/en/fk
Follow the DLR Institute of Vehicle Concepts on LinkedIn for updates and publications:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zevampy-1.2.5.tar.gz.
File metadata
- Download URL: zevampy-1.2.5.tar.gz
- Upload date:
- Size: 76.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eea6e1b1dfcaf17ff8fd513c792fdd32d825ea6faefd07c01d28df95f7749b4c
|
|
| MD5 |
14a7ad6e9bfcd558762f1b154ead4756
|
|
| BLAKE2b-256 |
e5a76c3589b04c5b4e008bb65e82b816a719cb2b45adfc0fbf89e72ddc3fae0e
|
File details
Details for the file zevampy-1.2.5-py3-none-any.whl.
File metadata
- Download URL: zevampy-1.2.5-py3-none-any.whl
- Upload date:
- Size: 121.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca4ab60e844eb86a44576765d052f9a0c1c69d8e6ad3608de630a8322794a561
|
|
| MD5 |
2798a2fdb2ef798044599350695f629c
|
|
| BLAKE2b-256 |
1f7dc7f64381d25400ef2ab4c3a799dfe28e6ea1353c5259ec4e33f29faeacb2
|