European
Nuclear Society
e-news
Issue 13 Summer 2006
http://www.euronuclear.org/e-news/e-news-13/neutron-kinetics.htm
The Chernobyl type of reactor has a positive void coefficient, which means that when a part of the water is replaced by steam the power will increase. At the Chernobyl experiment the steam content in the coolant channels increased suddenly causing a catastrophic power excursion. The presented analyses give details about the importance of the magnitude of the void coefficient. Also the delayed neutrons behaviour is described.
The classical reactor kinetic equations with six groups of delayed neutrons are not solved analytically. Here they are solved numerically with MATLAB and applied to the Chernobyl accident, the results are presented graphically.
Now, 20 years after the accident it is important for today’s and tomorrow’s generations of nuclear engineers to learn not to design reactors with runaway characteristics which can cause an avalanche like power excursion
The Chernobyl type of reactor core is a huge graphite cylinder (7 m high, 12 m diameter) and within some 1600 channels with water and steam cooled fuel inside. The fission neutrons are slowed down (thermalised) mainly in the graphite and a portion of them is absorbed in the water. When a part of the water is replaced by steam (void) the absorption becomes less, causing a positive reactivity contribution. This is the positive void coefficient. After the accident the enrichment of the fuel was increased the neutron spectrum became harder resulting in a lower positive void coefficient
At the Chernobyl experiment due to the abrupt decrease of the speed of the main circulation pumps and the sudden drop of the reactor pressure at low reactor power and heavy Xenon poisoning the steam (void) content in the coolant channels increased suddenly from a few percent to about 50%. Thus the positive void coefficient - about 30 pcm/% - caused a large reactivity insertion.
The neutron flux and thereby the reactor power increased very fast. Due to the thermal inertia of the fuel and the small value of the fuel temperature coefficient the Doppler effect could not break the power excursion. Therefore, to characterize the process at the initial phase, to use only the reactor kinetics equations is sufficient.
and |
Here
t time (sec)
N neutron flux (proportional to the reactor power)
k change of the effective
neutron multiplication factor (keff)
ß sum of the delayed neutron fractions (here 0.006502)
ßi the i:th delayed neutron fraction
l neutron mean lifetime (here 0.001 sec)
i i:th decay constant
(sec-1)
ci concentration of the i:th fraction of the delayed neutrons’ precursors,
At steady state, when time is zero t=0 all time derivatives are equal to zero,
all d/dt=0 and the initial value of the relative power equals unity N(0)=1,
and also
no reactivity perturbation is present k=0
N(0)=1 |
Group |
1 |
2 |
3 |
4 |
5 |
6 |
Fraction ßi |
0.000215 |
0.001424 | 0.001274 | 0.002568 | 0.000748 | 0.000273 |
Decay constant i |
0.0124 |
0.0305 |
0.111 |
0.301 |
1.14 |
3.01 |
i |
1 |
2 |
3 |
4 |
5 |
6 |
ci(0) |
17.3387 |
46.6885 |
11.4775 |
8.5316 |
0.6561 |
0.0907 |
x(1)=N x(2)=c1
………… x(7)=c6 the code is
%Save as xprim7A.m
function xprim = xprim7A(t,x,i)
DeltaK=i*0.010*0.50; %voidcoef=i*0.010pcm/percent void
change, void increase 50percent
xprim=[(DeltaK/0.001-6.502)*x(1)+0.0124*x(2)+0.0305*x(3)+0.111*x(4)+0.301*x(5)+1.14*x(6)+3.01*x(7);
0.2150*x(1)-0.0124*x(2);
1.4240*x(1)-0.0305*x(3);
1.2740*x(1)-0.1110*x(4);
2.5680*x(1)-0.3010*x(5);
0.7480*x(1)-1.1400* x(6);
0.2730*x(1)-3.0100* x(7)];
To study the importance of the magnitude of the void
coefficient, it is enough to plot the first colon of the x matrix. The rows
of the x matrix are the time steps.
%Save as ReaktorKinA.m
figure
hold on
for i=0:1:3
[t,x]=ode45(@xprim7A,[0 0.2],[1; 17.3387; 46.6885; 11.4775; 8.5316; 0.6561;
0.0907],[] ,i);
plot(t,x(:,1))
end
hold off
It is obvious that, the more positive the void coefficient is, the faster the power is increasing. When the void coefficient is zero the power is not increasing at all. The Western type boiling water reactors have strong negative void coefficient meaning that a similar transient would quickly lead to the shut down of the reactor by itself
To study the course in time of the concentration of the delayed neutrons’ precursors (c1 to c6) is also interesting. The following plot is for +30 pcm/% void coefficient showing the colons 2 to 7 of the x matrix
It is clear that the precursor concentration of the fastest growing group of the delayed neutrons is the 6th where the decay constant is the largest [6=3.01] and the largest concentration of the delayed neutron’s precursors at time zero is the 2nd group [c2(0)=46.6885]
To compare the evaluation of the behaviour in time of the fission neutrons and the six groups of delayed neutrons’ precursors at +30 pcm/% void coefficient all seven colons of the x matrix are plotted here
Remarkably at the beginning of the transient [t=0] some of the delayed neutrons’ precursors [c1(0), c2(0), c3(0), c4(0)] are larger than the fission neutrons’ flux [N(0)=1], while later, as the transient evolves the fission neutrons overwhelm grossly the delayed neutrons’ precursors as expected.
Frigyes Reisch
Nuclear Power Safety
KTH, Royal Institute of Technology
Stockholm, Sweden
© European Nuclear Society, 2006