Model SIM
![]() |
Flows in Model SIM. |
The model consists of three sectors. The Household and Business sectors are tied together by the labour and goods (final output) markets, while government activity just consists of an externally set ("exogenous") demand for goods.
I have already used this model as an example multiple times, so I will not repeat the background information.If you are unfamiliar with this model, please see:
- Finding the Solution in a Simple SFC Model,
- Primer: Money and Debt in SFC Models,
- Equilibrium and Steady State in SFC Models.
sfc_models Package Installation
Installation instructions are found here. (If you are familiar with Python, pip install sfc_models works.)
Model Creation
The code to set up model SIM is as follows:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Works on Version 0.2.1 of sfc_models... | |
from sfc_models.models import * | |
from sfc_models.sectors import * | |
# Create model, which holds all entities | |
mod = Model() | |
# Create first country - Canada. (This model only has one country.) | |
can = Country(mod, 'Canada', 'CA') | |
# Create sectors | |
gov = DoNothingGovernment(can, 'Government', 'GOV') | |
hh = Household(can, 'Household', 'HH', alpha_income=.6, alpha_fin=.4) | |
# A literally non-profit business sector | |
bus = FixedMarginBusiness(can, 'Business Sector', 'BUS', profit_margin=0.0) | |
# Create the linkages between sectors - tax flow, markets - labour ('LAB'), goods ('GOOD') | |
tax = TaxFlow(can, 'TaxFlow', 'TF', .2) | |
labour = Market(can, 'Labour market', 'LAB') | |
goods = Market(can, 'Goods market', 'GOOD') | |
# Need to set the exogenous variable - Government demand for Goods ("G" in economist symbology) | |
mod.AddExogenous('GOV', 'DEM_GOOD', '[20.,] * 105') | |
# Build the model | |
# Output is put into two files, based on the file name passed into main() ['out_SIM_Machine_Model'] | |
# (1) [out_SIM_machine_Model]_log.txt: Log file | |
# (2) [out_SIM_machine_Model].py: File that solves the system of equations | |
eqns = mod.main('out_SIM_Machine_Model') | |
# Python 2: replace with "print eqns" | |
print(eqns) |
GOV_F = GOV_LAG_F +GOV_T -GOV_DEM_GOOD
GOV_FISC_BAL = GOV_T -GOV_DEM_GOOD
GOV_LAG_F = GOV_F (k -1 )
GOV_T = TF_T .
HH_AfterTax = HH_PreTax -HH_T
HH_AlphaFin = 0.4000
HH_AlphaIncome = 0.6000
HH_DEM_GOOD = HH_AlphaIncome *HH_AfterTax +HH_AlphaFin *HH_LAG_F
HH_F = HH_LAG_F -HH_T +HH_SUP_LAB -HH_DEM_GOOD
HH_LAG_F = HH_F (k -1 )
HH_PreTax = HH_SUP_LAB
HH_SUP_LAB = BUS_DEM_LAB
HH_T = TF_TaxRate *HH_PreTax
BUS_DEM_LAB = GOOD_SUP_GOOD
BUS_F = BUS_LAG_F -BUS_DEM_LAB +BUS_SUP_GOOD
BUS_LAG_F = BUS_F (k -1 )
BUS_SUP_GOOD = GOV_DEM_GOOD +HH_DEM_GOOD
TF_T = TF_TaxRate *HH_PreTax
TF_TaxRate = 0.2000
LAB_DEM_LAB = BUS_DEM_LAB
LAB_SUP_LAB = LAB_DEM_LAB
GOOD_DEM_GOOD = GOV_DEM_GOOD +HH_DEM_GOOD
GOOD_SUP_GOOD = GOOD_DEM_GOOD
# Exogenous variable
GOV_DEM_GOOD = [20. ,]*105 # (=20. for time 0 -> 104)
The beauty of the sfc_models package is that the algorithm generates the equations, and not the user. This greatly reduces the tedium and risk of error when generating a large SFC model. For example, a multi-country SFC model will have multiple goods and sectors, which creates an extremely large number of variables that look similar, but have to be carefully tracked.
Equation Solution
The chart above is generated by running following code (which requires the matlibplot package):
import out_SIM_Machine_Model
from sfc_models.examples.Quick2DPlot import Quick2DPlot
obj = out_SIM_Machine_Model.SFCModel()
obj.main()
obj.WriteCSV('out_SIM_Machine_Model.csv')
Quick2DPlot(obj.t, obj.GOOD_SUP_GOOD, 'Goods supplied (national production Y)')
The module sfc_models.examples.scripts.build_SIM_model.py does all the steps involved in building the model.
Next Steps
In order to be more interesting, the sfc_models package will need to add support for more complicated interactions between sectors. I want to finish off my next book ("Abolish Money!"), and will then turn more attention to that task.(c) Brian Romanchuk 2016
This comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDelete