feos-org / feos

FeOs - A Framework for Equations of State and Classical Density Functional Theory
Other
115 stars 22 forks source link

Missing argument in #131

Closed RolfStierle closed 1 year ago

RolfStierle commented 1 year ago
Signature:
State.critical_point_binary(
    eos,
    temperature_or_pressure,
    #initial_temperature=None,  # this line is missing
    initial_molefracs=None,
    max_iter=None,
    tol=None,
    verbosity=None,
)
Docstring:
Create a thermodynamic state at critical conditions for a binary system.

Parameters
----------
eos: EquationOfState
    The equation of state to use.
temperature_or_pressure: SINumber
    temperature_or_pressure.
initial_temperature: SINumber, optional
    An initial guess for the temperature.
initial_molefracs: [float], optional
    An initial guess for the composition.
max_iter : int, optional
    The maximum number of iterations.
tol: float, optional
    The solution tolerance.
verbosity : Verbosity, optional
    The verbosity.

Returns
-------
State : State at critical conditions.
Type:      builtin_function_or_method