PixCells
This project is a Cellular Potts Model (CPM) simulator. It was developped during a Master's degree in Physics as a master project.
Loading...
Searching...
No Matches
math.hpp
Go to the documentation of this file.
1
9#ifndef MATH_HPP
10#define MATH_HPP
11
12#include <vector>
13#include "Simulation.hpp"
14
15#include <eigen3/Eigen/Eigenvalues>
16
17std::pair<float, float> calculate_center_of_mass_cell(const std::vector<std::pair<int, int>>& m_position);
18
19std::array<float, 3> calculate_inertia_tensor_cell(const std::vector<std::pair<int, int>>& m_position);
20
21std::array<std::array<float, 2>, 2> calculate_eigenvectors_inertia_tensor_cell(const std::vector<std::pair<int, int>>& m_position);
22
23std::pair<float, float> calculate_projection_on_principal_axis(const std::vector<std::pair<int, int>>& m_position);
24
25float get_length_cell(const std::vector<std::pair<int, int>>& m_position);
26
27// PDE solver
28
29void initializeGrid(std::vector<std::vector<double>>& grid, double initConc);
30
31void applyBoundaryConditions(std::vector<std::vector<double>>& grid, double boundaryConc);
32
33double secretionTerm(double secretionRate, int id_cell);
34
35double decayTerm(double decayRate, int id_cell);
36
37void solve_aStepOfDiffusionSecretionDecay(std::vector<std::vector<double>>& grid, double dx, double dy, double dt, double D,
38 double boundaryConc, double secretionRate, double decayRate, std::vector<std::vector<int>> lattice);
39
40#endif
std::pair< float, float > calculate_projection_on_principal_axis(const std::vector< std::pair< int, int > > &m_position)
Calculate the projection of a cell on its principal axis.
Definition math.cpp:84
void initializeGrid(std::vector< std::vector< double > > &grid, double initConc)
Function to initialize the grid with a given initial concentration.
Definition math.cpp:196
std::array< std::array< float, 2 >, 2 > calculate_eigenvectors_inertia_tensor_cell(const std::vector< std::pair< int, int > > &m_position)
Calculate the eigenvectors of the inertia tensor of a cell.
Definition math.cpp:63
void applyBoundaryConditions(std::vector< std::vector< double > > &grid, double boundaryConc)
Function to apply the boundary conditions to the grid.
Definition math.cpp:208
float get_length_cell(const std::vector< std::pair< int, int > > &m_position)
Calculate the length of a cell.
Definition math.cpp:149
std::array< float, 3 > calculate_inertia_tensor_cell(const std::vector< std::pair< int, int > > &m_position)
Calculate the inertia tensor of a cell.
Definition math.cpp:42
double decayTerm(double decayRate, int id_cell)
Function to define the decay term D(x, y, t)
Definition math.cpp:243
double secretionTerm(double secretionRate, int id_cell)
Function to define the secretion term S(x, y, t)
Definition math.cpp:227
void solve_aStepOfDiffusionSecretionDecay(std::vector< std::vector< double > > &grid, double dx, double dy, double dt, double D, double boundaryConc, double secretionRate, double decayRate, std::vector< std::vector< int > > lattice)
Solve a step of the diffusion-secretion-decay PDE.
Definition math.cpp:265