dynare/tests/pac/var-1/example1.mod

56 lines
1.3 KiB
Modula-2
Raw Normal View History

2018-06-04 14:46:41 +02:00
// --+ options: json=compute, stochastic +--
2018-02-09 16:55:32 +01:00
var y x z;
varexo ex ey ez;
parameters a_y_1 a_y_2 b_y_1 b_y_2 b_x_1 b_x_2 ; // VAR parameters
2018-02-15 15:23:23 +01:00
parameters beta e_c_m c_z_1 c_z_2; // PAC equation parameters
2018-02-09 16:55:32 +01:00
a_y_1 = .2;
a_y_2 = .3;
b_y_1 = .1;
b_y_2 = .4;
b_x_1 = -.1;
b_x_2 = -.2;
beta = .9;
e_c_m = .1;
2018-02-09 16:55:32 +01:00
c_z_1 = .7;
c_z_2 = -.3;
var_model(model_name=toto, eqtags=['eq:x', 'eq:y']);
pac_model(auxiliary_model_name=toto, discount=beta, model_name=pacman);
2018-02-09 16:55:32 +01:00
model;
[name='eq:y']
y = a_y_1*y(-1) + a_y_2*diff(x(-1)) + b_y_1*y(-2) + b_y_2*diff(x(-2)) + ey ;
2018-10-24 18:45:38 +02:00
[name='eq:x']
2018-02-09 16:55:32 +01:00
diff(x) = b_x_1*y(-2) + b_x_2*diff(x(-1)) + ex ;
[name='eq:pac']
diff(z) = e_c_m*(x(-1)-z(-1)) + c_z_1*diff(z(-1)) + c_z_2*diff(z(-2)) + pac_expectation(pacman) + ez;
2018-02-09 16:55:32 +01:00
end;
2018-05-31 13:41:27 +02:00
shocks;
var ex = 1.0;
var ey = 1.0;
var ez = 1.0;
end;
// Initialize the PAC model (build the Companion VAR representation for the auxiliary model).
pac.initialize('pacman');
2018-05-31 13:41:27 +02:00
// Update the parameters of the PAC expectation model (h0 and h1 vectors).
pac.update.expectation('pacman');
2018-05-31 13:41:27 +02:00
// Set initial conditions to zero. Please use more sensible values if any...
initialconditions = dseries(zeros(10, M_.endo_nbr+M_.exo_nbr), 2000Q1, vertcat(M_.endo_names,M_.exo_names));
// Simulate the model for 500 periods
TrueData = simul_backward_model(initialconditions, 500);