Exemplo n.º 1
0
def test_get_grid_face_nodes(flopy_disu, modflow_lib_path):
    assert True
    return
    # todo: fix this test
    """Tests if the grid_face_nodes can be extracted"""
    mf6 = XmiWrapper(lib_path=modflow_lib_path, working_directory=flopy_disu.sim_path)

    # Write output to screen:
    mf6.set_int("ISTDOUTTOFILE", 0)

    try:
        # Initialize
        mf6.initialize()

        # First 5 prescribed elements
        prescribed_grid_face_nodes = np.array([1, 2, 6, 5, 1])

        # Getting the grid id from the model, requires specifying one variable
        k11_tag = mf6.get_var_address("K11", flopy_disu.model_name, "NPF")
        grid_id = mf6.get_var_grid(k11_tag)
        grid_face_count = mf6.get_grid_face_count(grid_id)
        grid_nodes_per_face = np.empty(
            shape=(grid_face_count,), dtype=np.int32, order="F"
        )
        mf6.get_grid_nodes_per_face(grid_id, grid_nodes_per_face)
        face_nodes_count = np.sum(grid_nodes_per_face + 1)

        actual_grid_face_nodes = np.empty(
            shape=(face_nodes_count,), dtype=np.int32, order="F"
        )
        mf6.get_grid_face_nodes(grid_id, actual_grid_face_nodes)

        assert np.array_equal(prescribed_grid_face_nodes, actual_grid_face_nodes[:5])
    finally:
        mf6.finalize()
Exemplo n.º 2
0
def test_get_grid_nodes_per_face(flopy_disu, modflow_lib_path):
    """Tests if the grid_nodes_per_face can be extracted"""
    mf6 = XmiWrapper(lib_path=modflow_lib_path, working_directory=flopy_disu.sim_path)

    # Write output to screen:
    mf6.set_int("ISTDOUTTOFILE", 0)

    try:
        # Initialize
        mf6.initialize()

        # Rectangular grid -> nrow*ncol faces with 4 nodes each
        prescribed_nodes_per_face = np.full(flopy_disu.nrow * flopy_disu.ncol, 4)

        # Getting the grid id from the model, requires specifying one variable
        k11_tag = mf6.get_var_address("K11", flopy_disu.model_name, "NPF")
        grid_id = mf6.get_var_grid(k11_tag)
        face_count = mf6.get_grid_face_count(grid_id)
        actual_nodes_per_face = np.empty(shape=(face_count,), dtype=np.int32, order="F")
        mf6.get_grid_nodes_per_face(grid_id, actual_nodes_per_face)

        assert np.array_equal(prescribed_nodes_per_face, actual_nodes_per_face)
    finally:
        mf6.finalize()