Page 1 of 1

showing iterations in deterministic simulation

PostPosted: Wed Jul 23, 2014 1:55 pm
by wclark3
When I run a deterministic simulation on a model in Dynare 4.0.4 I see the progress of each iteration like so:

Code: Select all
MODEL SIMULATION :

1 -   err = 2.1947
   Time of iteration    :0.269
2 -   err = 0.011506
   Time of iteration    :0.273
3 -   err = 1.8136e-06
   Time of iteration    :0.294

   Total time of simulation    :0.838

   Convergency obtained.


But in the latest Dynare 4.4.2 I see only this:

Code: Select all
MODEL SIMULATION:


Simulation concluded successfully after 2 iterations.
Total time of simulation        :      1.626
Convergency obtained.


Can Dynare 4.4.2 also display each iteration as it is processed? I find this feature very helpful and I cannot see a way to bring it back after reading the manual.

Re: showing iterations in deterministic simulation

PostPosted: Thu Jul 24, 2014 6:27 am
by jpfeifer
Use
Code: Select all
options_.debug=1

It won't display the time but the residual

Re: showing iterations in deterministic simulation

PostPosted: Thu Jul 31, 2014 2:53 pm
by wclark3
Excellent, this works well. Thank you.