13#include "Simulation.hpp"
15#include <eigen3/Eigen/Eigenvalues>
17std::pair<float, float> calculate_center_of_mass_cell(
const std::vector<std::pair<int, int>>& m_position);
25float get_length_cell(
const std::vector<std::pair<int, int>>& m_position);
29void initializeGrid(std::vector<std::vector<double>>& grid,
double initConc);
35double decayTerm(
double decayRate,
int id_cell);
38 double boundaryConc,
double secretionRate,
double decayRate, std::vector<std::vector<int>> lattice);
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