-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhousehold_functions_top.c
298 lines (260 loc) · 11.3 KB
/
household_functions_top.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
#include "header.h"
#include "household_agent_header.h"
#include "library_header.h"
/*
* \fn: int household_init_post_id()
* \brief:
*/
int household_init_post_id()
{
/*** Balancesheet Verification */
char * filename;
FILE * file1;
filename = malloc(100*sizeof(char));
filename[0]=0;
strcpy(filename, "./outputs/data/Household_ID_Liquidity_Mortgages.txt");
file1 = fopen(filename,"w");
//fprintf(file1,"%d %f %f\n", ID, LIQUIDITY, MORTGAGES);
fclose(file1);
free(filename);
add_household_jpoffice_id_message(ID);
return 0; /* Returning zero means the agent is not removed */
}
/*
* \fn: int household_init_employment()
* \brief:
*/
int household_init_employment()
{
START_JPOFFICE_HOUSEHOLD_EMPLOYER_MESSAGE_LOOP
MY_EMPLOYER_ID = jpoffice_household_employer_message->employer_id;
ISMANAGER = jpoffice_household_employer_message->position;
FINISH_JPOFFICE_HOUSEHOLD_EMPLOYER_MESSAGE_LOOP
if (MY_EMPLOYER_ID > 0) {WAGE = 5.0;}
else {WAGE = 0.0;}
for (int i = 0; i < 3; i++) {
if (PREVIOUS_WAGES[i] == 0) {
PREVIOUS_BENEFITS[i] = 4;
} else {
PREVIOUS_BENEFITS[i] = 1.5;
}
}
/*** Balancesheet Verification */
char * filename;
FILE * file1;
filename = malloc(100*sizeof(char));
filename[0]=0;
strcpy(filename, "./outputs/data/Household_ID_Liquidity_Mortgages.txt");
file1 = fopen(filename,"a");
fprintf(file1,"%d %f %f\n", ID, LIQUIDITY, MORTGAGES);
fclose(file1);
free(filename);
return 0; /* Returning zero means the agent is not removed */
}
/*
* \fn: int household_init_balancesheet()
* \brief:
*/
int household_init_balancesheet()
{
/* The firms are initiliazed loans only with their preferred banks.
*/
double d1, d2, annuity;
double total_income = LABOUR_INCOME + CAPITAL_INCOME;
double mortgage_cost_income_ratio = MORTGAGE_COST_TO_INCOME_RATIO;
double used_interest_rate = 0;
int rand_loanterm;
rand_loanterm = random_int(MIN_LOANTERM_AT_START,MAX_LOANTERM_AT_START)*4;
if (MORTGAGE_CHOICE == 1) {
if(MORTGAGE_SET_BY_HOUSEHOLD_LEVERAGE) {
MORTGAGES = TOTAL_ASSETS * HOUSEHOLD_STARTUP_LEVERAGE;
} else {
d1 = MORTGAGES_LIST.array[0].interestrate/4;
d2 = d1 * pow((1 + d1), rand_loanterm);
annuity = 1/d1 - 1/d2;
MORTGAGES = total_income * mortgage_cost_income_ratio * annuity;
}
for (int i = 0; i < MORTGAGES_LIST.size ; i++) {
MORTGAGES_LIST.array[i].principal = MORTGAGES / MORTGAGES_LIST.size;
MORTGAGES_LIST.array[i].quarters_left = rand_loanterm;
}
}
else if (MORTGAGE_CHOICE == 2){
if(MORTGAGE_SET_BY_HOUSEHOLD_LEVERAGE) {
MORTGAGES = TOTAL_ASSETS * HOUSEHOLD_STARTUP_LEVERAGE;
} else {
MORTGAGES = (total_income * mortgage_cost_income_ratio) / (MORTGAGES_LIST.array[0].interestrate / 4 + 1/rand_loanterm);
}
for (int i = 0; i < MORTGAGES_LIST.size ; i++) {
MORTGAGES_LIST.array[i].principal = MORTGAGES / MORTGAGES_LIST.size;
MORTGAGES_LIST.array[i].quarters_left = rand_loanterm;
}
}
else if (MORTGAGE_CHOICE == 3){
if(USE_FIXED_RATE) {
used_interest_rate = FIXED_RATE;
} else {
used_interest_rate = MORTGAGES_LIST.array[0].interestrate - IIM_RATE_DISCOUNT;
}
if(MORTGAGE_SET_BY_HOUSEHOLD_LEVERAGE) {
MORTGAGES = TOTAL_ASSETS * HOUSEHOLD_STARTUP_LEVERAGE;
} else {
d1 = used_interest_rate/4;
d2 = d1 * pow((1 + d1), rand_loanterm);
annuity = 1/d1 - 1/d2;
MORTGAGES = total_income * mortgage_cost_income_ratio * annuity;
}
for (int i = 0; i < MORTGAGES_LIST.size ; i++) {
MORTGAGES_LIST.array[i].principal = MORTGAGES / MORTGAGES_LIST.size;
MORTGAGES_LIST.array[i].interestrate = used_interest_rate;
MORTGAGES_LIST.array[i].quarters_left = rand_loanterm;
}
}
else if (MORTGAGE_CHOICE == 4){
if(USE_FIXED_RATE) {
used_interest_rate = FIXED_RATE;
} else {
used_interest_rate = MORTGAGES_LIST.array[0].interestrate - IIM_RATE_DISCOUNT;
}
if(MORTGAGE_SET_BY_HOUSEHOLD_LEVERAGE) {
MORTGAGES = TOTAL_ASSETS * HOUSEHOLD_STARTUP_LEVERAGE;
} else {
MORTGAGES = (total_income * mortgage_cost_income_ratio) / (used_interest_rate / 4 + 1/rand_loanterm);
}
for (int i = 0; i < MORTGAGES_LIST.size ; i++) {
MORTGAGES_LIST.array[i].principal = MORTGAGES / MORTGAGES_LIST.size;
MORTGAGES_LIST.array[i].interestrate = used_interest_rate;
MORTGAGES_LIST.array[i].quarters_left = rand_loanterm;
}
}
else if (MORTGAGE_CHOICE == 5){
if(MORTGAGE_SET_BY_HOUSEHOLD_LEVERAGE) {
MORTGAGES = TOTAL_ASSETS * HOUSEHOLD_STARTUP_LEVERAGE;
} else {
d1 = (MORTGAGES_LIST.array[0].interestrate + 0.01)/4;
d2 = d1 * pow((1 + d1), rand_loanterm);
annuity = 1/d1 - 1/d2;
MORTGAGES = total_income * mortgage_cost_income_ratio * annuity;
}
for (int i = 0; i < MORTGAGES_LIST.size ; i++) {
MORTGAGES_LIST.array[i].principal = MORTGAGES / MORTGAGES_LIST.size;
MORTGAGES_LIST.array[i].interestrate += 0.01;
MORTGAGES_LIST.array[i].quarters_left = rand_loanterm;
}
}
else if (MORTGAGE_CHOICE == 6){
if(MORTGAGE_SET_BY_HOUSEHOLD_LEVERAGE) {
MORTGAGES = TOTAL_ASSETS * HOUSEHOLD_STARTUP_LEVERAGE;
} else {
MORTGAGES = (total_income * mortgage_cost_income_ratio) / ((MORTGAGES_LIST.array[0].interestrate + 0.01) / 4 + 1/rand_loanterm);
}
for (int i = 0; i < MORTGAGES_LIST.size ; i++) {
MORTGAGES_LIST.array[i].principal = MORTGAGES / MORTGAGES_LIST.size;
MORTGAGES_LIST.array[i].interestrate += 0.01;
MORTGAGES_LIST.array[i].quarters_left = rand_loanterm;
}
}
else if (MORTGAGE_CHOICE == 7){
if(USE_FIXED_RATE) {
used_interest_rate = FIXED_RATE;
} else {
used_interest_rate = MORTGAGES_LIST.array[0].interestrate - IIM_RATE_DISCOUNT;
}
if(MORTGAGE_SET_BY_HOUSEHOLD_LEVERAGE) {
MORTGAGES = TOTAL_ASSETS * HOUSEHOLD_STARTUP_LEVERAGE;
} else {
d1 = used_interest_rate/4;
d2 = d1 * pow((1 + d1), rand_loanterm);
annuity = 1/d1 - 1/d2;
MORTGAGES = total_income * mortgage_cost_income_ratio * annuity / (1 + (annuity * (pow(1+EXPECTED_INFLATION_RATE, 1/4)-1)));
}
for (int i = 0; i < MORTGAGES_LIST.size ; i++) {
MORTGAGES_LIST.array[i].principal = MORTGAGES / MORTGAGES_LIST.size;
MORTGAGES_LIST.array[i].interestrate = used_interest_rate; //(MORTGAGES_INTEREST_RATE-0.01);
MORTGAGES_LIST.array[i].quarters_left = rand_loanterm;
}
}
else {
if (WARNING_MODE) {
printf("Warning @household_housing_debt_writeoff(): Unexpected mortgage choice = %d \n", MORTGAGE_CHOICE);
}
}
EQUITY = TOTAL_ASSETS - MORTGAGES;
EQUITY_RATIO = EQUITY / TOTAL_ASSETS;
add_household_bank_init_mortgages_message(BANK_ID, MORTGAGES);
add_household_bank_init_deposit_message(BANK_ID, LIQUIDITY);
//if (MORTGAGE_CHOICE == 3 || MORTGAGE_CHOICE == 4 || MORTGAGE_CHOICE == 7){
// for (int i = 0; i < MORTGAGES_LIST.size ; i++) {
// MORTGAGES_LIST.array[i].interestrate = 0.02;
// }
//}
//else if (MORTGAGE_CHOICE == 5 || MORTGAGE_CHOICE == 6) {
// for (int i = 0; i < MORTGAGES_LIST.size; i++) {
// MORTGAGES_LIST.array[i].interestrate += 0.01;
// }
//}
return 0; /* Returning zero means the agent is not removed */
}
/*
* \fn: int household_iterate()
* \brief: Resumes its regular functions.
*/
int household_iterate()
{
if (DATA_COLLECTION_MODE && COLLECT_HOUSEHOLD_DATA) {
if (IT_NO == 0) {
char * filename;
FILE * file1;
filename = malloc(100*sizeof(char));
/* Writing the column names. Make sure that an household with that ID does exist. */
if (ID == 542) {
/* @\fn: int household_consumption_recieve_goods() */
filename[0]=0;
strcpy(filename, "./outputs/data/Household_Weekly.txt");
file1 = fopen(filename,"w");
fprintf(file1,"%s %s %s %s %s %s %s\n","IT_NO", "ID", "LIQUIDITY", "WEEKLY_CONSUMPTION_BUDGET", "money_to_spend", "money_spent", "quantity_bought");
//fprintf(file1,"%d %d %f %f %f %f %d\n",IT_NO, ID, LIQUIDITY, WEEKLY_CONSUMPTION_BUDGET, 0.0, 0.0, 0);
fclose(file1);
/* @\fn: household_housing_debt_writeoff() */
filename[0]=0;
strcpy(filename, "./outputs/data/Household_Monthly_FirstDay.txt");
file1 = fopen(filename,"w");
fprintf(file1,"%s %s %s %s %s %s %s %s\n", "IT_NO", "ID", "MORTGAGES", "MORTGAGE_COST", "HOUSING_UNITS", "HOUSING_VALUE", "EQUITY_RATIO", "LIQUIDITY");
//fprintf(file1,"%d %d %f %f %d %f %f %f\n",IT_NO, ID, MORTGAGES, MORTGAGE_COSTS[0], HOUSING_UNITS, HOUSING_VALUE, EQUITY_RATIO, LIQUIDITY);
fclose(file1);
/* @\fn: int household_credit_collect_benefits() */
filename[0]=0;
strcpy(filename, "./outputs/data/Household_Monthly_LastDay.txt");
file1 = fopen(filename,"w");
fprintf(file1,"%s %s %s %s %s %s\n","IT_NO", "ID", "MY_EMPLOYER_ID", "WAGE", "unemployment_benefit", "general_benefit");
//fprintf(file1,"%d %d %d %f %f %f\n",IT_NO, ID, MY_EMPLOYER_ID, WAGE, 0.0, 0.0);
fclose(file1);
/* @\fn: int household_credit_do_balance_sheet() */
filename[0]=0;
strcpy(filename, "./outputs/data/Household_Quarterly.txt");
file1 = fopen(filename,"w");
fprintf(file1,"%s %s %s %s %s %s %s %s %s %s %s\n","IT_NO", "ID", "TOTAL_ASSETS", "LIQUIDITY", "HOUSING_VALUE", "LABOUR_INCOME", "BENEFITS", "CAPITAL_INCOME", "MORTGAGES", "HOUSING_PAYMENT", "EQUITY");
//fprintf(file1,"%d %d %f %f %f %f %f %f %f %f %f\n",IT_NO, ID, TOTAL_ASSETS, LIQUIDITY, HOUSING_VALUE, LABOUR_INCOME, GOVERNMENT_BENEFITS, CAPITAL_INCOME, MORTGAGES, HOUSING_PAYMENT, EQUITY);
fclose(file1);
free(filename);
}
}
}
IT_NO++;
return 0; /* Returning zero means the agent is not removed */
}
/*
* \fn: int household_update_bank_account()
* \brief: puts money to deposit account of its prefered bak. */
int household_update_bank_account()
{
if (LIQUIDITY > 0) {
add_household_bank_update_deposit_message(BANK_ID, LIQUIDITY);
}
if (PRINT_DEBUG_MODE) {
if (ID > 40 && ID < 60) {
printf("Household ID = %d has a liquidity amount = %f deposited to bank.\n", ID, LIQUIDITY);
}
}
return 0; /* Returning zero means the agent is not removed */
}