dynare/tests/histval_initval_file/ramst_histval_file.mod

97 lines
2.3 KiB
Modula-2

/* Test for the histval_file() command. This file needs ramst_histval_data.m. */
var c k;
varexo x;
parameters alph gam delt bet aa;
alph=0.5;
gam=0.5;
delt=0.02;
bet=0.05;
aa=0.5;
model;
c + k - aa*x*k(-1)^alph - (1-delt)*k(-1);
c^(-gam) - (1+bet)^(-1)*(aa*alph*x(+1)*k^(alph-1) + 1 - delt)*c(+1)^(-gam);
end;
initval;
x = 1;
k = ((delt+bet)/(1.0*aa*alph))^(1/(alph-1));
c = aa*k^alph-delt*k;
end;
steady;
histval_file(datafile = 'ramst_histval_data.m');
perfect_foresight_setup(periods = 200);
perfect_foresight_solver;
if ~oo_.deterministic_simulation.status
error('Perfect foresight simulation failed')
end
oo_.exo_simul = [];
oo_.endo_simul = [];
initval_file(filename = ramst_initval_file_data_row_vec_mat);
perfect_foresight_setup(periods=200);
if oo_.exo_simul(2) ~= 1.2
error('initval_file problem with exogenous variable');
end
if oo_.endo_simul(2, 2) ~= 13
error('initval_file option problem with endogenous variable');
end
perfect_foresight_solver;
if ~oo_.deterministic_simulation.status
error('Perfect foresight simulation failed')
end
initval_file(datafile = 'ramst_data.m');
perfect_foresight_setup(periods = 200);
perfect_foresight_solver;
if ~oo_.deterministic_simulation.status
error('Perfect foresight simulation failed')
end
oo_.exo_simul = [];
oo_.endo_simul = [];
initval_file(datafile = 'ramst_data.mat');
perfect_foresight_setup(periods = 200);
perfect_foresight_solver;
if ~oo_.deterministic_simulation.status
error('Perfect foresight simulation failed')
end
oo_.exo_simul = [];
oo_.endo_simul = [];
initval_file(datafile = 'ramst_data.csv');
perfect_foresight_setup(periods = 200);
perfect_foresight_solver;
if ~oo_.deterministic_simulation.status
error('Perfect foresight simulation failed')
end
oo_.exo_simul = [];
oo_.endo_simul = [];
initval_file(datafile = 'ramst_data.xlsx');
perfect_foresight_setup(periods = 200);
perfect_foresight_solver;
if ~oo_.deterministic_simulation.status
error('Perfect foresight simulation failed')
end
oo_.exo_simul = [];
oo_.endo_simul = [];
if ispc;
initval_file(datafile = 'ramst_data.cls');
perfect_foresight_setup(periods = 200);
perfect_foresight_solver;
oo_.exo_simul = [];
oo_.endo_simul = [];
if ~oo_.deterministic_simulation.status
error('Perfect foresight simulation failed')
end;
end;