Reliability Anthill Plot

This plot displays a 2D-projection of the parameter space of all successful designs. The safe designs are colored blue and the unsafe are red. For directional sampling, the designs on the limit state function are colored cyan. For FORM and ISPUD, the most probable failure point is colored orange. They are plotted in different layers. The 2D-projection room is chosen by the 1st and 2nd dimension selection in the Common settings pane. Displaying the input parameter values in standard Gaussian space instead of the originally defined distribution values, can be selected in the Common settings pane. You can also select designs in this plot. When selected, the design numbers are displayed. The title label contains the selected parameters.

Settings
OptionDescription
Common Settings
Show designs in standard gaussian spaceToggle view between real data space and standard Gaussian .
Preferences

The following preference settings are available:

  • Choose X-Axis

  • Choose Y-Axis

  • Appearance

    • Font size

    • Symbol size

    • Enable axes

  • Axis Formats

  • Axis Ranges

  • Labels

  • Legend

  • Log Axes

  • Window appearance

For more details, see Plot Preference Settings.

Python scripting

Create Visual

Creates Reliability Anthill plot using data with data_id.

    reli_anthill = Visuals.ReliAnthill ( Id("Reliability anthill"), data_id )
                            

Add to Postprocessing

Adds Reliability anthill plot in postprocessing tocontrol_container, using the specified relative positioning.

    control_container.add_control (
        reli_anthill,
        True,
        RELATIVE_POSITIONING,
        1/2., 0, 1/2., 1/2. )