pastas.model.Model.get_response_tmax ==================================== .. py:method:: pastas.model.Model.get_response_tmax(name: str, p: pastas.typing.ArrayLike = None, cutoff: float = 0.999, warn: bool = True) -> float | None Method to get the tmax used for the response function. :param name: A string with the name of the stressmodel. :type name: str :param p: An array_like object with the values as floats representing the model parameters. See Model.get_parameters() for more info if parameters is None. :type p: array_like, optional :param cutoff: A float between 0 and 1. Default is 0.999 or 99.9% of the response. :type cutoff: float, optional :returns: **tmax** -- A float with the number of days. None is return if stressmodels has no response function. :rtype: float or None .. rubric:: Examples >>> ml.get_response_tmax("recharge", cutoff=0.99) >>> 703 This means that after 703 days, 99% of the response of the groundwater levels to a recharge pulse has taken place. .. !! processed by numpydoc !!