liblaf.melon.transfer
ยค
Functions:
-
transfer_tet_cellโ -
transfer_tet_cell_to_pointโ -
transfer_tri_cell_to_point_categoryโ -
transfer_tri_pointโ -
transfer_tri_point_to_tetโ
transfer_tet_cell
ยค
transfer_tet_cell(
source: UnstructuredGrid,
target: UnstructuredGrid,
data: str | Iterable[str] | None = None,
**kwargs,
) -> UnstructuredGrid
Source code in src/liblaf/melon/transfer/_tet_cell.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | |
transfer_tet_cell_to_point
ยค
transfer_tet_cell_to_point(
source: UnstructuredGrid,
target: UnstructuredGrid,
data: str | Iterable[str] | None = None,
*,
categorical: bool = False,
snap_to_closest_point: bool = True,
tolerance: float | None = 1e-06,
**kwargs,
) -> UnstructuredGrid
Source code in src/liblaf/melon/transfer/_tet_cell_to_point.py
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 | |
transfer_tri_cell_to_point_category
ยค
transfer_tri_cell_to_point_category(
source: Any,
target: Any,
*,
data: str | Iterable[str] | None = None,
fill: Any | Mapping[str, Any] | None = None,
nearest: NearestPointOnSurface | None = None,
) -> Any
Source code in src/liblaf/melon/transfer/_tri_cell_to_point_category.py
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 | |
transfer_tri_point
ยค
transfer_tri_point(
source: Any,
target: Any,
*,
data: str | Iterable[str] | None = None,
fill: Any | Mapping[str, Any] | None = None,
nearest: NearestPointOnSurface | None = None,
) -> Any
Source code in src/liblaf/melon/transfer/_tri_point.py
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 | |
transfer_tri_point_to_tet
ยค
transfer_tri_point_to_tet(
source: Any,
target: Any,
*,
data: str | Iterable[str] | None = None,
fill: Any | Mapping[str, Any] | None = None,
nearest: NearestPointOnSurface | None = None,
point_id: str | None = None,
) -> UnstructuredGrid
Source code in src/liblaf/melon/transfer/_tri_point_to_tet.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | |