CONAN._classes.load_result._evaluate_rv#
- CONAN._classes.load_result._evaluate_rv(file=None, time=None, params=None, nsamp=500, return_std=False)#
Compute planet RV model from CONAN fit for a given input file at the given times using specified parameters.
- Parameters:
file (str, None;) – name of the RV file for which to evaluate the RVmodel. If None, time must be provided.
time (array-like;) – times at which to evaluate the model
params (array-like;) – Parameters to evaluate the model at. The median posterior parameters from the fit are used if params is None
nsamp (int;) – number of posterior samples to use for computing the 1sigma quantiles of the model. Default is 500.
return_std (bool;) – if True, return the 1sigma quantiles of the model as well as the model itself. If False, return only the model.
- Returns:
object – planet_model: RV model array evaluated at the given times, for a specific file. components: rv_components of each planet in the system. sigma_low, sigma_high: if return_std is True, 1sigma quantiles of the model is returned.
- Return type:
SimpleNamespace;