cellular_raza-core 0.5.0

Cellular simulation tool
Documentation
use cellular_raza_concepts::*;

use serde::{Deserialize, Serialize};

/// Struct containing all necessary information to construct a fully working simulation and run it.
#[derive(Clone, Deserialize, Serialize)]
pub struct SimulationSetup<C, D> {
    /// The initial cells contained in the simulation. In the future we hope to provide an abstract type
    /// in order to allow for pure iterators to be stored here
    pub cells: Vec<C>,
    /// The physical simulation domain which is specified by the [Domain] trait.
    pub domain: D,
}

/// Specify settings surrounding execution and storage
#[derive(Clone, Deserialize, Serialize)]
pub struct Settings<T, const INIT: bool> {
    /// Number of threads used for executing simulation in parallel
    pub n_threads: core::num::NonZeroUsize,
    // TODO replace this with timestepper in the future
    /// Specify how time is advanced during the simulation
    pub time: T,
    /// Define storage properties
    pub storage: crate::storage::StorageBuilder<INIT>,
    /// Determines if progress bar should be shown during execution
    pub progressbar: Option<String>,
}

impl<C, D> SimulationSetup<C, D> {
    /// Insert more cells into the setup after having already initialized the setup.
    pub fn insert_cells<I>(&mut self, cells: I)
    where
        I: IntoIterator<Item = C>,
    {
        self.cells.extend(cells);
    }

    /// Decomposes the struct into a [DecomposedDomain] which can be taken by the backend and turned into multiple subdomains.
    pub fn decompose<S>(
        self,
        n_subdomains: core::num::NonZeroUsize,
    ) -> Result<DecomposedDomain<D::SubDomainIndex, S, C>, DecomposeError>
    where
        D: Domain<C, S>,
        S: SubDomain,
    {
        self.domain.decompose(n_subdomains, self.cells)
    }

    // TODO add a function which will automatically generate the correct number of subdomains
    // and simply checks beforehand how many cpu threads are available
    /// Similar to [decompose](SimulationSetup::decompose) method but does not require to specify
    /// how many subdomains should be chosen. It will attempt to retrieve resources available to the system
    /// and spawn threads which are either pre-calculated, read from an existing file or acquired by auto-tuning.
    pub fn decompose_auto_tune<S>(
        self,
    ) -> Result<DecomposedDomain<D::SubDomainIndex, S, C>, DecomposeError>
    where
        D: Domain<C, S>,
        S: SubDomain,
    {
        todo!();
        // let max_n_threads = std::thread::available_parallelism()?;
        // self.decompose(max_n_threads.into())
    }
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn test_config_insert_cells() {
        let mut config = SimulationSetup {
            cells: vec![1, 2, 3, 4],
            domain: "hello".to_owned(),
        };

        let new_cells = vec![5, 6, 7];
        config.insert_cells(new_cells);
        assert_eq!(config.cells, vec![1, 2, 3, 4, 5, 6, 7]);
    }

    struct TestDomain {
        min: f64,
        max: f64,
        n_voxels: usize,
        rng_seed: u64,
    }

    #[allow(unused)]
    struct VoxelIndex(usize);

    struct TestSubDomain {
        min: f64,
        max: f64,
        voxels: std::collections::BTreeMap<usize, [f64; 2]>,
        reflect_at_boundary: (bool, bool),
        total_voxels: usize,
    }

    impl Domain<f64, TestSubDomain> for TestDomain {
        type SubDomainIndex = usize;
        type VoxelIndex = VoxelIndex;

