An Agent-Based Market Analysis of Urban Housing Balance in The Netherlands
Abstract
:1. Introduction
2. Background and Context
3. Literature Review
3.1. Considerations in Housing Market Modelling
- I am willing to sell my home for at least X.
- I am willing to sell my home for more than X.
- I am willing to sell my home for X, but am willing to lower my price.
3.2. Agent-Based Models for Housing Markets
3.3. Simulating Households over Time
- Child living with parents.
- Single-person household.
- Living with a partner without a child living at home.
- Living with a partner with a child living at home.
- Parent in single-parent household.
- Other members of a private household.
- Member of institutional household.
4. Model Design
4.1. Methodology
4.2. High-Level Conceptual Design
4.3. Verification
5. Simulation Results and Discussion
5.1. Sensitivity Analysis
5.2. Experiment 1: Changing Policy
5.2.1. Lotteries for Social Housing
5.2.2. Divorce and Secondary Waiting Times
5.2.3. Maximum Number of Reactions
5.2.4. Increased Income Limit for Social Housing
5.3. Experiment 2: Changing Behaviour
5.3.1. Waiting Time for Social Housing
5.3.2. Willing Social Market Leavers
5.4. Experiment 3: Changing Environment
5.4.1. Migration
5.4.2. Varying Size Compositions
5.4.3. Varying Market Compositions
5.5. Discussion
5.5.1. Limitations
5.5.2. Validation
6. Conclusions and Future Work
Author Contributions
Funding
Institutional Review Board Statement
Informed Consent Statement
Data Availability Statement
Acknowledgments
Conflicts of Interest
Appendix A. Details about the Dutch Housing Market
Appendix A.1. Social Rental Sector
Appendix A.1.1. Selection
Appendix A.1.2. Cheap-Skewed Renters
Appendix A.2. Private Rental Sector
Rent Increases
Appendix A.3. Owner-Occupied Sector
Appendix A.3.1. Mortgages
Appendix A.3.2. Auction and Negotiation
Appendix B. Details of the Agent-Based Model
Appendix B.1. Purpose and Patterns
Appendix B.2. Entities, State Variables, and Scales
State Variable | Variable Type and Units | Meaning |
---|---|---|
months | integer, dynamic, months | The number of months simulated since the start of the simulation. |
new_houses_progress | float, dynamic | If the number of houses to be built is not a natural number, this variable stores the remainder as progress to the next house to be built. |
migration_progress | float, dynamic | If the number of households to be migrated is not a natural number, this variable stores the remainder as progress to the next household to be migrated. |
State Variable | Variable Type and Units | Meaning |
---|---|---|
status | string, dynamic, ‘occupied’ or ‘empty’ | Whether a house is currently occupied by a household. |
house_size | integer, static, [2,5] | The size of a house—as a living room plus a number of bedrooms. |
quality | float, static, [0,1] | The quality of a house. |
Additionally, for owner-occupied houses: | ||
status | string, dynamic, ‘occupied’, ‘for_sale’ or ‘preparing_sale’ | Indicates whether a house is occupied, for sale, or empty but not yet for sale. |
sale_prices | list of integers, dynamic | The prices that the house has been sold at in the past. |
offers | A set of offers made by households, dynamic | A set of offers made by households. |
Additionally, for private rental houses: | ||
rent | integer, dynamic | The current rent of the house. |
Additionally, for social rental houses: | ||
assignment_type | string, static, ‘selection’ or ‘lottery’ | Whether the winner of the house is chosen through lottery or selection rules. |
rent | integer, static | The rent of the house. |
State Variable | Variable Type and Units | Meaning |
---|---|---|
age | integer, dynamic | The age of a person. |
birth_month | integer, static | The month a person is born in and after which they become older. |
waiting_time | integer, dynamic | The waiting time a person has accumulated for the social sector. |
State Variable | Variable Type and Units | Meaning |
---|---|---|
adults | list of persons, dynamic | Represents the adults present in a household. |
children | list of persons, dynamic | Represents the children present in a household. |
household_type | string, dynamic, ‘single’ ‘unmarried_pair’ ‘married_pair’ ‘single_parent’ or ‘forming_relationship’ | An indicator of the composition of the household, whether a pair is married and whether the household is in the process of being formed. |
mortgage | float, dynamic | The outstanding balance of a mortgage. |
mortgage_time_left | integer, dynamic, months | The amount of months until a mortgage is repaid. |
income | float, dynamic, euros | The yearly (standardised) income of a household. |
searching_reason | string, dynamic | The reason a household is searching for a different house, if applicable. |
house | house, dynamic | The house a household currently inhabits. |
Appendix B.3. Process Overview and Scheduling
- 1.
- The environment adds new houses and forces households to migrate.
- 2.
- Households evaluate whether they want to start searching for a new house.
- 3.
- Households searching evaluate whether they want to stop searching for a new house.
- 4.
- Houses execute the ‘advertise’ sub-model.
- 5.
- Households react to advertisements.
- 6.
- Houses select winners using the ‘selection’ sub-model:
- (a)
- Owner-occupied houses select winners and are occupied by the winner.
- (b)
- Social rental houses select winners and are occupied by the winner.
- (c)
- Private rental houses select winners and are occupied by the winner in the order of the ascending rents.
Households that win a house update their house state variable; owner-occupied houses that are won update their sale_prices state variable. Any house that is left sets its state to ‘empty’; private rental houses also update their rent state variable. - 7.
- The ‘relationship’ sub-model is executed:
- (a)
- Relationships are ended, splitting households into two households.
- (b)
- Relationships are started in a random order, combining two households into one.
- 8.
- Every 12 months, households update their income state variable through the ‘income shock’ sub-model.
- 9.
- Households execute the ‘population’ sub-model, updating all but the house and income state variables:
- (a)
- Add 1 month to all waiting times of adults.
- (b)
- Update the age of children and adults if it is their birth month.
- (c)
- Check whether a child is born in the household.
- (d)
- Households check whether their household_type has to change.
- (e)
- Check whether children or adults decease; if all adults are deceased the household, including surviving children under or at 18, are removed, then update the status if a house was occupied.
- (f)
- Households check whether their household_type has to change.
- (g)
- Children above or at 18 form their own households, but are still considered a child of the current household until they find a house to move to.
- (h)
- Households pay their monthly mortgage and update their mortgage and mortgage-time-left state variables.
- Prefer to own a house, since, in a shortage, houses generally increase in value.
- Prefer the social sector over the private sector, as the social sector is systemically cheaper.
- Prefer cheaper private sector houses over more expensive ones.
Appendix B.4. Design Concepts
Appendix B.4.1. Basic Principles
Appendix B.4.2. Emergence
Appendix B.4.3. Adaption
Appendix B.4.4. Objectives
Appendix B.4.5. Learning
Appendix B.4.6. Prediction
Appendix B.4.7. Sensing
Appendix B.4.8. Interaction
Appendix B.4.9. Stochasticity
Appendix B.4.10. Collectives
Appendix B.5. Initialisation
- Two-parent families (unmarried or married pairs with children).
- Single-parent families.
- Pairs without children aged between 35 and 65 years.
- Single-person households aged between 35 and 65 years.
- Pairs without children aged above 65 years.
- Single persons aged above 65 years.
- Pairs without children aged below 35 years.
- Single-person households aged below 35 years.
Appendix B.6. Input Data
Appendix B.7. Sub-Models
Appendix B.7.1. House Generation
Appendix B.7.2. Relationships
Appendix B.7.3. Income
Appendix B.7.4. Income Shock
Appendix B.7.5. Advertise
Appendix B.7.6. Population
Appendix B.7.7. Mortgage
Income | Financing Norm |
---|---|
income 22,500 | 0.195 |
income 23,000 | 0.205 |
income 24,000 | 0.215 |
income 24,500 | 0.22 |
income 25,000 | 0.225 |
income 26,000 | 0.23 |
income 27,000 | 0.235 |
income 28,000 | 0.24 |
income 29,000 | 0.245 |
income 32,000 | 0.25 |
income 41,000 | 0.255 |
income 43,000 | 0.26 |
income 44,000 | 0.265 |
income 45,000 | 0.27 |
income 46,000 | 0.275 |
income 47,000 | 0.285 |
income 50,000 | 0.29 |
income 63,000 | 0.295 |
income 67,000 | 0.30 |
income 70,000 | 0.305 |
income 73,000 | 0.31 |
income 77,000 | 0.315 |
income 83,000 | 0.32 |
income > 83,000 | 0.325 |
Appendix B.7.8. Selection
- Single-person households with an income ≤ 23.725 younger than 65 years.
- Single-person households with an income ≤ 23.650.
- Households with two persons with an income ≤ 32.200 with the oldest adult younger than 65 years.
- Households with two persons with an income ≤ 32.075.
- Households with three or more persons with an income ≤ 32.200.
- Single-person households with an income > 23.725.
- Single-person households with an income > 23.650 with the oldest adult than 65 years.
- Households with two persons with an income > 32.200.
- Households with two or more persons with an income ≤ 32.075 with the oldest adult older than 65 years.
- Households with three or more persons with an income ≤ 32.200.
- Single-person households with an income > 23.725.
- Single-person households with an income > 23.650 older than 65 years.
- Households with two persons with an income > 32.200.
- Households with two persons with an income > 32.075 with the oldest adult older than 65 years.
Appendix C. Analysis Results
Appendix C.1. Changing Policy
Appendix C.1.1. Lotteries for Social Housing
Appendix C.1.2. Divorce and Secondary Waiting Times
Appendix C.1.3. Maximum Number of Reactions
Appendix C.1.4. Increased Income Limit Social Housing
Appendix C.2. Changing Behaviour
Appendix C.2.1. Waiting Time for Social Housing
Appendix C.2.2. Willing Social Market Leavers
Appendix C.3. Changing Environment
Appendix C.3.1. Migration
Appendix C.3.2. Varying Size Compositions
Appendix C.3.3. Varying Market Compositions
References
- Musterd, S. Public Housing for Whom? Experiences in an Era of Mature Neo-Liberalism: The Netherlands and Amsterdam. Hous. Stud. 2014, 29, 467–484. [Google Scholar] [CrossRef]
- Rigterink, T. Generation Y as Starter in the Dutch Housing Market. Master’s Thesis, University of Twente, Enschede, The Netherlands, 2017. [Google Scholar]
- Kromhout, S.; Wittkämper, L. Wachttijden Voor Sociale Huurwoningen Nemen Toe; Rigo: Amsterdam, The Netherlands, 2019. [Google Scholar]
- Luijendijk, V. Gezin Komt maar niet uit Woning Met één Slaapkamer: ‘Eerst Verdienden we te Weinig, Nu te Veel’. 2021. Available online: https://www.at5.nl/artikelen/207339/gezin-komt-maar-niet-uit-woning-met-een-slaapkamer-eerst-verdienden-we-te-weinig-nu-te-veel (accessed on 2 September 2021).
- Buys, A.; Hu, M. De (vermeende) Invloed van Alleenstaanden op de Woningmarkt; Rigo: Amsterdam, The Netherlands, 2018. [Google Scholar]
- van Oorschot, J.; Sprecher, B.; Rijken, B.; Witteveen, P.; Blok, M.; Schouten, N.; van der Voet, E. Toward a low-carbon and circular building sector: Building strategies and urbanization pathways for The Netherlands. J. Ind. Ecol. 2023, 27, 535–547. [Google Scholar] [CrossRef]
- Dutch News. Amsterdam to Bring Back Flat-Sharing, Stop Social Housing Sell-Offs. 2023. Available online: https://www.dutchnews.nl/2023/02/amsterdam-to-bring-back-flat-sharing-stop-social-housing-sell-offs/ (accessed on 2 September 2023).
- Boelhouwer, P.; Hoekstra, J. Towards a better balance on the Dutch housing market? Analysis and policy propositions. Eur. J. Hous. Policy 2009, 9, 457–475. [Google Scholar] [CrossRef]
- Huurcommissie. About the Rent Tribunal. 2021. Available online: https://www.huurcommissie.nl/ (accessed on 2 September 2021).
- Hochstenbach, C. Landlord Elites on the Dutch Housing Market: Private Landlordism, Class, and Social Inequality. Econ. Geogr. 2022, 98, 327–354. [Google Scholar] [CrossRef]
- NOS. Steeds meer Gemeenten Voeren Woonplicht in voor Eigenaar Nieuwbouwwoningen. 2020. Available online: https://nos.nl/l/2343549&ved=2ahUKEwjl49nItNeFAxVIklYBHbz7DjcQFnoECA4QAw&usg=AOvVaw2H6vGUyY-w6K_NRXkyVfSV (accessed on 2 September 2021).
- Miron, J.R.; Schiff, M. A Profile of the Emerging Empty Nester Household; Centre for Urban and Community Studies, University of Toronto: Toronto, ON, Canada, 1982. [Google Scholar]
- Ministerie van Binnenlandse Zaken en Konikrijksrelaties. Ruimte voor Wonen; Ministerie van Binnenlandse Zaken en Konikrijksrelaties: The Hague, The Netherlands, 2019. [Google Scholar]
- Boelhouwer, P. The housing market in The Netherlands as a driver for social inequalities: Proposals for reform. Int. J. Hous. Policy 2020, 20, 447–456. [Google Scholar] [CrossRef]
- Anundsen, A.K.; Larsen, E.R.; Sommervoll, D.E. Strategic Price-Setting and Incentives in the Housing Market; Working Paper Series; Oslo Metropolitan University: Oslo, Norway, 2020. [Google Scholar]
- Gilbert, N.; Hawksworth, J.C.; Swinney, P.A. An Agent-Based Model of the English Housing Market. In Proceedings of the AAAI 2009 Spring Symposium on Technosocial Predictive Analytics, Palo Alto, CA, USA, 23–25 March 2009; pp. 30–35. [Google Scholar]
- Cheng, P.; Lin, Z.; Liu, Y. Competing selling strategies in the housing market. J. Real Estate Financ. Econ. 2020, 63, 394–413. [Google Scholar] [CrossRef]
- García-Magari no, I.; Lacuesta, R. Agent-based simulation of real-estate transactions. J. Comput. Sci. 2017, 21, 60–76. [Google Scholar] [CrossRef]
- Han, L.; Strange, W.C. The microstructure of housing markets: Search, bargaining, and brokerage. In Handbook of Regional and Urban Economics; Elsevier: Amsterdam, The Netherlands, 2015; Volume 5, pp. 813–886. [Google Scholar]
- Ozhegov, E.M.; Sidorovykh, A.S. Heterogeneity of sellers in housing market: Difference in pricing strategies. J. Hous. Econ. 2017, 37, 42–51. [Google Scholar] [CrossRef]
- Bouman, J.A. The Best-Offer-over Pricing Method: A Best-Strategy? A Case Study in the Rotterdam Housing Market. Master’s Thesis, Rijksuniversiteit Groningen, Groningen, The Netherlands, 2020. [Google Scholar]
- Haurin, D.; McGreal, S.; Adair, A.; Brown, L.; Webb, J.R. List price and sales prices of residential properties during booms and busts. J. Hous. Econ. 2013, 22, 1–10. [Google Scholar] [CrossRef]
- Anglin, P.M.; Rutherford, R.; Springer, T.M. The trade-off between the selling price of residential properties and time-on-the-market: The impact of price setting. J. Real Estate Financ. Econ. 2003, 26, 95–111. [Google Scholar] [CrossRef]
- Cheng, P.; Lin, Z.; Liu, Y. A Model of Time-on-Market and Real Estate Price Under Sequential Search with Recall. Real Estate Econ. 2008, 36, 813–843. [Google Scholar] [CrossRef]
- Ettema, D. A multi-agent model of urban processes: Modelling relocation processes and price setting in housing markets. Comput. Environ. Urban Syst. 2011, 35, 1–11. [Google Scholar] [CrossRef]
- Axtell, R.; Farmer, D.; Geanakoplos, J.; Howitt, P.; Carrella, E.; Conlee, B.; Goldstein, J.; Hendrey, M.; Kalikman, P.; Masad, D.; et al. An agent-based model of the housing market bubble in metropolitan Washington, DC. In Proceedings of the Deutsche Bundesbank Spring Conference on ‘Housing Markets and the Macroeconomy: Challenges for Monetary Policy and Financial Stability’, Eltville, Germany, 5–6 May 2014. [Google Scholar]
- Benenson, I. Multi-agent simulations of residential dynamics in the city. Comput. Environ. Urban Syst. 1998, 22, 25–42. [Google Scholar] [CrossRef]
- Song, S. Determinants of bargaining outcome in single-family housing transactions: An empirical examination. Urban Stud. 1995, 32, 605–614. [Google Scholar] [CrossRef]
- Bazerman, M.H.; Neale, M.A.; Valley, K.L.; Zajac, E.J.; Kim, Y.M. The effect of agents and mediators on negotiation outcomes. Organ. Behav. Hum. Decis. Process. 1992, 53, 55–73. [Google Scholar] [CrossRef]
- De Toro, P.; Nocca, F.; Buglione, F. Real Estate Market Responses to the COVID-19 Crisis: Which Prospects for the Metropolitan Area of Naples (Italy)? Urban Sci. 2021, 5, 23. [Google Scholar] [CrossRef]
- Domínguez-Mujica, J.; González-Pérez, J.M.; Parreño-Castellano, J.M.; Sánchez-Aguilera, D. Gentrification on the Move. New Dynamics in Spanish Mature Urban-Tourist Neighborhoods. Urban Sci. 2021, 5, 33. [Google Scholar] [CrossRef]
- Overwater, A.; Yorke-Smith, N. Agent-Based Simulation of Short-Term Peer-to-Peer Rentals: Evidence from the Amsterdam Housing Market. Environ. Plan. B Urban Anal. City Sci. 2022, 49, 223–240. [Google Scholar] [CrossRef]
- Moss, S. Alternative Approaches to the Empirical Validation of Agent-Based Models. J. Artif. Soc. Soc. Simul. 2008, 11, 5. [Google Scholar]
- van Dam, K.H.; Nikolic, I.; Lukszo, Z. Agent-Based Modelling of Socio-Technical Systems; Springer Science & Business Media: Dordrecht, The Netherlands, 2012. [Google Scholar]
- Heath, B.L.; Hill, R.R. Some insights into the emergence of agent-based modelling. J. Simul. 2010, 4, 163–169. [Google Scholar] [CrossRef]
- ten Broeke, G.; van Voorn, G.; Ligtenberg, A. Which Sensitivity Analysis Method Should I Use for My Agent-Based Model? J. Artif. Soc. Soc. Simul. 2016, 19, 5. [Google Scholar] [CrossRef]
- Devisch, O.T.; Timmermans, H.J.; Arentze, T.A.; Borger, A.W. An agent-based model of residential choice dynamics in nonstationary housing markets. Environ. Plan. A 2009, 41, 1997–2013. [Google Scholar] [CrossRef]
- Carstensen, C.L. An Agent-Based Model of the Housing Market: Steps toward a Computational Tool for Policy Analysis. Master’s Thesis, University of Copenhagen, Copenhagen, Denmark, 2015. [Google Scholar]
- Zhuge, C.; Shao, C. Agent-based modelling of purchasing, renting and investing behaviour in dynamic housing markets. J. Comput. Sci. 2018, 27, 130–146. [Google Scholar] [CrossRef]
- Yun, T.; Moon, I. Housing Market Agent-Based Simulation with Loan-To-Value and Debt-To-Income. J. Artif. Soc. Soc. Simul. 2020, 23, 5. [Google Scholar] [CrossRef]
- Mozaffaree Pour, N.; Oja, T. Urban Expansion Simulated by Integrated Cellular Automata and Agent-Based Models; An Example of Tallinn, Estonia. Urban Sci. 2021, 5, 85. [Google Scholar] [CrossRef]
- Ziengs, A.H.; Yorke-Smith, N. Hot Housing: A Study of Bidding Strategies in the Dutch Urban Residential Market. In Proceedings of the Working Notes of AAMAS’19 Workshop on Agent-Based Modelling of Urban Systems (ABMUS’19), Montreal, QC, Canada, May 2019. [Google Scholar]
- Van Duin, C.; Harmsen, C. Een nieuw model voor de CBS huishoudensprognose. Bevolkingstrends Stat. Kwartaalblad Demogr. Ned. 2009, 57, 20–42. [Google Scholar]
- Edmonds, B.; Moss, S. From KISS to KIDS—An ‘Anti-simplistic’ Modelling Approach. In Proceedings of the Workshop on Multi-Agent and Multi-Agent-Based Simulation (MABS’04), New York, NY, USA, 19 July 2004; Lecture Notes in Computer Science. Springer: Berlin/Heidelberg, Germany, 2004; Volume 3415, pp. 130–144. [Google Scholar] [CrossRef]
- Grimm, V.; Railsback, S.F.; Vincenot, C.E.; Berger, U.; Gallagher, C.; DeAngelis, D.L.; Edmonds, B.; Ge, J.; Giske, J.; Groeneveld, J.; et al. The ODD Protocol for Describing Agent-Based and Other Simulation Models: A Second Update to Improve Clarity, Replication, and Structural Realism. J. Artif. Soc. Soc. Simul. 2020, 23, 7. [Google Scholar] [CrossRef]
- Wilensky, U. NetLogo. Center for Connected Learning and Computer-Based Modeling; Northwestern University: Evanston, IL, USA, 1999. [Google Scholar]
- Wiegel, E. Decreasing Demand without Building Houses: Towards Agent-Based Market Analysis of Internal Demand. Master’s Thesis, Delft University of Technology, Delft, The Netherlands, 2021. [Google Scholar]
- Nibud. Rapport Advies Financieringslastnormen 2021; Nibud—Nationaal Instituut voor Budgetvoorlichting: Utrecht, The Netherlands, 2021. [Google Scholar]
- Ministerie van Algemene Zaken. Kom ik in Aanmerking voor een Sociale Huurwoning van een Woningcorporatie? Ministerie van Algemene Zaken: The Hague, The Netherlands, 2021. [Google Scholar]
- Berkers, V.; Dignum, K. Wonen in Amsterdam 2019 Woningmarkt; Gemeente Amserdam: Amserdam, The Netherlands, 2020. [Google Scholar]
- Groot, N.d. Bouw van 75.000 Nieuwe Huizen Gaat Ook Komende Twee Jaar niet Lukken. 2019. Available online: https://www.ad.nl/wonen/bouw-van-75-000-nieuwe-huizen-gaat-ook-komende-twee-jaar-niet-lukken-br~aa0ba573 (accessed on 2 September 2023).
- Sobol, I.M. Global sensitivity indices for nonlinear mathematical models and their Monte Carlo estimates. Math. Comput. Simul. 2001, 55, 271–280. [Google Scholar] [CrossRef]
- Wilhelmsson, M. Housing Choices of Young Adults in Sweden. Real Estate 2024, 1, 4–25. [Google Scholar] [CrossRef]
- Nye, B.D. What is between KISS and KIDS: A Keep It Knowledgeable (KIKS) Principle for Cognitive Agent Design. In Proceedings of the AAAI Fall Symposium on Integrated Cognition, 15 November 2013; Available online: https://ojs.library.carleton.ca/index.php/cmcb/article/view/2678 (accessed on 2 September 2021).
- Huisman, C.J. A silent shift? The precarisation of the Dutch rental housing market. J. Hous. Built Environ. 2016, 31, 93–106. [Google Scholar] [CrossRef]
- Maas, O.P. Modelling and Improving Social Housing Markets. Master’s Thesis, Delft University of Technology, Delft, The Netherlands, 2020. Available online: http://resolver.tudelft.nl/uuid:a94299c9-e848-4c5b-aeed-ed1e9e01fd1c (accessed on 2 September 2021).
- Ministerie van Binnenlandse Zaken en Koninkrijksrelaties. Veelgestelde Vragen over Het (Passend) Toewijzen van Woningen; Ministerie van Binnenlandse Zaken en Koninkrijksrelaties: The Hague, The Netherlands, 2021. [Google Scholar]
- Ministerie van Algemene Zaken. Mag Mijn Verhuurder de Huur Opzeggen van Mijn Woning? Ministerie van Algemene Zaken: The Hague, The Netherlands, 2021. [Google Scholar]
- Ministerie van Algemene Zaken. Welke Regels Gelden er voor een Huurverhoging? Ministerie van Algemene Zaken: The Hague, The Netherlands, 2021. [Google Scholar]
- Ministerie van Algemene Zaken. Hoeveel Huur Betaal ik Maximaal voor Mijn Woning? Ministerie van Algemene Zaken: The Hague, The Netherlands, 2021. [Google Scholar]
- Dutch Government. Artikel 274 Burgerlijk Wetboek Boek 7; Dutch Government: The Hague, The Netherlands, 2021.
- Ministerie van Algemene Zaken. Bij Welke Soorten Hypotheken heb ik Recht OP Hypotheekrenteaftrek? Ministerie van Algemene Zaken: The Hague, The Netherlands, 2021. [Google Scholar]
- Ministerie van Algemene Zaken. Hoeveel Kan ik Maximaal LENEN voor Mijn Koopwoning? Ministerie van Algemene Zaken: The Hague, The Netherlands, 2020. [Google Scholar]
- NVM. Analyse Woningmarkt 3e Kwartaal 2020; NVM: Utrecht, The Netherlands, 2020. [Google Scholar]
- NVM. Analyse Woningmarkt 1e Kwartaal 2020; NVM: Utrecht, The Netherlands, 2020. [Google Scholar]
- Ministerie van Algemene Zaken. Ruimte voor Wonen Kernpublicatie Woon 2018; Ministerie van Algemene Zaken: The Hague, The Netherlands, 2019. [Google Scholar]
Variable | Value | Remark |
---|---|---|
seed | 0 | Setting seed to 0 generates random seeds |
plot? | disabled | Disabling plots improves performance |
maximum_simultaneous- _reactions_social_market maximum_simultaneous- _reactions_lottery_social_market | 8 8 | Simulates the 2 reactions per week as 8 reactions per month. |
supply_lottery | 10% | |
maximum_income_social- _rental_market | 40,024 | The maximum income for the social market is set to 40,024 according to current Dutch law [49]. |
mortgage_length mortgage_type mortgage_interest | 360 months annuity 0.0210 | |
population_size | 1000 | A compromise between population size and simulation length |
housing_supply | 951 | |
free_housing_supply% private_housing_supply% home_ownership- _housing_supply% | 18 51 31 | Based on the reported composition for Amsterdam in [50]. |
Size1/2% Size3% Size4% Size5% | 31.29 34.35 23.69 10.67 | Calculated using ‘Woningvoorraad naar stadsdelen en aantal kamers per woning, 1 januari 2021’ |
social_rent_432.51% social_rent_432.51_to_619.01% social_rent_619.01_to_663.40% social_rent_663.40_to_737.14% | 21.22 53.37 11.16 14.25 | Calculated using ‘Corporatiebezit naar huurklassen en stadsdelen. 1 januari 2020’ |
house_worth_to_221000 house_worth_221000_to_310000 house_worth_310000_to_385000 house_worth_385000_to_511000 house_worth_511000_plus | 12.21 22.18 22.48 22.48 20.65 | Calculated using ‘Woning voorrraad naar stadsdelen en waarde van de woning, 1 janurari 2020 (procenten)’ |
new_houses_monthly new_houses_type | 0.84 flat | Follows the plans reported in the construction goal in [51], scaled down with the house supply in the simulation |
social_leave old_large_house_leavers spouse_waiting_time building_waiting_time migration migration_type | disabled disabled ‘always’ ‘while_searching’ 0.00 percentage of households | Other values for these variables are used to introduce variations |
shocked% shock_size | 20% 20% | These values are set according to the defaults in [16], from which the income shock system originates. |
Variable | Range | Type |
---|---|---|
seed | [100,000, 200,000] | Integer |
maximum_simultaneous_reactions_social_market | [1, 16] | Integer |
maximum_simultaneous_reactions_lottery_social_market | [1, 16] | Integer |
supply_lottery | [0, 100] | Float |
maximum_income_social_rental_market | [35,000, 45,000] | Float |
social_leave | [True, False] | Boolean |
old_large_house_leavers | [True, False] | Boolean |
spouse_waiting_time | [always, never, divorce] | String |
building_waiting_time | [while_searching, always] | String |
new_houses_monthly | [0, 2] | Float |
housing_sector_combinations | [0, 5150] | Integer |
size_combinations | [0, 176,850] | Integer |
Variable (NoH = Number of Houses) | Major Contributor (ST > 0.4) | Minor Contributor (ST > 0.25) |
---|---|---|
NoH wanting to move out | new_houses_monthly | housing_sector_combinations |
NoH motivated by divorce | housing_sector_combinations | new_houses_monthly |
NoH motivated by too small homes | size_combinations | housing_sector_combinations |
NoH motivated by social_leave | social_leave x housing_sector_combinations | |
NoH motivated by old_large_house_leavers | old_large_house_leavers | |
NoH motivated by high_rent | housing_sector_combinations | |
Avg. age private sector | old_large_house_leavers | |
housing_sector_combinations | ||
Avg. age social sector | housing_sector_combinations | |
Avg. age owner-occupied sector | housing_sector_combinations | |
Avg. age homeless | housing_sector_combinations | |
new_houses_monthly | ||
Avg. rent private sector | old_large_house_leavers | size_combinations |
Avg. mortgage size owner-occupied sector | housing_sector_combinations | |
Avg. % of income spent in private sector | housing_sector_combinations | old_large_house_leavers |
Avg. % of income spent in social sector | housing_sector_combinations | |
social_leave | ||
Avg. % of income spent in owner-occupied sector | housing_sector_combinations | |
Number of Households | seed | |
housing_sector_combinations | ||
Avg. waiting time of searching households | old_large_house_leavers | |
building_waiting_time | ||
housing_sector_combinations | ||
Avg. waiting time of successful renters | housing_sector_combinations | new_houses_monthly |
Avg. waiting time all households | building_waiting_time | |
Avg. waiting time low-income households | housing_sector_combinations | building_waiting_time |
Highest waiting time | old_large_house_leavers | housing_sector_combinations |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2024 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Wiegel, E.; Yorke-Smith, N. An Agent-Based Market Analysis of Urban Housing Balance in The Netherlands. Real Estate 2024, 1, 80-135. https://doi.org/10.3390/realestate1010006
Wiegel E, Yorke-Smith N. An Agent-Based Market Analysis of Urban Housing Balance in The Netherlands. Real Estate. 2024; 1(1):80-135. https://doi.org/10.3390/realestate1010006
Chicago/Turabian StyleWiegel, Erik, and Neil Yorke-Smith. 2024. "An Agent-Based Market Analysis of Urban Housing Balance in The Netherlands" Real Estate 1, no. 1: 80-135. https://doi.org/10.3390/realestate1010006
APA StyleWiegel, E., & Yorke-Smith, N. (2024). An Agent-Based Market Analysis of Urban Housing Balance in The Netherlands. Real Estate, 1(1), 80-135. https://doi.org/10.3390/realestate1010006