1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
# Copyright (C) 2020-2021 Jørgen S. Dokken
#
# This file is part of DOLFINX_MPC
#
# SPDX-License-Identifier: MIT
from __future__ import annotations
import typing
import dolfinx
import dolfinx.fem as fem
import numpy as np
from dolfinx import default_scalar_type
def close_to(
point: np.typing.NDArray[typing.Union[np.float64, np.float32]],
atol=1000 * np.finfo(dolfinx.default_real_type).resolution,
):
"""
Convenience function for locating a point [x,y,z]
within an array x [[x0,...,xN],[y0,...,yN], [z0,...,zN]].
Args:
point: The point should be padded to 3D
"""
return lambda x: np.isclose(x, point, atol=atol).all(axis=0)
@typing.no_type_check
def create_dictionary_constraint(
V: fem.functionspace,
slave_master_dict: typing.Dict[bytes, typing.Dict[bytes, float]],
subspace_slave: typing.Optional[int] = None,
subspace_master: typing.Optional[int] = None,
):
"""
Returns a multi point constraint for a given function space
and dictionary constraint.
Args:
V: The function space
slave_master_dict: The dictionary
subspace_slave: If using mixed or vector space, and only want to use dofs from
a sub space as slave add index here.
subspace_master: Subspace index for mixed or vector spaces
Examples:
If the dof `D` located at `[d0,d1]` should be constrained to the dofs `E` and
F at `[e0,e1]` and `[f0,f1]` as :math:`D = \\alpha E + \\beta F`
the dictionary should be:
.. highlight:: python
.. code-block:: python
{np.array([d0, d1], dtype=mesh.geometry.x.dtype).tobytes():
{numpy.array([e0, e1], dtype=mesh.geometry.x.dtype).tobytes(): alpha,
numpy.array([f0, f1], dtype=mesh.geometry.x.dtype).tobytes(): beta}}
"""
comm = V.mesh.comm
bs = V.dofmap.index_map_bs
local_size = V.dofmap.index_map.size_local * bs
index_map = V.dofmap.index_map
owned_entities = {}
ghosted_entities = {}
non_local_entities = {}
slaves_local = {}
slaves_ghost = {}
dfloat = V.mesh.geometry.x.dtype
slave_point_nd = np.zeros((3, 1), dtype=dfloat)
for i, slave_point in enumerate(slave_master_dict.keys()):
num_masters = len(list(slave_master_dict[slave_point].keys()))
# Status for current slave, -1 if not on proc, 0 if ghost, 1 if owned
slave_status = -1
# Wrap slave point as numpy array
sp = np.frombuffer(slave_point, dtype=dfloat)
for j, coord in enumerate(sp):
slave_point_nd[j] = coord
slave_point_nd[len(sp) :] = 0
if subspace_slave is None:
slave_dofs = fem.locate_dofs_geometrical(V, close_to(slave_point_nd))
else:
Vsub = V.sub(subspace_slave).collapse()[0]
slave_dofs = fem.locate_dofs_geometrical((V.sub(subspace_slave), Vsub), close_to(slave_point_nd))[0]
if len(slave_dofs) == 1:
# Decide if slave is ghost or not
if slave_dofs[0] < local_size:
slaves_local[i] = slave_dofs[0]
owned_entities[i] = {
"masters": np.full(num_masters, -1, dtype=np.int64),
"coeffs": np.full(num_masters, -1, dtype=dolfinx.default_scalar_type),
"owners": np.full(num_masters, -1, dtype=np.int32),
"master_count": 0,
"local_index": [],
}
slave_status = 1
else:
slaves_ghost[i] = slave_dofs[0]
ghosted_entities[i] = {
"masters": np.full(num_masters, -1, dtype=np.int64),
"coeffs": np.full(num_masters, -1, dtype=dolfinx.default_scalar_type),
"owners": np.full(num_masters, -1, dtype=np.int32),
"master_count": 0,
"local_index": [],
}
slave_status = 0
elif len(slave_dofs) > 1:
raise RuntimeError("Multiple slaves found at same point. " + "You should use sub-space locators.")
# Wrap as list to ensure order later
master_points = list(slave_master_dict[slave_point].keys())
master_points_nd = np.zeros((3, len(master_points)), dtype=dfloat)
for j, master_point in enumerate(master_points):
# Wrap bytes as numpy array
for k, coord in enumerate(np.frombuffer(master_point, dtype=dfloat)):
master_points_nd[k, j] = coord
if subspace_master is None:
master_dofs = fem.locate_dofs_geometrical(V, close_to(master_points_nd[:, j : j + 1]))
else:
Vsub = V.sub(subspace_master).collapse()[0]
master_dofs = fem.locate_dofs_geometrical(
(V.sub(subspace_master), Vsub), close_to(master_points_nd[:, j : j + 1])
)[0]
# Only add masters owned by this processor
master_dofs = master_dofs[master_dofs < local_size]
if len(master_dofs) == 1:
master_block = master_dofs[0] // bs
master_rem = master_dofs[0] % bs
glob_master = index_map.local_to_global(np.asarray([master_block], dtype=np.int32))[0]
if slave_status == -1:
if i in non_local_entities.keys():
non_local_entities[i]["masters"].append(glob_master * bs + master_rem)
non_local_entities[i]["coeffs"].append(slave_master_dict[slave_point][master_point])
(non_local_entities[i]["owners"].append(comm.rank),)
non_local_entities[i]["local_index"].append(j)
else:
non_local_entities[i] = {
"masters": [glob_master * bs + master_rem],
"coeffs": [slave_master_dict[slave_point][master_point]],
"owners": [comm.rank],
"local_index": [j],
}
elif slave_status == 0:
ghosted_entities[i]["masters"][j] = glob_master * bs + master_rem
ghosted_entities[i]["owners"][j] = comm.rank
ghosted_entities[i]["coeffs"][j] = slave_master_dict[slave_point][master_point]
ghosted_entities[i]["local_index"].append(j)
elif slave_status == 1:
owned_entities[i]["masters"][j] = glob_master * bs + master_rem
owned_entities[i]["owners"][j] = comm.rank
owned_entities[i]["coeffs"][j] = slave_master_dict[slave_point][master_point]
owned_entities[i]["local_index"].append(j)
else:
raise RuntimeError("Invalid slave status: {0:d} (-1,0,1 are valid options)".format(slave_status))
elif len(master_dofs) > 1:
raise RuntimeError("Multiple masters found at same point. You should use sub-space locators.")
# Send the ghost and owned entities to processor 0 to gather them
data_to_send = [owned_entities, ghosted_entities, non_local_entities]
if comm.rank != 0:
comm.send(data_to_send, dest=0, tag=1)
del owned_entities, ghosted_entities, non_local_entities
# Gather all info on proc 0 and sort data
owned_slaves, ghosted_slaves = None, None
if comm.rank == 0:
recv = {0: data_to_send}
for proc in range(1, comm.size):
recv[proc] = comm.recv(source=proc, tag=1)
for proc in range(comm.size):
# Loop through all masters
other_procs = np.arange(comm.size)
other_procs = other_procs[other_procs != proc]
# Loop through all owned slaves and ghosts, and update
# the master entries
for pair in [[0, 1], [1, 0]]:
i, j = pair
for slave in recv[proc][i].keys():
for o_proc in other_procs:
# If slave is ghost on other proc add local masters
if slave in recv[o_proc][j].keys():
# Update master with possible entries from ghost
o_masters = recv[o_proc][j][slave]["local_index"]
for o_master in o_masters:
recv[proc][i][slave]["masters"][o_master] = recv[o_proc][j][slave]["masters"][o_master]
recv[proc][i][slave]["coeffs"][o_master] = recv[o_proc][j][slave]["coeffs"][o_master]
recv[proc][i][slave]["owners"][o_master] = recv[o_proc][j][slave]["owners"][o_master]
# If proc only has master, but not the slave
if slave in recv[o_proc][2].keys():
o_masters = recv[o_proc][2][slave]["local_index"]
# As non owned indices only store non-zero entries
for k, o_master in enumerate(o_masters):
recv[proc][i][slave]["masters"][o_master] = recv[o_proc][2][slave]["masters"][k]
recv[proc][i][slave]["coeffs"][o_master] = recv[o_proc][2][slave]["coeffs"][k]
recv[proc][i][slave]["owners"][o_master] = recv[o_proc][2][slave]["owners"][k]
if proc == comm.rank:
owned_slaves = recv[proc][0]
ghosted_slaves = recv[proc][1]
else:
# If no owned masters, do not send masters
if len(recv[proc][0].keys()) > 0:
comm.send(recv[proc][0], dest=proc, tag=55)
if len(recv[proc][1].keys()) > 0:
comm.send(recv[proc][1], dest=proc, tag=66)
else:
if len(slaves_local.keys()) > 0:
owned_slaves = comm.recv(source=0, tag=55)
if len(slaves_ghost.keys()) > 0:
ghosted_slaves = comm.recv(source=0, tag=66)
# Flatten slaves (local)
slaves, masters, coeffs, owners, offsets = [], [], [], [], [0]
for slave_index in slaves_local.keys():
slaves.append(slaves_local[slave_index])
masters.extend(owned_slaves[slave_index]["masters"]) # type: ignore
owners.extend(owned_slaves[slave_index]["owners"]) # type: ignore
coeffs.extend(owned_slaves[slave_index]["coeffs"]) # type: ignore
offsets.append(len(masters))
for slave_index in slaves_ghost.keys():
slaves.append(slaves_ghost[slave_index])
masters.extend(ghosted_slaves[slave_index]["masters"]) # type: ignore
owners.extend(ghosted_slaves[slave_index]["owners"]) # type: ignore
coeffs.extend(ghosted_slaves[slave_index]["coeffs"]) # type: ignore
offsets.append(len(masters))
return (
np.asarray(slaves, dtype=np.int32),
np.asarray(masters, dtype=np.int64),
np.asarray(coeffs, dtype=default_scalar_type),
np.asarray(owners, dtype=np.int32),
np.asarray(offsets, dtype=np.int32),
)
|