Skip to content

Commit 4b1dfba

Browse files
Release v1.0
1 parent e497374 commit 4b1dfba

File tree

4 files changed

+106
-1
lines changed

4 files changed

+106
-1
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ endforeach()
2424
# Project name and current version. We do not specify any language for
2525
# this project. Therefore, we will be able to check manually which compiler
2626
# is detected on the system.
27-
project(BioDynaMo LANGUAGES VERSION "0.1.0")
27+
project(BioDynaMo LANGUAGES VERSION "1.0.0")
2828

2929
#---Set the locale to default C to prevent issued due to localization of commands---------------
3030
# This is necessary as we for example call `clang -v` and parse its output. But on a localized

doc/blog/release_v1.0.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: "BioDynaMo Version 1.0 Released"
3+
date: "2021-04-09"
4+
path: "/blog/release_v1.0/"
5+
meta_description: ""
6+
---
7+
8+
</br>
9+
10+
On behalf of the BioDynaMo team I am pleased to announce our first major release: BioDynaMo 1.0.
11+
12+
The following publication gives a good overview about BioDynaMo's features and capabilities.
13+
14+
**BioDynaMo: a general platform for scalable agent-based simulation** </br>
15+
*Lukas Breitwieser, Ahmad Hesam, Jean de Montigny, Vasileios Vavourakis, Alexandros Iosif, Jack Jennings, Marcus Kaiser, Marco Manca, Alberto Di Meglio, Zaid Al-Ars, Fons Rademakers, Onur Mutlu, Roman Bauer* </br>
16+
bioRxiv 2020.06.08.139949; doi: https://doi.org/10.1101/2020.06.08.139949
17+
18+
Please have a look at the [release notes](/docs/userguide/release_notes_v1.0/), [installation instructions](/docs/userguide/installation/) and [tutorials](/docs/userguide/hello_world/) for further information.
19+
20+
Thanks and enjoy! </br>
21+
Lukas for the BioDynaMo team
22+

doc/sidebars/userguide.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@
4343
items:
4444
- title: OpenGL
4545
link: /docs/userguide/opengl_issues/
46+
- group: Release Notes
47+
items:
48+
- title: BioDynaMo v1.0
49+
link: /docs/userguide/release_notes_v1.0/
4650
- group: Changelog
4751
items:
4852
- title: Log

doc/user_guide/release_notes_v1.0.md

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
---
2+
title: "BioDynaMo Version 1.0 Release Notes"
3+
date: "2020-04-09"
4+
path: "/docs/userguide/release_notes_v1.0/"
5+
toc: true
6+
image: ""
7+
sidebar: "userguide"
8+
keywords:
9+
-release
10+
-v1.0
11+
-1.0
12+
---
13+
14+
BioDynaMo version 1.0 was released on April 9, 2021.
15+
16+
The following people have contributed to this first major version
17+
(ordered by number of contributions):
18+
19+
* Lukas Breitwieser
20+
* Ahmad Hesam
21+
* Fons Rademakers
22+
* Konstantinos Kanellis
23+
* Jean de Montigny
24+
* Roman Bauer
25+
* Giovanni De Toni
26+
* Jack Jennings
27+
* Dorukhan Arslan
28+
* Nam Nguyen
29+
* Johannes Franz
30+
* Lukasz Stempniewicz
31+
* Robert Harakaly
32+
* Sadyksaj
33+
* Tobias Duswald
34+
* Victor Drobny
35+
36+
## Main features
37+
38+
* A general API to implement and customize agent-based models
39+
* A fully parallelized, high-performance simulation engine
40+
* Ability to offload computations to GPUs of all major vendors
41+
* Large-scale model support. BioDynaMo can simulate billions of agents on a single server.
42+
* Predefined building blocks for simulations in neuroscience, oncology, and epidemiology
43+
* Support for spherical and cylindrical agent geometries
44+
* Diffusion methods: Euler, Runge-Kutta
45+
* Multi-scale simulation support
46+
* Visualization in ParaView
47+
* Parameter configuration: JSON, C++ interpreter script, command line, or in-code
48+
* Automatic backup and restore functionality using ROOT
49+
* BioDynaMo Notebooks for rapid web-based prototyping
50+
51+
52+
For a more detailed description of BioDynaMo's features and capabilities,
53+
please have a look at the following publication:
54+
55+
**BioDynaMo: a general platform for scalable agent-based simulation** </br>
56+
*Lukas Breitwieser, Ahmad Hesam, Jean de Montigny, Vasileios Vavourakis, Alexandros Iosif, Jack Jennings, Marcus Kaiser, Marco Manca, Alberto Di Meglio, Zaid Al-Ars, Fons Rademakers, Onur Mutlu, Roman Bauer* </br>
57+
bioRxiv 2020.06.08.139949; doi: https://doi.org/10.1101/2020.06.08.139949
58+
59+
60+
## Demos
61+
62+
BioDynaMo v1.0 comes with the following demos:
63+
64+
* Cell division
65+
* Diffusion
66+
* Soma clustering
67+
* Tumor concept
68+
* Epidemiology
69+
* Gene regulation
70+
* Parameters
71+
* Multiple simulations
72+
* Makefile project
73+
74+
## Supported Platforms
75+
76+
* Ubuntu 18.04, 20.04
77+
* CentOS 7
78+
* macOS 10.15 and macOS 11.1
79+

0 commit comments

Comments
 (0)