-
Notifications
You must be signed in to change notification settings - Fork 0
/
simulate_LSC_ns.py
113 lines (70 loc) · 2.79 KB
/
simulate_LSC_ns.py
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
import numpy as np
import time
import subprocess
from SCEconomy_LSC_ns import Economy
import pickle
if __name__ == '__main__':
def curvedspace(begin, end, curve, num=100):
import numpy as np
ans = np.linspace(0, (end - begin)**(1.0/curve), num) ** (curve) + begin
ans[-1] = end #so that the last element is exactly end
return ans
agrid = curvedspace(0.0, 100., 2.0, 40)
# alpha = 0.3 #new!
# theta = 0.41
# ynb_p_gdp = 0.25
# xnb_p_gdp = 0.105
# g_p_gdp = 0.13
# yc_init = 1.04
# GDP_implied = yc_init/(1. - ynb_p_gdp - /(1.-alpha))
# ynb = ynb_p_gdp*GDP_implied
# xnb = xnb_p_gdp*GDP_implied
# g = g_p_gdp*GDP_implied
### additional info
zgrid = np.load('./input_data/zgrid.npy') ** 2.0
# zgrid2 = np.load('./input_data/zgrid_09_0075.npy') ** 2.0
# prob2 = np.load('./input_data/prob_epsz_07_09_01_0075.npy')
path_to_shock = './tmp/data_i_s'
from markov import calc_trans, Stationary
num_pop = 100_000
sim_time = 3_000
data_i_s = np.ones((num_pop, sim_time), dtype = int)
#need to set initial state for zp
data_i_s[:, 0] = 7
# prob = np.load('./input_data/transition_matrix.npy')
prob = np.load('./DeBacker/prob_epsz.npy')
np.random.seed(0)
data_rand = np.random.rand(num_pop, sim_time)
calc_trans(data_i_s, data_rand, prob)
data_i_s = data_i_s[:, 2000:]
np.save(path_to_shock + '.npy' , data_i_s)
p_, rc_ = 0.275384608013927, 0.0579181695442646
###define additional parameters###
num_core = 4 #7 or 8 must be the best for Anmol's PC. set 3 or 4 for Yuki's laptop
###end defining additional parameters###
print('Solving the model with the given prices...')
print('Do not simulate more than one models at the same time...')
econ = Economy(nu = 0.1, path_to_data_i_s = path_to_shock, prob = prob, zgrid = zgrid, agrid = agrid)
econ.set_prices(p = p_, rc = rc_)
with open('econ.pickle', mode='wb') as f: pickle.dump(econ, f)
t0 = time.time()
result = subprocess.run(['mpiexec', '-n', str(num_core), 'python', 'SCEconomy_LSC_ns.py'], stdout=subprocess.PIPE)
t1 = time.time()
with open('econ.pickle', mode='rb') as f: econ = pickle.load(f)
# w = econ.w
p = econ.p
rc = econ.rc
moms = econ.moms
dist = np.sqrt(moms[0]**2.0 + moms[1]**2.0)
if p != p_ or rc != rc_:
print('err: input prices and output prices do not coincide.')
print('p = ', p, ', p_ = ', p_)
print('rc = ', rc, ', rc_ = ', rc_)
#c
econ.print_parameters()
econ.calc_moments()
###calculate other important variables###
# econ.calc_sweat_eq_value()
econ.calc_age()
econ.simulate_other_vars()
econ.save_result()