Page 1 of 1

Steady State

PostPosted: Mon Jun 12, 2017 4:15 pm
by Aldo
1. I run my .mod using a m-file to compute steady state (prometheo_steadystate.m). I am using an external function too (apr.m).
2. I get error:

Code: Select all
Error using print_info (line 76)
The steadystate file did not compute the steady state
...
Equation number 238 : -4.6777
Equation number 239 : 66.205
Equation number 240 : -10.4307


3. In order to understand these errors I run content of file prometheo_steadystate.m called "prometheo_steadystate review".

4. What is weird after do this, is that, the equations that dynare is reporting errors doesn't seem verify the errors, for example Equation 238:

Code: Select all
Depoobs - 100*log(Depo/DepoSS)

ans =

     0

Re: Steady State

PostPosted: Mon Jun 12, 2017 6:43 pm
by jpfeifer
If I see it correctly, the steady states like
Code: Select all
BankcapSS

are not consistent with the model local variables you define. In the steady state file
Code: Select all
BankcapSS =    0.2169

but in prometheo_static.m
Code: Select all
BankcapSS__ =    0.4205

Re: Steady State

PostPosted: Mon Jun 12, 2017 8:22 pm
by Aldo
Thanks a lot dear jpfeifer.

Greetings

Aldo