-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathORNL-4674.txt
6113 lines (3662 loc) · 185 KB
/
ORNL-4674.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
i
i
LOCKHEED MARTIN BN
T
i fifi
Y RE;ARCH i.lBRAR.'éS
{}I It [iu
fl m.! ’;{ I
3 yys5y 0515983 2
i
ORNL~4674
UC~-80 — Reactor Technology
Contract No, W-7405-eng~26
REACTIVITY BALANCE CALCULATIONS AND LONG~TERM
REACTIVITY BEHAVIOR WITH 23°U TN THE MSRE
B. E. Prince
J. R. Engel
C. H. Gabbard
FEBRUARY 1972
0AK RIDGE NATIONAL LABORATORY
Oak Ridge, Tennessee 37830
operated by
UNTON CARBIDE CORPORATION
for the
U.S. ATOMIC ENERGY COMMISSION
LGCKHMEED MART iy EN
DT
.’l i
3 4456 D515983 a
ERGY RESEARCH | t3RARE
i
ABSTRACT
1. INTRODUCTION
2. THEORETICAL FOUNDATIONS OF THE REACTIVITY BALANCE
2.1 General Considerations
2.2 Simplifications
i1i
CONTENTS
2.3 Approximate Techniques in Calculation .
2.4 Reactivity Measurements
3. DESCRIPTION OF INDIVIDUAL REACTIVITY EFFECTS IN THE MSRE
3.1 Reference Conditions
3.2 The General Reactivity Balance Equation .
3.3 Influence of Graphite Irradiation Damage on the MSRE
Reactivity Balance
4. SOURCES OF DATA AND PARAMETER CALCULATIONS
4.1 Initial Nuclide Concentrations
4.2 Average Reaction Cross Sections
4.3 Neutron Flux Normalization
4.4 Flux—Adjoint Flux Integrals and Reactivity Parameters
4.5 Effective Delayed-Neutron Fractions .
5. EXPERIENCE WITH THE REACTIVITY BALANCE
5.1 Brief History of Nuclear Overations with 23°U .
5.2 Results of On~Line Reactivity Balance Calculations
5.3 Long~Term Reactivity Trends
6. CONCLUSIONS
REFERENCES . . .
APPENDIX .
»
-
-
Page
W W =g
10
13
18
22
22
22
50
57
57
65
65
66
68
68
68
84
89
91
95
ABSTRACT
Reactivity trends in the Molten-S5alt Reactor Experiment were studied
from the beginning of power operation by comparing predicted effects of
changes in the core conditions with observed compensating effects asso-
ciated with control rod motion. The calculations were made on~line, during
operation by using an available digital-computer data logger. The changes
accounted for included uranium depletions and additions; plutonium produc-
tion; 135Xe, samarium, and other fission product production; temperature
variations; and burnout of residual ®Li and !B (in graphite).
The entire period of operation with 2?°U in the fuel salt was studied,
and the essential conclusions were as follows.
1. 1In the normal range of reactor operating conditions, the magnitude
of residual (unaccounted for) reactivity always remained less than 0.1%
Sk/k; its rate of variation over the sampling intervals was small and
essentially random (*0.01%Z 8k/k) and gave no indication of instability of
the fuel composition.
2. The largest "abnormal' variations observed in the residual re-
activity were less than 0.2% Sk/k and appeared to be associated with
cnanges in xenon poisoning and the entrained circulating gas in the core
at scheduled off-normal system operating conditions. Although not ac-
counted for by the on-line calculations, these variations were in accord
with the qualitative behavior expected under these conditions and hence
were not regarded as evidence of malfunctions. At no time did the magni-
tude of residual reactivity approach the administrative limit established
at the start of operations (0.5% 8k/k, which is the approximate value of
the delayed~neutron fraction with the fuel circulating).
3. The apparent stability of other conditions in the core which
could potentially affect the reactivity allowed the reactivity balance
to be used as an effective diagnostic tool for studying the behavior
of !'3%Xe and effects of cover~gas entrainment in the fuel salt.
4. The long-term variation in residual reactivity during the entire
period of operation with ?°°U was less than 0.1% 8k/k. Analysis showed
that this amount of variation could be ascribed to the combined uncertain-
ties in thermal power level, fission product removal from the systen,
and slight structural changes in the graphite during irradiation.
1. INTRODUCTION
A feature of the nuclear operations analysis of the Molten Salt Re-
actor Experiment (MSRE) that is not yet commonly used was on-line reac-—
tivity balance calculations to serve the dual purpose of malfunction
detection and a means of determining the predictability of the long-term
nuclear performance of the reactor. MSRE nuclear operations were termi-
nated after about four years of successful power operation encompassing
two successive fuel loadings, one with 235y and the other with 2°%U. This
report describes experience with the reactivity balance calculation as a
tool of nuclear operations analysis.
The MSRE was built to demonstrate the feasibility and operability of
a high-temperature reactor with a mixture of molten fluoride salts as the
circulating fluid fuel. A major consideration in the safety of any fluid-
fueled reactor is the chemical and physical stability of the fuel mixture.
Because of the mobility of the fuel, a considerable effort was required
during all phases of the reactor program to assure proper fuel behavior
and to attend to the possibility, consequences, and detection of any sep-
aration of fissionable material from the mixture. Although there was no
known mechanism for fuel separation within a wide range of conditions
around the operating point, hypothetical consequences of uranium separa-
tion and redispersion were studied extensively in the early safety analy-
sis of the reactor. These studies formed the main original incentive for
setting up a program to monitor the nuclear reactivity of the operating
system for variations that might suggest abnormal behavior of the fuel.
An operating limitation of *0.5% 6k/k, was also placed on any reactivity
anomaly. As time went on and operating experience was accumulated, no
evidence of any instability of fuel behavior (physical or chemical) was
apparent, and interest tended to shift toward the use of the reactivity
balance calculation as an aid in analysis of normal nuclear operations.
The use of reactivity trends for monitoring and analyzing the state
of the reactor actually has had a long history in power reactor develop-
ment. Perhaps the classic example is the first detection and identifica-
tion of the reactivity poisoning by 13%%e in the Hanford reactors by Fermi,
Wheeler, and others, as discussed by Weinberg and Wigner.l Generally,
however, routine applications of this technique tended fo remain dormant
while refinements in the techniques of measurement and mathematical model-
ing of the nuclear performance were being developed. With the advent of
on-line digital computers as a means of fast data logging and processing,
interest in the potential of the reactivity balance calculation is increas-
ing. The recent article by Danforth? gives a good status summary of con-
temporary applications.
In this report of the use of reactivity balance calculations, the
first section consists of a general description of the theoretical founda~
tions of the technique. Study of the literature indicated that elements
of the mathematical description of this method existed largely in fragments
that emphasized other applications. Hence Section 2 was written with the
intent of clarifying the rules for using the reactivity concept in a con-
gsistent manner for this application. Section 2 is expository in character,
and readers who feel sufficiently familiar with the concept of reactivity
can omit this section without loss of continuity. Section 3 describes
reactivity effects in the MSRE and the procedures used for mathematical
modeling of them. The sources of data and calculated parameters that are
the required input in the reactivity balance model are discussed in Section
4. The final sections describe the results of applying this technique in
the MSRE nuclear operations analysis and include a discussion of the in-
terpretation of the reactivity balance data and a retrospective view of
the usefulness and limitations of the technique in application to molten-
salt reactor analysis.
2. THEORETICAL FOUNDATIONS OF THE REACTIVITY BALANCE
2.1 General Considerations
Fundamental principles require that for steady power operation of a
nuclear reactor a balance be maintained between the rates of neutron pro-
duction and disappearance due to absorptions and leakage to the surround-
ings. Stated loosely, reactivity is a conceptual quantity, introduced to
describe tramsient situations in which these rates do not balance. It is
convenient to express this quantity as the ratio of net to total production
rates of neutrons in the entire reactor; that is
total production rate — total rate
Reactivit -
Re Y total production rate
. (1)
Thus reactivity is a defined quantity that is susceptible to measurement
only by indirect means, and only in this indirect sense does it make "physi-
cal" appearance when the neutron population is changing. If the population
or power level is at steady state in the absence of any neutron source
other than the fission chain reaction, the reactivity must be zero, and
any attempt to ascribe separate reactivity components to the reactor state
at a given instant or to changes during an interval of steadv operation is
merely a convenient bookkeeping device. However, if procedures are de-
veloped for consistent use of this device to monitor reactor operation and
it is found that the algebraic sum of these component reactivities deviates
from zero, this can mean either that the calculations of individual known
effects are in error or that there are unknown or anomalous changes occur-
ring that are not accounted for inm the calculations. Power operation of
a reactor is a complex situation in which many effects simultaneously in-
fluence the neutron reaction rates. The device of separating these effects
according to a reactivity scale allows individual experiments or computa-
tions to be used as an aid in interpreting the whole process.
While reactivity is a central concept in nuclear operations analysis,
the fact that it is an inferred quantity can give rise to inconsistencies
in applications. 1In the reactivity balance, we are concerned with the
theory of compensating reactivity changes that are generally not small,
in contrast to the many routine applications of the reactivity concept in
which only small, uncompensated changes are considered. This requires a
precise examination of the sense in which reactivity effects are additive,
With the present state of the art, neither an approach based purely
on theoretical calculations nor one based entirely on experimental measure-
ments is practical. Instead, an operational reactivity balance must con~
sist of a mixture of these two types of evaluation. Thus the constructlion
of the reactivity balance also involves related problems of interpreting
individual reactivity measurements.
A specific example, which actually has practical application in inter-
preting the MSRE rod calibration experiments, can serve as a prototype in
discussing the theoretical construction of the reactivity balance. 1In
Fig. 1 the parameter region defining an Important part of the rod calibra-
tion measurements is shown schematically. Consideration of variations in
ORNL—DWG 71-9805
>._
=
=
'_
O
<L
wl
o
o CONTRQOL ROD POSITION
7t
S 7
7
7
/
b / |
/ |
|
/
| \g\ s a
| éfi /
| O /
| & ’
| /& /
& ~ CRITICALITY LINE
<(/+ ““““““““““““““ T S— c
Fig. 1. Parameter region in zero-power rod~calibration experiments.
core temperature, shim rod positions, xenon and samarium poisoning, and
other nuclide changes during power operation have been temporarily sup-
pressed, and we have shown only the effect of varying the position of the
regulating rod as the fuel salt is enriched with excess fissile uranium
(beyond the amount required for criticality with the rods fully withdrawn),
The vertical dimension in this "three-dimensional™ plot is a reactivity
scale. The locus of points describing the change in critical rod position
as excess fissile uranium is added to the reactor is shown as the solid
curve oc lying in the horizontal plane (reactivity = 0). This locus is
a graphical expression of the reactivity balance for this parameter re-
gion, We may further observe that this curve (rod position vs uranium
concentration) is the only relation directly accessible to us from experi-
ment provided we confine ourselves to critical states of the reactor.
Suppose, now,'that we wish to extend this description to the case where
other parameters mentioned above may also vary during reactor operation.
This would correspond to a path of critical states in a multidimensional
space analogous to Fig. 1. In this situation, changes in parameters other
than those represented along the axes of independent variables of Fig. 1
can balance nuclear effects of changes along these axes in order to produce
a critical state. This provides a basic motive for mapping the effects
of individual changes in rod position or uranium concentration on the re-
activity scale, even though only stationary states of the reactor flux are
to be described in this application.* This would be represented by knowl-
edge of the complete surface, 5, in Fig. 1. To obtain this information,
it is necessary to ''reach" into the vertical dimension, either by per-
fofming kinetic experiments or by performing calculations for the off~
eritical states.
The static reactivity concept is often used to describe the off-
critical state. We shall sketch here only the essential features of this
. + - -I- - »
theoretical construction as they relate to this problem. In this concept
%
Separate motives can be associated with the needs for quantitative
description of the kinetic behavior of the reactor under independent
parameter variations.
+A much more thorough description is given in Chap. XIT of ref. 1.
the set of physical critical states (the curve oc in Fig. 1) is embedded
in a more general set of pseudocritical states in which the actual neutron
production per fission, v, is multiplied by a calculated factor 1 ~ Pg,
determined to make the neutron production and loss rates balance. The
quantity p. is defined to be the static reactivity. TIf the basic theo-
retical model describing the neutron transport processes in the reactor
is sufficiently realistic for the critical state, use of the calculated
static reactivities for the off-critical states gives one possible opera-
tional description of the surface S in Fig. 1. Leaving aside, for con-~
ceptual purposes, the problems of determing what is a sufficiently real-
istic model for computations (e.g., diffusion theory vs transport theory,
etc,) and assuming that our model gives an exact description of the criti-
cal state, it is possible to relate the static reactivity for an off-
critical state in a precise way to the reactivity inferred from kinetic
measurements [via Eq. (1)]. This relation is nontrivial and has been the
subject of several fundamental papers in the reactor physics literature,*
For the purposes of this review, we will merely state that certain kinetic
experiments, such as period-differeatial worth and rod-drop integral-worth
experiments, can be designed and analyzed (introducing caleculated correction
factors, if necessary) so that differeunces in the reactivities are opera-
tionally insignificant. (Specific details relevant to the application of
MSRE measurements in the reactivity balance are described later in this
report.) Therefore, as a framework for mathematical description of the
theory of compensating reactivity effects, we can use the static reactivity
concept.
Two expressions derived for the static reactivity corresponding to an
arbitrary reactor stafte are given in the Appendix of this report, starting
with the basic equation describing the balance of neutron production and
loss processes. Here, use is made of linear operator notation in order to
retain the basic mathematical structure descriptive of the physical pro-
cesses, while avoiding cumbersome notation associated with choice of a par-
ticular description (e.g., the Boltzmann transport equation or the multi-
group diffusion equations). The first expression derived ianvolves only
References 3, 4, and 5 are judged classical in this category.
the quantities descriptive of production and loss processes for a single
state integrated over the reactor volume; namely,
(W,49) + (¥,L4)
p, = 1-— . (2)
(¥, P9)
In this general notation, L, 4, and P represent linear operators governing
the neutron leakage, absorption (including energy transfer by scattering),
and production from fission respectively. The functions ¢ and Yy are the
direct and adjoint flux fields corresponding to that reactor state, and
the symbol, for example, (y,Ld), represents the inner product of the func-
tions ¢ and Lé4. (The inner product of two functions is defined here as the
multiplication of the functions and integration over the spatial, energy,
and, in certain applications, the directional variables describing the
flux fields.)* Further explicit use of Eq. (2) will not be necessary in
our application; it is intrinsically contained in the relations for reac-
tivity, however, because it defines in an absolute sense the static reac-
tivity corresponding to some chosen reference state of the reactor,
The second expression is relative in character and involves quantities
descriptive of two states, which we will arbitrarily designate "initial"
and "final' states. 1If we use subscript zero to distinguish quantities
corresponding to the initial state, this formula may be written
(5,8P0) (b ,848) (¥ ,6L0)
P, "0, = (L—=p) - - : (3a)
(d)os‘- qu) (wO,PO(b) (waPO‘i’)
An equivalent expression is useful in those situations where the production
operator is altered and the reactivity in the final state, Ogs is con~
sidered to be an unknown quantity. This is,
In applying this notation to the formalism of transport theory, ¢
and ¢ must be thought of as angular fluxes, and the leakage term, L¢, can
be taken as R-V$, However, these observations are not central to our dis-
cussion, particularly if the multigroup diffusion model is to he applied,
where the angular variables have been integrated out.
(¢O,6P¢) (wo,6A¢) (w0,6L¢)
Oy ~ Pgq T (1~ pso) - - . (3b)
(wo,an) (wO,Pdfi (wo,PdJ)
In this notation, for example, 6P represents the change in the neutron
production operator between the final and initial states, P ~=PO,
By restrdicting Eq. (3a) to the special case where the two states
represent critical states (e.g., twe points along the curve o¢ in Fig. 1),
we may set o0, = DSO = 0 to obtain
(Wg,6P9) (¥ ,840) (g, 6L9)
0 = - - : (4)
(bgsPy0) (VP ¢) (U » Py $)
This equation is one possible mathematical statement of the reactivity
balance condition as the reactor changes from the initial to final states.
From it, several observalions may be derived that relate to the problems
of constructing a consistent approximation for use in nuclear operations
analysis. First, the changes in the linear operators may be rigorously
separated into a sum of component effects corresponding, for example, to
movements of the control rod, ingrowth of samarium, depletion of uranium,
etc. However, since fthe flux field for the final state involves the cumu-
lative effect of these components, these component reactivities are strict-
ly additive only if it is assumed that the flux distributions in both the
initial and the final staites are known quantities. We will examine the
extent to which this is a real problem later in this section.
A second potential source of difficulty in constructing a comnsistent
approximation for the reactivity balance relates to the multiplicity of
possible paths between initial and final states that may be used to assign
magnitudes to the component reactivities. This may be illustrated by
reference Lo Fig. 1. Consider, for example, two paths between the origin
(point ©) and the state corresponding to the control rod fully inserted
with maximum excess uranium required to maintain criticality (point &).
Let path 1 consist first of the complete insertion of the rod, resulting
in state «, followed by addition of excess uranium to arrive at state c.
For path 2, let the order of these changes be reversed, leading to the
motion obe. Each of these changes belongs to a class for which the change
in the leakage operator 8L can be neglected. (See also the discussion in
the Appendix. This is not equivalent to the statement that the change in
total neutron leakagze is negligible; for the latter, L¢ can differ through
changes in the operand; i.e., the flux distribution.) By use of Eq. (3a),
with Pog = Pgp = 0, the motion of the rod in path 1 corresponds to the
static reactivity change
(b,06450.)
P = e, (5)
(0g5Pgt,)
and the compensating reactivity associated with the uranium addition is
(wa,6P¢c) (wa,64U¢@)
., - . (6)
(wa,f0¢c) (wa,P0¢a)
In these expressions, GAR and GAU are the changes in the absorption
operator associated with movement of the control rod and additions of
uranium respectively., We have alsec used the fact that PO = Pa’ or
§P = 0 along the path oaq.
For path 2, similar use of Eq. (3b) shows that the static reactivity
change for the excess uranium addition is (P, = P )
b e’ ?
(,,8P6,) (g, 64.56,)
pr == — . : (7)
(yoP o) (WgaP 8,)
The compensating reactivity change introduced by the control rod motion is
. T -£E§:ff5fgz-. (8)
(¥, 52,0,)
Comparison of Eq. (5) with (8) and Eq. (6) with (7) shows that, even if we
ignore the differences in the flux fields for the states 0, a, b, e, the
component reactivity magnitudes still differ by the normalization of the
production operator. (In molten-salt reactor applications, the production
10
operator is directly proportional to the uranium concentration.) Moreover,
we can, in principle, develop similar expressions for these components by
using an infinite variety of paths, including that of alternating infini-
tesimal motions in the directions of the coordinate axes, resulting, in
the limit, in a net motion along the curve ¢oc¢ in Fig. 1. In each of these
cases, the reactivity assigned to the total rod motion or uranium addition
will have slightly different magnitude.
As a practical matter, neither of the problems mentioned above pre-
sent serious obstacles in constructing a reactivity balance model. However,
their conceptual recognition is important in developing compatible approxi-
mations for the individual components. For those components that must be
calculated from basic theory, the perturbation approximation for the flux
distribution can be used without seriously restricting the accuracy of the
calculations, as described in Section 2.3. The second difficulty is cir-
cumvented by setting up a specific convention for the reactivity balance
calculations. Care should be taken, however, that this convention also
conforms to the interpretation given to individually measured cowmponents,
particularly the control rod reactivity. These criteria are further dis-
cussed in Section 2.4.
2,2 Simplifications
One important attribute of molten-salt reactors that has significant
consequences in constructing an approximate reactivity balance is the per-
sisting uniform distribution throughout the salt of the most important
nuclides influencing the neutronic behavior. This characteristic, more
than any other, makes it practical to develop a model simple enough for
use in on-line computation with a computer serving wany other functions
and still sufficiently realistic for use in long-term monitoring of the
reactor neutronic behavior (without taking recourse to ad hoc renormali-
zations). Specifically, as a first consequence, the changes in nuclide
concentration that occur in the course of operation are governed by the
following expression for the reaction rate:
RALY = N.(8) IVR av JO o, (B) ¢ (1,E,t) F(p) dF , (9)
11
where
Ri(t) = total reaction rate for zth nuclide in salt (events per
second),
Ni(t) = npumber density of Zth nuclide in salt (nuclei ver cubic
centimeter of salt),
Gi(E) = reaction cross section for Zth nuclide (cm?),
$(r,F,t) = neutron flux at point r, emergy F, and time 7 (neutrons
cm™? sec™t),
F(r) = wvolume fraction of salt at point r,
V_ = all reactor volume experiencing neutron flux (cm®).
R
The factoring of the nuclide concentration from the volume integration in
Eq. (9) permits definition of a useful microscopic reactor-average cross
section that is influenced by salt composition, but only indirectly,
through the neutron energy spectrum. In turn, use of these cross sections
simplifies the calculation of the time-dependent nuclide changes and their
associated reactivity effects. These calculations will be described in
Sections 3 and 4 in specific connection with the MSRE reactivity balance
model.
As a second consequence, it becomes possible to factor the concentra-
tions from several of the terms in the reactivity balance and make use of
reactivity coefficients derived either from calculations or from experi-
mental measurements. (An exception to this is the treatment of the reac-
tivity effect associated with the control rods. The evaluation of these
effects is considered in Section 2.4.) To illustrate, consider the theo-
retical variation in the static reactivity as excess uranium is added to
the salt, starting at the minimum critical lecading and maintaining the con-
trol rods withdrawn. This is represented by the curve 00 in Fig. 1. We
will first develop this relation in terms of the general notation of the
preceding reactivity formulas. Following this, the discussion will be
specialized to a particular neutronic model, in order to study the problems
of calculating these coefficients.
By use of the arguments that led to Eq. (7), the static reactivity
for an arbitrary point on curve ob is
12
L Gt g8y
° (BgsP9) (g, Po)
(10
Next, we observe that the operators ¢P = P ~»PO and 6AU = AU —-AUO are
macroscopic cross-section-like quantities (i.e., they involve only products
of nuclide concentrations and microscopic cross sections), whose explicit
form depends on the neutronic model. Since the uranium remains uniformly
distributed in the fuel salt and the region geometries and salt volume
fractions remain fixed in variations of the uranium concentration, a
straightforward analysis shows that the concentration may be factored from
these operators. Thus,
T T (11)
and
SA (12)
U
li
(Cy — Cyel¥y o
where CU and O represent the uranium concentration in the salt at an
Uo
arbitrary point along the curve and at the origin, respectively, and H, and
up are microscopic cross—section-like quantities associated with neutron
absorption and production in uranium and also linear operators.
Equation (10) then has the form
0 = 1 m.mmg__g__. e e (13)
(wo,up¢) C
or
c., — C
U uo
K(Cy) G : (14)
©
i
As indicated, the reactivity coefficient, K(CU), depeuds in principle on
the uranium concentration. In application, however, this dependence is
very weak for reasons described in Section 2.3; thus X can be considered
a constant in the calculation of the uranium reactivity component in the
reactivity balance.
13
2.3 Approximate Technigues in Calculation
The simplest theoretical model that includes all the essential fea-
tures of the calculation of neutron flux and reactivity is the two~group
diffusion model. Extension to a larger number of energy groups presents
no difficulty, but the notation tends to be cumbersome and obscure these
egsential features; accordingly, we can discuss the calculation of certain
reactivity effects most clearly in terms of this model.
The correspondence between the preceding general reactivity formulas
and the two-group model is as follows:
¢ P
- tY, weof ! (15)
qb2 wz
Vi Vi,
Do fl fz (16)
0 0
Zal + ?12 0
A - (17)
12 a2
~V-D1V 0
L - . (18)
0 “V-DZV
The direct and adjoint flux vectors are solutions of the equations
. - — - - 7 = 0 1
VeD Vo, =0 Dby ¥ = dvis o) + (L —p)vie ¢, , (19)
al¢1
. — + 7 = 2
VeD Vo, = I b+ T8 0, (20)
VeD V) — 3 0 — % + (1 — VI + 3 = 0, (21)
1 wl alvl 1zw1 ( os) flwl 12w2
14
V'Dszz-— Zazwz + (1 “‘ps)vifzwl = 0, (22)
In these expressions, Dj’ Zaj’ and vffj (7 = 1, 2) represent the diffusion
coefficient, macroscopic absorption cross section, and neutron production
cross section for the "fast" (j = 1) and "thermal" (J = 2) groups respec-—
tively. The slowing-down transfer cross section from the fast-to~thermal
group is 212. In the two~group model, the initial state will appear as a
superscript to aid in separating this designation from the group indices.
The correspondence between the preceding inner product notation and this
model is, for example,
X vl . ¢
1 I 1
(Wo,P0) > [ [0 D) av . (23)
Vg 0 0/ \ ¢,
By applying these correspondences in Eq. (3a) [or (3b)] and carrying
out the matrix multiplications, it is found that the static reactivity
change associated with a change in concentration of a purely neutron-
absorbing material (starting with the state 0) is
2
p—p = . (24)
0 ygz0 0,y dv
IVR (wl YR 4)1 * wl o ¢2)
—_ 0 57 AV ~— 0 sz dv
IVE V%% Y IVR Yy %%, %,
Similarly, the corresponding formulas for the reactivity effect of a
change in concentration of fissile material are
1~ 0 gvs + 90 svr, 4 V- 0 51 + 0 g3
¢ °) IVR (wl ¥ f1¢1 wl v fz'z) @ IVR (wl a1¢1 wz 6TCZ2¢2) v
0 EO + ¢40 0 v
fvé W2 vrloe + w0 vl e ) d
(25a)
and
15
1 - - (pO8vr + 08yr av - 05z ¢ + %8 dv
L =~0) fv,H(“’l VIp ¢+ l6vIc 8 ) IVRwl B bt 088 8)
Oy + pOyuz dv
IVg WPl Yt
(25bh)
If, as in the present application, the change considered is that of a nuclide
uniformly distributed in the fuel salt, it is useful to rewrite these for-
mulas directly in terms of the nuclide concentrations. Setting Fs equal to
the volume fraction of fuel salt in the region exposed to the neutron flux,
GNa and o, equal to the atomic concentrations and microscopic absorption
cross sections of the added absorbing materxial, and N, and vdf equal to the
*
concentration and cross section of fissile material, respectively, we may
rearrange Hq. (24) as follows:
3 (12
o —p = - ’ (26)
o Op + 30 F dv
f IVR(wI Svgfld)l ll11 3v0f2¢2)
s Op dv + Op dav
a (IVR I'.Ul Sgalq)l IVB wZ a d>2 )
S g+ g o )
a ¥, ay © 45%,
o "'"po = » (27)
NS (F vo,. + vo
P fz)
8N
= K —Z (28)
a NO
7
In the last two forms above, Ka is a reactivity coefficient for the ab-
sorbing material, and the parameters jl and jz are defined by
%
We assumed only a single fissile material in writing these formulas:
extensions to account for a mixture are obtained in a straightforward
manner.
F dv
: fvfiw +*)
S (29)
0 av
IVRwl 60,
and
j, = ——, (30)
0 p AV
IVRwI 50,
A similar rearrangement of Eqs. (25a) and (25b) yields the following:
s | - 0y — g i
o [a Gt o) =iy s, |
P P - —E— (31a)
Nf Jivo,. + vo
1 I
and
p—p = . (315)
0 Nf J vo. + vo
1 1 f2
The second expression above may also be rewritten in a form similar to
Eq. (14); namely,
SN,
p—p, = L% (32)
0 Nf f?
where Kf is a reactivity coefficient for the fissile material.
In all the preceding descriptions, we have taken care to distinguish
between the flux distributions in the initial and final states in a reac-
tivity change. An approximation that affords a great simplification in
the practical calculation with these formulas is the first-order pertur-
bation approximation. Here the flux distribution corresponding to the
final, or perturbed, state is set equal to the distribution in the starting
state before carrying out the necessary integrations to obtain the reac-
tivity coefficients. Although this approximation is often emploved in
17
problems of this general type, the basis of its applicability and its
limitationg are not always discussed. Toward this end, we may first ob-
serve from any of the preceding reactivity formulas that this quantity is
independent of the normalization (magnitude) of either the flux distribu-
tion for the final state or the adjoint distribution for the initial state.
Hence the reactivity calculated with these formulas can conceivably vary
with the final flux distribution only through changes in the relative
spatial or energy distribution of the flux. Second, in the type of reac-
tors we are considering, most of the neutron reactions occur in the energy
region of neutron thermalization and, to a lesser extent, the low-energy,
epithermal region. Expressed in terms of the preceding two-group formulas,
this means that the terms involving the adjoint-weighted thermal reaction
rates tend fto dominate in the evaluation of the reactivity. In this situ-
ation, an early analysis by Wolfe® provides a useful criterion for deter-
mining when the thermal flux distribution can be expected to remain essenti-
ally unchanged during prolonged operation of the reactor. In essence,
Wolfe's treatment shows that the net effect of the perturbation on the re~
actor neutron economy should be small compared with the total neutron leak-
age from the reactor, so only a small change in the flux shape is required
to balance the neutron economy against the perturbation. (This criterion
was certainly fulfilled in the MSRE, as can be shown by analysis of the
neutron balance.) However, the applicability of the perturbation approxi-
mation is actually not as restrictive as this might indicate, particularly
when applied to perturbations distributed over the reactor, such as buynup-
related effects. Here the integral nature of the computation has a ten-
dency to smooth out errors in the flux distribution. As might be expected,
this approximation is generally least accurate in application to & strong
and highly localized perturbation (such as a control rod). For these cases,
more exact flux distributions or results of individual reactivity measure-
ments {(such as described in the following section) should be used.
The incentive for use of the perturbation approximation in the treat-
ment of the calculated reactivity terms is considerable, for it minimizes
the number of direct—-eigenvalue/flux calculations that must be perfbrmed
in the course of reactor operation. The fact that it is an approximation,
however, indicates that circumspection should accompany its use in any
18
particular instance, possibly in the form of point checks with results from
more exact analysis. Reference 7 provides much valuable insight and
background discussion concerning applications of the perturbation technique.
2.4 Reactivity Measurements
Jo Section 2.2, mention was made of the unecessity for setting up an
ordering convention for reactivity changes that compensate one another and
for assuring that the interpretation of individual reactivity measurements
conforms to that convention. Of the class of measured components of the
reactivity balance, the control rod reactivity is of major importance, par-
ticularly if the normal mode of power operation involves substantial in-
sertions of the rods (as was the case with the MSRE). The rods represent
strong, localized absorbers, and more elaborate and disproportionate ef-
forts are generally required to calculate their reactivity reliably from
basic thecory; in anv case, a basis of measurement should be available for
comparison.
The convention used in this work is based on the concept that the in-
sertion of the control rods always acts to follow and compensate for any
net excess positive reactivity relative to the origin in Fig. 1. To see
how this may be made to conform to the interpretation of rod calibration
experiments, consider the situation depicted in Fig. 2. Here a typical
period—differential-worth measurement and a rod-drop, integral-worth
measurement are indicated (schematically) for one particular uranium con-
centration., The period measurement determines the slope of the reactivity
versus rod position curve for that uranium coacentration and critical rod
position. 1In Fig. 2 this is indicated by the small triangle starting at
point p in the plane perpendicular to the uranium mass axis. By varying
the uranium content, and with it the initial critical positions for the
period experiments, it may be seen that the slope of the reactivity sur-
face S5 in the neighborhood of the critical line can be obtained.
Similarly, the rod-drop experiment is indicated in Fig. 2 as Lhe tri-
angle ped, where cd represents the total negative reactivity resulting
from rod scram from the initial critical position. It should be noted that
these experiments are by nature limited to the subcritical domain, just as
19
ORNL--DWG 71-4939