2.4. Approximation Design Table

The approximation designtable allows you to approximate arbitrary designs by using the contained surrogate metamodels. New designs can be created by clicking Add design or Add reference design. You can also create a complete Design of Experiment (DOE) using a provided DOE method and discretization. Input parameters can be edited directly within the table. Click Approximate to approximate the created designs. The designs currently approximated are displayed as red diamonds in all plots that display designs.

Python Scripting

Create the Visual

Creates an Approximation Designtable using data with data_id

    approx_designs = Visuals.ApproxDesignTable(
        Id("Approximation Designtable"),
        data_id
    )
                            

Add to Postprocessing

Adds Approximation Designtable in postprocessing to control_container, using the specified relative positioning.

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