I am implementing the non-linear BGG model and I am confused about what's happening to my technology shock...
Here is the idea:
The production function is:
- Code: Select all
y = ((techno*l)^(1-alpha))*(k^(alpha));
where the variable techno is defined as:
- Code: Select all
(techno/technobar) - ((techno(-1)/technobar)^rhoTechno)*exp(eps_techno);
with technobar=1 and rhoTechno=0.95
in initval, I specified:
- Code: Select all
techno = technobar;
and in shocks:
- Code: Select all
shocks;
var eps_techno = 0.1^2;
end;
And, it seems that the shock has no impact on the dynamics (variance decomposition = 0 and IRF are not plotted).
I don't see the problem.... The .mod file is enclosed.
Thanks a lot!