analyze

RT1.analyze(R, range_parameter=None, **parameters)

A widget to analyze a given (monostatic) RT1 model specification.

Parameters:
  • R (RT1 object) – The RT1 object to analyze.

  • parameters (tuples of (min, max, [start], [name])) –

    Value-range (and start-value) for all parameters that are be analyzed.

    >>> parameter_name = (min, max, [start], [name])
    
    • min, max : The min-max values of the parameter-range

    • start : The start-value to use (optional, if ommitted, center is used)

    • name : The name to use (optional, if ommitted, variable name is used)

    For example: >>> tau = (0.1, 0.4, 0.2, “Optical Depth”)

  • range_parameter (str, optional) – If provided, the range of resulting values for the given parameter is overlaid on the plot (can be any parameter provided in param_dict). The default is None.