File: lucas78.mod

package info (click to toggle)
dynare 4.4.3-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,356 kB
  • ctags: 15,842
  • sloc: cpp: 77,029; ansic: 29,056; pascal: 13,241; sh: 4,811; objc: 3,061; yacc: 3,013; makefile: 1,479; lex: 1,258; python: 162; lisp: 54; xml: 8
file content (26 lines) | stat: -rw-r--r-- 263 bytes parent folder | download | duplicates (7)
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
var Y P;

varexo EXO_Y;

parameters beta gamma rho y_ss;

beta = 0.95;
gamma= 0.5;
rho  = 0.9;
y_ss = 2;

model;
Y-y_ss = rho*(Y(-1)-y_ss) + EXO_Y;
Y^(-gamma)*P = beta*Y(+1)^(-gamma)*(P(+1) + Y(+1));
end;

initval;
Y = 2;
P = 38;
end;

vcov = [
10
];

order = 7;