by clara » Wed Sep 21, 2016 12:30 am
Dear Mr Pfeifer,
1) In last post you asked me to use a conditional steady state file,Q1: what does this mean? is it having the steady_state_model block in the same mod.file, fix r=1 in initval and try to use the find_m file?
2) I run the example on dynare about ramsey:
var pai, c, n, r, a;
varexo u;
parameters beta, rho, epsilon, omega, phi, gamma;
beta=0.99;
gamma=3;
omega=17;
epsilon=8;
phi=1;
rho=0.95;
model;
a = rho*a(-1)+u;
1/c = beta*r/(c(+1)*pai(+1));
pai*(pai-1)/c = beta*pai(+1)*(pai(+1)-1)/c(+1)+epsilon*phi*n^(gamma+1)/omega -exp(a)*n*(epsilon-1)/(omega*c);
exp(a)*n = c+(omega/2)*(pai-1)^2;
end;
initval;
r=1;
end;
steady_state_model;
a = 0;
pai = beta*r;
c = find_c(0.96,pai,beta,epsilon,phi,gamma,omega);
n = c+(omega/2)*(pai-1)^2;
end;
Q2: Why variables in the model block come without exp(.)?
3) I want to calculate the welfare cost (loss) of going from 0 to 4 percent infation in term of consumption ( steady state and the mean). I used the ramsey command and my model run but I don't know if results make sens. My question:
Q3: where can I found results about the welfare loss?
Have I to comapre:
Approximated value of planner objective function
- with initial Lagrange multipliers set to 0: 739.539
- with initial Lagrange multipliers set to steady state: 766.4222
under inflation =0% and =4% and the diffrence between the two is my welafre loss?
Thank you a lot
Clara
- Attachments
-
- excute_clara_ramsey_nash.m
- (2.59 KiB) Downloaded 89 times
-
- Clara_ramsey_nash.mod
- (5.34 KiB) Downloaded 123 times