        fn decompose(
            self,
            n_subdomains: core::num::NonZeroUsize,
            cells: Vec<f64>,
        ) -> Result<DecomposedDomain<Self::SubDomainIndex, TestSubDomain, f64>, DecomposeError>
        {
            let mut cells = cells;
            let mut index_subdomain_cells = Vec::new();
            let n_subdomains = n_subdomains.get();
            let n_return_subdomains = n_subdomains.min(self.n_voxels);
            let dx = (self.max - self.min) / (self.n_voxels as f64);

            let voxel_distributions = (0..self.n_voxels)
                .map(|i| (i, (i * n_return_subdomains).div_euclid(self.n_voxels)))
                .fold(std::collections::BTreeMap::new(), |mut acc, x| {
                    let entry = acc.entry(x.1).or_insert(Vec::new());
                    entry.push(x.0);
                    acc
                });

            let mut n_total_voxels = 0;
            for (subdomain_index, voxel_indices) in voxel_distributions {
                let lower = if subdomain_index == 0 {
                    self.min
                } else {
                    self.min + n_total_voxels as f64 * dx
                };
                let upper = if subdomain_index == n_subdomains - 1 {
                    self.max
                } else {
                    self.min + (n_total_voxels + voxel_indices.len()) as f64 * dx
                };
                n_total_voxels += voxel_indices.len();
                let (cells_in_subdomain, other_cells): (Vec<_>, Vec<_>) =
                    cells.into_iter().partition(|&x| lower <= x && x < upper);
                cells = other_cells;

                index_subdomain_cells.push((
                    subdomain_index,
                    TestSubDomain {
                        min: lower,
                        max: upper,
                        voxels: voxel_indices
                            .into_iter()
                            .map(|voxel_index| {
                                (
                                    voxel_index,
                                    [
                                        self.min + voxel_index as f64 * dx,
                                        self.min + (voxel_index + 1) as f64 * dx,
                                    ],
                                )
                            })
                            .collect(),
                        reflect_at_boundary: (
                            subdomain_index == 0,
                            subdomain_index == n_subdomains - 1,
                        ),
                        total_voxels: self.n_voxels,
                    },
                    cells_in_subdomain,
                ));
            }

            let n_subdomains = index_subdomain_cells.len();
            let decomposed_domain = DecomposedDomain {
                n_subdomains: n_subdomains.try_into().unwrap(),
                index_subdomain_cells,
                neighbor_map: (0..n_subdomains)
                    .map(|i| {
                        (
                            i,
                            std::collections::BTreeSet::from([
                                if i == 0 { n_subdomains } else { i - 1 },
                                i + 1,
                            ]),
                        )
                    })
                    .collect(),
                rng_seed: self.rng_seed,
            };
            Ok(decomposed_domain)
        }
    }

    impl SubDomain for TestSubDomain {
        type VoxelIndex = usize;

        fn get_all_indices(&self) -> Vec<Self::VoxelIndex> {
            self.voxels.iter().map(|(&i, _)| i).collect()
        }

        fn get_neighbor_voxel_indices(
            &self,
            voxel_index: &Self::VoxelIndex,
        ) -> Vec<Self::VoxelIndex> {
            let mut neighbors = Vec::new();
            if voxel_index > &0 && voxel_index <= &(self.total_voxels - 1) {
                neighbors.push(voxel_index - 1);
            }
            if voxel_index >= &0 && voxel_index < &(self.total_voxels - 1) {
                neighbors.push(voxel_index + 1);
            }
            neighbors
        }
    }

    impl SortCells<f64> for TestSubDomain {
        type VoxelIndex = usize;

        fn get_voxel_index_of(
            &self,
            cell: &f64,
        ) -> Result<Self::VoxelIndex, cellular_raza_concepts::BoundaryError> {
            for (index, voxel) in self.voxels.iter() {
                if cell >= &voxel[0] && cell <= &voxel[1] {
                    return Ok(*index);
                }
            }
            Err(cellular_raza_concepts::BoundaryError(
                "Could not find voxel which contains cell".into(),
            ))
        }
    }

    impl SubDomainMechanics<f64, f64> for TestSubDomain {
        fn apply_boundary(
            &self,
            pos: &mut f64,
            _vel: &mut f64,
        ) -> Result<(), cellular_raza_concepts::BoundaryError> {
            if self.reflect_at_boundary.0 && *pos < self.min {
                *pos = self.min;
            } else if self.reflect_at_boundary.1 && *pos > self.max {
                *pos = self.max;
            }
            Ok(())
        }
    }

