Page MenuHomec4science

cellAdhesion.hpp
No OneTemporary

File Metadata

Created
Fri, Jun 21, 23:29

cellAdhesion.hpp

#ifndef __CELL_ADHESION_HPP__
#define __CELL_ADHESION_HPP__
#include "cellInteraction.hpp"
class CellAdhesion : public CellInteraction{
protected:
double ga; //degradation
double kadn; // rate;
state_type alldelta;
state_type allnotch;
public:
CellAdhesion():CellInteraction(){setDefaultParameters();}
virtual ~CellAdhesion(){}
virtual void setDefaultParameters(){ga = 0.1;kadn=0.2;}
void operator()(const state_type &y , state_type &dydt , const double t);
virtual void initState(double *s);
virtual uint cellStateDim(){return 1;}
virtual void setLattice(Lattice *lat)
{CellInteraction::setLattice(lat);allnotch.resize(state_dim);alldelta.resize(state_dim);}
double getAdhesion(double s){double s2=s*s;return s2/(10000+s2);}
};
#endif

Event Timeline