Model variables are fundamental to financial cash flow models, shaping how calculations unfold over time. In this blog post, we will explore different types of model variables and demonstrate how to create them using the cashflower package.
Understanding how to define and use model variables effectively is crucial for building accurate and flexible models. Some variables change over time, while others remain constant. We will walk through both types, showing how they function and how they interact within a cash flow model.
List of content:
Defining model variables
To define a model variable, follow these steps:
- define a function with the t parameter (or without any parameters),
- decorate the function with @variable().
Model variables can produce results per time and model point. While most are time-dependent, some remain constant throughout. Let's explore both types.

Types of variables:
- A - time-dependent variable,
- B - time-independent variable,
We will guide you through creating both types of model variables in the sections below.
Time-dependent variable
Time-dependent variables generate values for each future period. To create one, define a function with the t parameter and decorate it with @variable().
For example:
The variable can be called inside of another variable.
For example:
Constant variable
To define time-independent variables, create a function without any parameters.
Constant variables, like elapsed_months, maintain a consistent value throughout the projection, making them independent of time. To call such variables, there's no need to pass any arguments.
For example:
These variables are particularly useful for storing information that remains unchanged over time.
Thank you for reading this blog post! I hope it provided you with valuable insights. Feel free to leave a comment below or on github to share your thoughts or ask any questions. Your feedback is greatly appreciated!