    #[test]
    fn test_config_to_subdomains() {
        // Define the testdomain with cells
        let min = 0.0;
        let max = 100.0;
        let config = SimulationSetup {
            cells: vec![1.0, 20.0, 26.0, 41.0, 56.0, 84.0, 95.0],
            domain: TestDomain {
                min,
                max,
                n_voxels: 8,
                rng_seed: 0,
            },
        };

        let n_subdomains = core::num::NonZeroUsize::new(4).unwrap();
        let decomposed_domain = config.decompose(n_subdomains).unwrap();
        for (_, subdomain, cells) in decomposed_domain.index_subdomain_cells.into_iter() {
            assert!(!cells.is_empty());
            // Test if each cell is really contained in the subdomain it is supposed to be.
            for cell in cells {
                assert!(cell >= subdomain.min);
                assert!(cell <= subdomain.max);
            }
        }
    }

    #[test]
    fn test_apply_boundary() {
        // Define the testdomain with cells
        let min = 0.0;
        let max = 100.0;
        let config = SimulationSetup {
            cells: vec![1.0, 20.0, 25.0, 50.0, 88.0],
            domain: TestDomain {
                min,
                max,
                n_voxels: 8,
                rng_seed: 0,
            },
        };

        let n_subdomains = core::num::NonZeroUsize::new(4).unwrap();
        let decomposed_domain = config.decompose(n_subdomains).unwrap();
        let mut cell_outside = -10.0;
        for (_, subdomain, cells) in decomposed_domain.index_subdomain_cells.into_iter() {
            for cell in cells.into_iter() {
                let mut cell_prev = cell;
                let mut _nothing = cell;
                subdomain
                    .apply_boundary(&mut cell_prev, &mut _nothing)
                    .unwrap();
                assert_eq!(cell_prev, cell);
            }
            let mut _nothing = cell_outside;
            subdomain
                .apply_boundary(&mut cell_outside, &mut _nothing)
                .unwrap();
            assert!(cell_outside >= min);
            assert!(cell_outside <= max);
        }
    }

    #[test]
    fn test_neighbor_indices() {
        // Define the testdomain with cells
        let min = 0.0;
        let max = 100.0;
        let config = SimulationSetup {
            cells: vec![1.0, 20.0, 26.0, 41.0, 56.0, 84.0, 95.0],
            domain: TestDomain {
                min,
                max,
                n_voxels: 8,
                rng_seed: 0,
            },
        };

        let n_subdomains = core::num::NonZeroUsize::new(4).unwrap();
        let decomposed_domain = config.decompose(n_subdomains).unwrap();
        for (_, subdomain, _) in decomposed_domain.index_subdomain_cells.into_iter() {
            assert_eq!(vec![1], subdomain.get_neighbor_voxel_indices(&0));
            assert_eq!(vec![0, 2], subdomain.get_neighbor_voxel_indices(&1));
            assert_eq!(vec![1, 3], subdomain.get_neighbor_voxel_indices(&2));
            assert_eq!(vec![2, 4], subdomain.get_neighbor_voxel_indices(&3));
            assert_eq!(vec![3, 5], subdomain.get_neighbor_voxel_indices(&4));
            assert_eq!(vec![4, 6], subdomain.get_neighbor_voxel_indices(&5));
            assert_eq!(vec![5, 7], subdomain.get_neighbor_voxel_indices(&6));
            assert_eq!(vec![6], subdomain.get_neighbor_voxel_indices(&7));
            assert_eq!(vec![0_usize; 0], subdomain.get_neighbor_voxel_indices(&8));
            assert_eq!(vec![0_usize; 0], subdomain.get_neighbor_voxel_indices(&9));
            assert_eq!(vec![0_usize; 0], subdomain.get_neighbor_voxel_indices(&10));
        }
    }
}