Page MenuHomec4science

deltaNotchAdhesion.hpp
No OneTemporary

File Metadata

Created
Sat, Oct 12, 23:07

deltaNotchAdhesion.hpp

#ifndef __DELTANOTCHCELL_HPP__
#define __DELTANOTCHCELL_HPP__
//#include <boost/numeric/odeint.hpp>
#include "deltaNotch2.hpp"
class DeltaNotchAdhesion{
public:
DeltaNotchAdhesion():{ setDefaultParameters();}
virtual ~DeltaNotchAdhesion(){}
virtual void setDefaultParameters(){
// gd = 0.01;
// gn = 3;
ktp = 0.01;
kcp = 3;
kcm = 1;
// dprod = 1;
hfdp = 3;
// ks =0;
}
void operator() (const state_type &y , state_type &dydt , const double t);
void initState();
void initState(double *s);
double notchProduction(double delta){double d2=delta*delta;return d2/(10000+d2);}
virtual uint cellStateDim(){return 2;}
virtual uint setStateVectorIndex();
static void initCellState(Cell *ce, void *pt);
static void setCellIndex(Cell *ce, void *pt);
};
#endif

Event Timeline