D'Onofrio chemotherapy model (Muscod)
From mintOC
Revision as of 23:05, 27 June 2016 by FelixMueller (Talk | contribs)
This is Muscod code for the D'Onofrio chemotherapy model problem.
/* volume of tumor */ rhs[0] = - zeta*x[0]*log(x[0]/x[1])-F*x[0]*u1_; /* volume of neighboring blood vessels */ rhs[1] = b*x[0] - (mu + d*pow(x[0],2.0/3.0))*x[1] - G*u0_*x[1] - eta*x[1]*u1_; /* amount of anti-angiogetic drug */ rhs[2] = u0_; /* amount of cytostatic drug */ rhs[3] = u1_;