Kotlin System Dynamics Toolkit
.We developed Kotlin SD Toolkit, or ksdtoolkit, in late 2019/20 as a tool that is suitable for both modelling large, hierarchical System Dynamics (SD) models (supporting modules) and for automatic generation of interactive simulators for multiple target platforms: desktop, web or mobile using Kotlin programming language.
Kotlin first appeared in 2011 as a statically-typed programming language, with modern, more expressive syntax, null-pointer exception safety, and both object-oriented and functional programming capabilities. It is interoperable with all existing Java libraries and frameworks, and it is Google’s preferred language for Android application development since 2017. Kotlin also excels in developing internal, domain-specific language (internal DSL), which allows adapting general-purpose language (e.g. Kotlin) to solve problems of a specific domain (e.g. system dynamics).
We found that Kotlin programming language is a new, good choice for SD modelling and simulation since it provides many new benefits:
-
Kotlin has an expressive and concise syntax (in comparison to Java), making SD model definition concise
-
Kotlin allows us to develop an internal domain-specific language (DSL) specially tailored for the SD domain
-
Kotlin is a statically-typed programming language (in comparison to dynamically-typed Python) meaning it detects type-errors at compile time instead of failing at runtime
-
prevents null-pointer exceptions at runtime by tracking values, making SD model robust and stable
-
Kotlin combines both the object-oriented and functional programming approaches allowing us to develop large hierarchical SD models, reusing previously developed and tested SD submodels as modules
-
Kotlin is completely interoperable with any existing Java libraries, allowing us to do any data-processing, storing or visualization developed so far in Java.
For the development of Kotlin SD Toolkit we used IntelliJ IDEA (Ultimate Edition, 2019.1 version) integrated development environment for programming in Java/Kotlin languages, from company JetBrains (JetBrains s.r.o, Prague, Czech Republic), the same company that developed Kotlin. We also used: OpenJDK 11 – open Java development kit, OpenJFX – open JavaFX, Gradle – dependency management & build automation tool, Vaadin 8 – Vaadin web framework, and Android SDK – Android software development kit.
The simulation speed was not in our primary focus and could be further improved. A preliminary test on 10 million (1E7) time steps with a very simple SD model (comprised of just one stock and one flow) runs 7.08 seconds on Kotlin SD Toolkit using a laptop computer (Intel i7-8550U CPU at 1.80 GHz with 16 GB of RAM) , while in BPTK-Py runs 153.0 seconds (thus 22x times slower), and in Vensim 6.2 Double Precision runs 30.0 seconds (thus 4x times slower).
Kotlin SD Toolkit in this stage of development has several limitations since we have not implemented: 1) GUI for graphical model design, 2) XMILE transpiler, 3) simulation scenario management, and 4) SD functions or collection of archetypes (e.g. SD molecules). In the near future, we plan to expand the toolkit and overcome these limitations.
Kotlin SD Toolkit is available as a free, open-source GitHub project and we present it as our contribution to the System Dynamics community.
Sovilj, Etinger, Sirotić, and Pripužić are coauthors of “System dynamics modeling and simulation with Kotlin”, available on the System Dynamics Review.
Recent Posts
Book Signing & Book Swap at ISDC 2023
Book Signing & Book Swap at ISDC 2023 Learn about their books directly from the authors! Don’t miss out! Several book authors will join us at the Book Signing event at ISDC 2023. This event will be held live at the conference in Chicago, on Tuesday, July 25 at...
Webinar Highlights & Recording: Digital Twin Business Models for Strategy and Operational Management
Webinar Highlights & Recording: Digital Twin Business Models for Strategy and Operational Management We had the opportunity to delve into the world of business model simulations with industry experts Kim Warren, founder of Strategy Dynamics, and Martin Lycko,...
Webinar Highlights & Recording: System Dynamics Modeling with R.
Webinar Highlights & Recording: System Dynamics Modeling with R. System Dynamics is a powerful approach to understanding complex systems in various fields, such as public health, ecology, and economics. Prof. Jim Duggan, an expert in applying System Dynamics and...
Upcoming Events

6th Annual System Dynamics Competition by the South Africa System Dynamics Chapter
System Dynamics Competition CORRECT TIME: 2 PM CENTRAL EUROPE The System Dynamics Society’s South Africa Chapter is hosting a System Dynamics Competition that offers participants the opportunity to learn new modeling skills directly from experts, collaborate...
Recent Business cases
System Dynamics Helps Farmers Escape Poverty Trap in Guatemala
System Dynamics Helps Farmers Escape Poverty Trap in Guatemala EXECUTIVE Summary Guatemala holds the 4th highest global ranking for chronic malnutrition, and climate change is intensifying the challenges subsistence farmers face in providing food for their families....
Twinings Uses System Dynamics Games to Enhance HR Capability
Twinings Uses System Dynamics Games to Enhance HR Capability “Realistic simulation is a powerful approach to building capability. The business simulation developed [by Dashboard Simulations and Lane4] gave [Twinings staff] an experience that called for them to develop...
RSC Uses System Dynamics to Increase HVACR Sales Against the Tide
RSC Uses System Dynamics to Increase HVACR Sales Against the Tide “Using the proven Strategy Dynamic process focused our limited resources on organizing strategic issues, identifying the critical resources, and developing the insight to more rapidly create intuitive...
Has the Kotlin SD extension, units and tests the unit dimensions? Ewample: wage (dollar/(person*month)) number of people (person)
total wage per month = wage * number of people (dollar/month)?