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
|
var Efficiency, efficiency;
varexo EfficiencyInnovation;
parameters rho, effstar, sigma;
/*
** Calibration
*/
rho = 0.950;
effstar = 1.000;
sigma = 0.1;
model;
// Eq. n°1:
efficiency = rho*efficiency(-1) + sigma*EfficiencyInnovation;
// Eq. n°2:
Efficiency = effstar*exp(efficiency);
end;
shocks;
var EfficiencyInnovation = 1;
end;
steady_state_model;
efficiency=0;
Efficiency=effstar;
end;
steady(nocheck);
extended_path(order=0,periods=100);
if ~oo_.extended_path.status
error('Extended path did not find solution in ep/ar_backward.mod')
end
|