iode.Equations.print_equations_as

property Equations.print_equations_as: PrintEquationsAs

Whether to print only the LEC formula, or the LEC formula and the comment, or the LEC formula, the comment and the estimation results of the IODE equations in the current database.

Parameters:
value: PrintEquationsAs

Possible values are: PrintEquationsAs.EQ_ONLY, PrintEquationsAs.EQ_COMMENTS, PrintEquationsAs.EQ_COMMENTS_ESTIMATION

Examples

>>> from iode import equations, PrintEquationsAs
>>> equations.print_equations_as
<PrintEquationsAs.EQ_ONLY: 0>
>>> equations.print_equations_as = PrintEquationsAs.EQ_COMMENTS
>>> equations.print_equations_as
<PrintEquationsAs.EQ_COMMENTS: 1>
>>> equations.print_equations_as = "EQ_COMMENTS_ESTIMATION"
>>> equations.print_equations_as
<PrintEquationsAs.EQ_COMMENTS_ESTIMATION: 2>