bempp/boundary_assemblers/
helpers.rsuse green_kernels::traits::Kernel;
pub(crate) use green_kernels::types::GreenKernelEvalType;
use ndgrid::traits::Grid;
use rlst::{Array, BaseArray, MatrixInverse, RlstScalar, VectorContainer};
pub struct KernelEvaluator<T: RlstScalar, K: Kernel<T = T>> {
pub(crate) kernel: K,
eval_type: GreenKernelEvalType,
}
impl<T: RlstScalar, K: Kernel<T = T>> KernelEvaluator<T, K> {
pub fn new(kernel: K, eval_type: GreenKernelEvalType) -> Self {
Self { kernel, eval_type }
}
pub fn assemble_pairwise_st(
&self,
sources: &[<T as RlstScalar>::Real],
targets: &[<T as RlstScalar>::Real],
result: &mut [T],
) {
self.kernel
.assemble_pairwise_st(self.eval_type, sources, targets, result);
}
pub fn assemble_st(
&self,
sources: &[<T as RlstScalar>::Real],
targets: &[<T as RlstScalar>::Real],
result: &mut [T],
) {
self.kernel
.assemble_st(self.eval_type, sources, targets, result);
}
}
pub trait CellGeometry {
type T: RlstScalar<Real = Self::T>;
fn points(&self) -> &RlstArray<Self::T, 2>;
fn normals(&self) -> &RlstArray<Self::T, 2>;
fn jacobians(&self) -> &RlstArray<Self::T, 2>;
fn jdets(&self) -> &[Self::T];
}
pub(crate) type RlstArray<T, const DIM: usize> =
Array<T, BaseArray<T, VectorContainer<T>, DIM>, DIM>;
pub(crate) fn equal_grids<TestGrid: Grid, TrialGrid: Grid>(
test_grid: &TestGrid,
trial_grid: &TrialGrid,
) -> bool {
std::ptr::addr_of!(*test_grid) as usize == std::ptr::addr_of!(*trial_grid) as usize
}
pub(crate) struct RawData2D<T: RlstScalar + MatrixInverse> {
pub(crate) data: *mut T,
pub(crate) shape: [usize; 2],
}
unsafe impl<T: RlstScalar + MatrixInverse> Sync for RawData2D<T> {}
pub struct SparseMatrixData<T: RlstScalar + MatrixInverse> {
pub data: Vec<T>,
pub rows: Vec<usize>,
pub cols: Vec<usize>,
pub shape: [usize; 2],
}
impl<T: RlstScalar + MatrixInverse> SparseMatrixData<T> {
pub fn new(shape: [usize; 2]) -> Self {
Self {
data: vec![],
rows: vec![],
cols: vec![],
shape,
}
}
pub fn new_known_size(shape: [usize; 2], size: usize) -> Self {
Self {
data: Vec::with_capacity(size),
rows: Vec::with_capacity(size),
cols: Vec::with_capacity(size),
shape,
}
}
pub fn add(&mut self, other: SparseMatrixData<T>) {
debug_assert!(self.shape[0] == other.shape[0]);
debug_assert!(self.shape[1] == other.shape[1]);
self.rows.extend(&other.rows);
self.cols.extend(&other.cols);
self.data.extend(&other.data);
}
}
unsafe impl<T: RlstScalar + MatrixInverse> Sync for SparseMatrixData<T> {}
pub(crate) struct AssemblerGeometry<'a, T: RlstScalar<Real = T>> {
points: &'a RlstArray<T, 2>,
normals: &'a RlstArray<T, 2>,
jacobians: &'a RlstArray<T, 2>,
jdets: &'a [T],
}
impl<'a, T: RlstScalar<Real = T>> AssemblerGeometry<'a, T> {
pub(crate) fn new(
points: &'a RlstArray<T, 2>,
normals: &'a RlstArray<T, 2>,
jacobians: &'a RlstArray<T, 2>,
jdets: &'a [T],
) -> Self {
Self {
points,
normals,
jacobians,
jdets,
}
}
}
impl<T: RlstScalar<Real = T>> CellGeometry for AssemblerGeometry<'_, T> {
type T = T;
fn points(&self) -> &RlstArray<T, 2> {
self.points
}
fn normals(&self) -> &RlstArray<T, 2> {
self.normals
}
fn jacobians(&self) -> &RlstArray<T, 2> {
self.jacobians
}
fn jdets(&self) -> &[T] {
self.jdets
}
}