I am working on a replication of the BGG (1999) financial accelerator model but with the non-linear equations. Later on, I would like to include more detailed parts of the economy. However, my first simulation of the very simple version does not work because Schur decomposition fails after computing steady state values. Any help in solving this issue is highly appreciated and I look forward! Please find my Dynare code below:
// Simple DSGE model based on Bernanke et al.
// Define variables and parameters
var C H M P D B R Rn W; // Endogenous variables
varexo e_R; // Exogenous shock
parameters beta xi zeta; // Model parameters
// Calibration of parameters
beta = 0.99; // Discount factor
xi = 1.5; // Labor disutility parameter
zeta = 0.05; // Money demand parameter
// Model equations
model;
// Euler equation (B.3)
1/C = beta*(1/C(+1))*R(+1);
// Labor supply (B.4)
W*1/C = xi*1/(1-H);
// Money demand (B.5)
M/P = zeta*C*((Rn(+1)-1)/Rn(+1))^(-1);
// Relationship between nominal and real interest rate
R = Rn/P(+1)*P;
// Market clearing for deposits (B.7)
D = B;
// Resource constraint (assuming a simple production function Y = H)
C = H;
// Monetary policy rule (Taylor rule)
log(R) = 0.8*log(R(-1)) + 0.2*log(1/beta) + e_R;
// Nominal interest rate in steady state
Rn = R*P(+1)/P;
// Simple inflation process - setting to constant in steady state
P = P(-1)*(1 + 0.01*(M/M(-1) - 1));
end;
// Define the steady state values analytically
steady_state_model;
// In steady state, R = 1/beta from the Euler equation
R = 1/beta;
// Assume steady state inflation is zero, so P is constant
P = 1;
// From the relationship between real and nominal interest rates
Rn = R;
// From the resource constraint
H = 0.33; // Calibrated value for labor
C = H;
// From the labor supply equation
W = xi*C/(1-H);
// In steady state, deposits equal loans
B = 0.3; // Calibrated value
D = B;
// From the money demand equation, rearranged
M = P*zeta*C*((Rn-1)/Rn)^(-1);
end;
// Check the steady state calculations
resid;
steady;
check;
// Define shock
shocks;
var e_R; stderr 0.01;
end;
// Simulate the model
stoch_simul(order=1, irf=40) C H M P R Rn;