a b/RadOnly/sys_ndRadNordic.m
1
% In this code we include logistic growth of normal cells and PM cells
2
% along with radiation effect from Gibins work.
3
4
function xprime = sys_ndRadNordic(t,x,D)
5
6
xprime = zeros(2,1);
7
8
% Parameters that are fixed
9
10
N = 10^9; % Sachs
11
lambda = 0.40; %Sachs
12
r = 0.85; 
13
14
K = 20;        
15
d = D/K;       
16
17
tau = 0.02;   % radiation time- 30 minutes = 0.02 days
18
19
alpha = 0.25; % Damien Weber et al. 
20
gamma = 10^(-9); % (d/tau) is the dose rate
21
22
    if(t<=K+tau)
23
        t-floor(t);
24
        if (t-floor(t)<=tau)
25
            t;
26
            
27
            xprime(1) = lambda*x(1)*(1-x(1)) - alpha*(d/tau)*x(1) - gamma*(d/tau)*x(1);
28
            xprime(2) = r*lambda*x(2)*(1-x(1)) - alpha*(d/tau)*x(2) + gamma*(d/tau)*N*x(1);
29
        else
30
31
            xprime(1) = lambda*x(1)*(1-x(1));
32
            xprime(2) = r*lambda*x(2)*(1-x(1));
33
        end
34
    else
35
        
36
        xprime(1) = lambda*x(1)*(1-x(1));
37
        xprime(2) = r*lambda*x(2)*(1-x(1));
38
        
39
    end
40
41
42
43
44
45
46
47
48
49