QuadTree: CreationΒΆ

You can give the refine method a function, which is evaluated on every cell of the TreeMesh.

Occasionally it is useful to initially refine to a constant level (e.g. 3 in this 32x32 mesh). This means the function is first evaluated on an 8x8 mesh (2^3).

../_images/sphx_glr_plot_quadtree_refine_0011.png
import discretize
import numpy as np
import matplotlib.pyplot as plt


def run(plotIt=True):
    M = discretize.TreeMesh([32, 32])
    M.refine(3)

    def refine(cell):
        xyz = cell.center
        for i in range(3):
            if np.abs(np.sin(xyz[0]*np.pi*2)*0.5 + 0.5 - xyz[1]) < 0.2*i:
                return 6-i
        return 0

    M.refine(refine)
    if plotIt:
        M.plotGrid()

if __name__ == '__main__':
    run()
    plt.show()

Total running time of the script: ( 0 minutes 0.022 seconds)

Gallery generated by Sphinx-Gallery