by nico1637 » Tue Sep 26, 2006 2:35 am
To be honest, I have zero experience with Dynare (and just about as much with Macro), so it might be too much trouble explaining to me what is wrong, but any advice would be appreciated. I am getting convergence and initial value errors, but I am not sure which values or equations are causing the problem since this is all new to me.
Here is what I have so far...
var c,i,y,tb,w,z,q,k,rdom,b,n;
parameters nu,bbar,psi,alpha,delta,beta,phi,phi_prime,phi_double,r;
alpha=0.53;
beta=0.9718;
delta=0.05;
phi_prime=1;
phi_double=5/3;
r=.11;
nu=1.7;
psi=.000742;
bbar=.7442;
phi=.05;
model;
rdom=r+psi*(exp(b-bbar)-1);
tb=b/(1+rdom)-b(-1);
c=y-i-tb;
k=(1-delta)*k(-1)+phi*k(-1);
1=c*beta*(1+rdom)/c(+1);
nu*c=(1-n)*w;
w=(1-alpha)*y/n;
z=alpha*y/k(-1);
1=q*phi_prime;
q=(1/(1+rdom))*(z(+1)+q(+1)*(1-delta+phi(+1)-phi_prime*i(+1)/k));
phi=i/k(-1)+(1/2)*phi_double*(i/k(-1)-delta)^2;
end;
initval;
c=.84;
i=2.49;
y=1;
tb=8.49;
q=1;
k=.33;
n=.28;
end;
steady;
stoch_simul;
Any guidance is greatly appreciated!! Thanks a lot!!!