Opened 5 years ago
Closed 5 years ago
#5758 closed enhancement (fixed)
Add separate logging of global homotopy solver
Reported by: | Francesco Casella | Owned by: | Andreas Heuermann |
---|---|---|---|
Priority: | high | Milestone: | 1.16.0 |
Component: | Run-time | Version: | |
Keywords: | Cc: | Karim Adbdelhak |
Description
When dealing with initialization of models, getting some feedback on the homotopy process (when it starts, the step it takes, if it succeeds) is crucial. Currently, you can only get it by turning on LOG_INIT
, which however produces a lot of other information, which prevents us to get some information on the success of homotopy on the Jenkins test rus.
Can we introduce a LOG_GLOBAL_HOMOTOPY
flag that only turns on the homotopy process information?
Note:
See TracTickets
for help on using tickets.
That's a good idea. I'd like to go a step further and introduce a
LOG_INIT_V
flag and rename your flagLOG_GLOBAL_HOMOTOPY
toLOG_INIT_HOMOTOPY
. SoLOG_INIT
tells the user what is happening andLOG_INIT_V
will print the actual values of e.g. primary start-values. And everything regarding homotopy on initialization will be moved toLOG_INIT_HOMOTOPY
.So
LOG_INIT
andLOG_SOTI
are subsets ofLOG_INIT_V
.LOG_INIT_HOMOTOPY
is a subset ofLOG_INIT
.So when using only
LOG_INIT_HOMOTOPY
you get only the initialization infos for homotpy solvers.