-
Notifications
You must be signed in to change notification settings - Fork 10
/
ORNL-TM-2318.txt
2922 lines (1737 loc) · 66.2 KB
/
ORNL-TM-2318.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
RECEIVED BY DTIE APR 1 § 1969
OAK RIDGE NATIONAL LABORATORY
operated by
UNION CARBIDE CORPORATION
NUCLEAR DIVISION
for the
U.S. ATOMIC ENERGY COMMISSION
ORNL- TM-2318
copy no. - 1035
DATE - February 6, 1969
Instrumentation and Controls Division
DETERMINATION OF THE VOID FRACTION IN THE MSRE
USING SMALL INDUCED PRESSURE PERTURBATIONS
J. C. Robinson® D. N. Fry
ABSTRACT
With the Molten~Salt Reactor Experiment (MSRE) operating at 5 Mw, sawtooth
pressure perfurbations were iniroduced into the fuel-pump bowl to determine the
amount of helium gas enirained in the circulating fuel. The pressure and neutron flux
signals were simultaneously amplified and recorded on magnetic tape. Then the
signals were analyzed using auto-power spectral density, cross-power spectral
density, cross-correlation, and direct Fourier transform techniques to obtain the
neuiron-flux—to—pressure frequency-response function.
An analytical model, developed previously to aid in the interpretation of the
fluctuations of the neutron flux in an unperturbed system, was used to infer from the
experimental data the amount of helium void (interpreted as a void fraction) entrained
in the fuel salt. A description of the analytical model and its experimental verifi-
cation are included in this report.
The void fraction was determined to be between 0.023 and 0.045%. The
uncertainty of this inference is attributed to assumptions made in the model.
*Consultant, University of Tennessee, Nuclear Engineering Department.
NOTICE This document contains information of a preliminary nature
and was prepared primarily for internal use at the Oak Ridge National
Laboratory. It is subject to revision or correction and therefore does
not represent a final report.
OIAIRIBULION OF [HiS QCCUMEND & UNUMIED
- —_— LEGAL NOTICE - ———
! This report was prepared as an account of Government sponsored work. Neither the United States,
| nor the Commission, nor any person acting on behalf of the Commission:
A. Maokes any warranty or representation, expressed or implied, with respect to the accuracy,
:‘ completeness, or usefulness of the information contained in this report, or that the use of
! any information, apparotus, method, or process disclosed in this report may not infringe
! privately owned rights; or
{ B. Assumes any liabilities with respect to the use of, or for dumages resulting from the use of
any information, apparatus, method, or process disclosed in this report.
! As used in the above, ‘‘person acting on behalf of the Commission'’ includes any employee or
! contractor of the Commission, or employee of such contracter, to the extent that such employee
or contractor of the Commission, or employee of such contractor prepares, disseminutes, or
provides access to, any information pursuant to his employment or contract with the Commission,
or his employment with such contractor,
CONTENTS
I. Introduction. . . . . . . .+ . « « . .
2. Theoretical Considerations. . . . . . .
2.1 Introduction . . . . . . . . . .
2.2 Development of the Analytical Model
2.3 Verification of the Analytical Model
3. Experimental Method . . . . . ., . . .
4. Data Acquisition and Reduction. . . . .
4.1 Data Acquisition and its Relationship to the
Significant Quantities . . . .
4.2 Data Reduction. . . . . . . ..
5, Results . .. . . o . . o o .00
5.1 Introduction . . . . . . . . ..
5.2 Results from Analog Analysis . . .
5.3 Results from FFT Analysis. . . . .
*
Physically
5.4 Results from Digital Cross-Correlation Analysis
5.5 The Void Fraction from Experimental and Analytical Results
6. Conclusions . . . . . . . ... ...
/. Recommendations for Future Investigations
8. Appendix . . . . . . o o000
8.1 Interpretation of the APSD of Deterministic Signals in the
Presence of Noise . . . . . . .
This report was prepared as an account of Government sponsored work. Neither the United
States, nor the Commission, nor any person acting on behalf of the Commission:
A. Makes any warranty or representation, expressed or implied, with respect to the accu-
racy, completeness, or usefuiness of the information contained in this report, or that the use
of any information, apparatus, method, or process disclosed in this report may not infringe
privately owned rights; or
B. Assumes any liabilities with respect to the use of, or for damages resulting from the
use of any information, apparatus, method, or process disclosed in this report.
Ag used in the above, “‘person acting on behalf of the Commission® includes any em-
pleyee or contractor of the Commission, or empioyee of such contractor, te the extent that
such employee or contractor of the Commission, or employee of such contractor prepares,
disseminates, or provides access to, any information pursuant io his employment or contract
with the Commission, or his employment with such contracter.
-
-
Page
17
22
23
23
27
30
30
30
33
34
37
41
42
43
43
INTRODUCTION
A technique for determining the amount of helium gas entrained in a nuclear
reactor, circulating fuel-salt system was developed and applied to the Molten-Salt
Reactor Experiment (MSRE) to determine the amount of entrained gas in the system
at any time. This information is useful for calculation of the overall reactivity
balance, since the amount of gas varies and consequently has a varying effect on
the overall reactivity balance. The technique is accomplished by introducing
small pressure perturbations in the fuel-pump bow! and then cross correlating the
resulting neutron~flux fluctuations with the pressure perturbations. Since the
perturbations are small, the technique can be carried out at full reactor power. The
technique is very sensitive; even with a poor signal-to-noise ratio, meaningful data
can still be extracted.
It has been demonstrated' that the amount of helium gas entrained in the MSRE
fuel salt is a function of the system pressure, temperature, and fuel-pump bowl
level. The amount of gas in the system has been estimated from experimental data
from slow power transient 'resfs,2 pressure release ’resfs,3 mass invenfory and zero-
power reactivity balance calculations, * and analysis of the fluctuations (noise
analysis) in neutron density levels.
The noise analysis technique is nonperturbing;
however, it allows determination only of the relative changes in the void fraction.
The other techniques are performed at special reactor conditions; hence, they are
not directly applicable at arbitrary reactor conditions.
'D. N. Fry, R, C. Kryter, and J. C. Robinson, Measurement of Helium Void
Fraction in the MSRE Fuel Salt Using Neutron Noise Analysis, ORNL-TM~2315
(Aug. 1968).
J. R. Engel and B. E. Prince, The Reactivity Balance in the MSRE,
ORNL-TM-1796 (March 1967).
SMSRP Semiann. Progr. Rept. Aug. 31, 1966, ORNL-4037, pp. 29-35.
*MSRP Semiann. Progr. Rept. Feb. 29, 1968, ORNL-4254, pp. 3-7.
The manner in which the amount of void is determined from the technique
developed here is
1. The neutron-flux—to—pressure frequency-response is obtained from the
analysis of the varying neutron flux and pressure signals.
2, The neutron-flux—to—pressure frequency-response is obtained from an
analytical model, with the amount of void in the system as an unknown.
3. The moduli of the experimentally and analytically determined frequency
response are forced to be the same through the specification of the amount
of void in the system.
The model is described, and, due to the complexity of the model, experimental
results are presented and compared with predictions from the model for the purpose
of developing confidence in the model.
As stated previously, there is a small amount of void in the system, and we
propose a small pressure perturbation on the system. One would immediately question
the feasibility of the technique. Hence, data were collected and analyzed for the
conditions with and without pressure perturbations. From these tests, we believe
that it is established that the method is feasible. Then the experimental data were
analyzed by several different techniques and compared with predictions from the
model, from which the amount of void was determined.
The authors are grateful to C. B. Stokes for his assistance in performing the
measurements and to J. R. Engel and especially to R. C. Steffy for their assistance
in designing and implementing the experiment.
2. THEORETICAL CONSIDERATIONS
2.1 Introduction
In this section the theoretical model will be described briefly with emphasis
on the basic assumptions. This description will be followed by a comparison of
mode! predictions with experimental data for the purpose of developing confidence
in the model.
2.2 Development of the Analytical Model
Since the technique described herein for determining the helium void consists
of analyzing those fluctuations in the neutron flux signal that are caused by induced
pressure fluctuations in the fuel pumpbowl, a model was required to relate the
neutron flux to pressure. In the development of this model, the compressibility of
the entrained helium gas was postulated as the mechanism having the greatest effect
on that reactivity induced by pressure perturbations. The primary governing equations
are, therefore, the equations of state, conservation of the mass of the gas, of mass
of the fuel salt, of momentum, of energy, of neutrons, and of delayed neutron
precursors. In particular, with the assumption of one~dimensional flow, the governing
S
equations are:
Equation of state for gas,
o = P/RT. (1)
g
Conservation of mass for the gas,
a3 T ’ a3 r
0B +____ V :0. 2
2t pga/_] oz i_pg ga_J 2
Conservation of mass for the fuel salt,
-
d
(1=a) +=—
3 r
51 %f
= 0. (3)
-
::_, prf(] - )
Conservation of momentum for the gas-salt mixture,
o _ T8 T o2y 2.,
5T Lpfvf(l a) +nggaJ + 53 Lpfvf (1 - ) +ngg o
3P Wr - W
T9.a WA Ll tegaj
F
L. G. Neal and S. M. Zivi, Hydrodynamic Stability of Natural Circulation
Boiling Systems, Vol. 1, STL 372-14 (June 1965).
—
' The assumed relationship between Vf and Vg is
V =SV, (5)
g f
where S, the slip relationship, is given by’
S= O (6)
K-«
Conservation of energy in salt-gas mixture,
d 1 %Ph |
. + + h { = (7)
St [pfuf(] ) pUdJ Sz [pf ff ) Pv Q’J F YQI
where v is the fraction of the "unit cell" power density generated in the liquid.
Conservation of energy in the graphite moderator,
- aT ¥\
MM T ST Q ko (8)
Coulomb's law of cooling,
q=h(TW-TF) . (?)
Power density,
Q=Ce%0, (10)
where CK is the conversion constant from fission rate to the desired units for power
density.
-
Conservation of neutrons (one-group diffusion model),
6
-1 0% _ . - - 11
Vil =@ Dv¢+[:v(l B) fEe zc}p +Z A
=1
Precursor balance equations,
3 C,
e - .9 ' (12)
fori=1, 2, ... 6.
Since the interest is in small deviations about steady state, it was assumed that
a linearized representation of Eqs. (1) through (12) would adequately describe the
system. Furthermore, it was assumed (a) that the velocity fluctuations would not
significantly affect the precursor balance, and (b) that the fluctuations in the density
of the gas are proportional to fluctuations in the pressure. This latter assumption is
based on the linearized version of Eq. (1), i.e.,
A"gzgo[%g"?%l]' (13)
where °4 is the mean density of gas, and the 4 quantities represent deviations about
the mean. The ratio of the mean temperature T0 to the mean pressure P0 is in the
range of 40; therefore, the last term in Eq. (13) was ignored.
With the assumptions set forth above, the linearized equations generated from
Eqgs. (1) through (6) can be solved independently of those obtained from Egs. (7)
through (12). The former set of equations is referred to as the hydraulic model and
the latter set as the neutronic model.
The dependent variables in Eqs. (1) through (6) are VF’Vg’ oy P and P,
This set can be reduced to a set of three coupled differential equations with three
dependent variables in their linearized version. The dependent variables retained
in this study were AV, , Aa, and AP. Therefore, the equations defining the hydraulic
,F I
model were transformed to the frequency domain and written as
dX(z,s)
Az, s) =
+ B(z,s) X(z,s) =0, (14)
where X(z,s) is the column matrix
aV(z, s)
X(z,s) = | aalz,s) |, (15)
A P,(Z' 5)
and A(z,s) and B(z, s) are 3 x 3 square matrices.
The solution to Eq. (14) is
Z
X(z,5) =exp | [ 2(z',5)dz’ | X(z,,9) , (15)
z, |
where
Qlz,s) =A™ (z,5) B(z,s) , (16)
yd
and the matrix exp[ IQ(Z ! s'dz '} can be evaluated using maitrix exponential
z. '
i
techniques similar to those described in ref. 6. Before the solution can be com-
pleted, the boundary conditions appropriate to the system must be specified.
65, J. Ball and R. K. Adams, MATEXP, A General Purpose Digital Computer
Program for Solving Ordinary Differential Equations by the Matrix Exponential
Method, ORNL-TM=-1933 (Aug. 1967).
10
To assign boundary conditions, a physical description (model) of the actual
system must be considered. The mode! chosen to represent the more complex actual
system is presented in Fig. 1. In particular, six regions (identified as Ly through Lg
in Fig. 1) were chosen:
1. the region from the primary pump to the inlet of the downcomer, Ly;
the downcomer, Ly;
the lower plenum, L3;
a large number of identical parallel fuel channels,” Ly;
the upper plenum, Ls;
O\U'I-PLS.JN
the region from the reactor vessel to the primary pump, Lg.
The, perhaps, significant features left out of the physical model are the
heat exchanger and details of the pump bowl. The omission of the heat exchanger
will certainly restrict the lower frequency of applicability of the neutronic model,
but we do not believe that this would affect the hydaulic model. The effects of the
pump bowl on the system were approximated by the boundary conditions between
regions 1 and 6.
The matrix represented by the exponential term of Eq. (15) was generated
for each region. Then, continuity equations were applied between each region,
along with the pressure fluctuations inserted at the pump bowl, o permit the solu-
tion to the closed loop system; i.e., the output of region 6 was the input to region 1.
This permitted the evaluation of the void fraction distribution up through the MSRE
core, which will be required for the solution of the equations describing the neutronic
model.
For the neutronic model, the equations of interest are Eqs. (7) through (12).
The solution to this set of equations could be generated using techniques analogous
7The reactor actually consists of hydraulically different parallel channels, but
to date, no attempt has been made to model them.
ORNL—DWG 68-8417
OUTLET
INLET
[ i e —— — — — — — — A — — — — —
CHANNELED 4
REGION
/ ?
¢L3 L_/ LOWER PLENUM \J
Fig. 1. Model Used to Approximate the MSRE Fuel Salt Loop.
12
to those used in the hydraulic model, but a simpler scheme has been pursured here.
To demonstrate, consider Eq. (12) after it has been linearized and fransformed into
the frequency domain,
Vv _d ACAz,s) + (n +s) AC.(z, s) = B.vZfACD(Z, 5) . . (17)
o dz i i i l
The assumption is made that the flux is separable in space and time, i.e.,
3z, t) = HZ)N() , (18)
and fluctuations occur only in the time-dependent coefficient N(t); therefore,
rg (z,5) is given by
&g (z,s)= H(z) AN(s) . (19)
By use of Eq. (19) and since the precursors leaving the upper plenum return at a
later time (determined by external loop transport time) to the lower plenum, Eq. (17)
was solved for s C. (z,s) as a function of z and aAN(s).
A scheme similar to that used for the precursor equations was applied to the
energy conservation Egs. (7) and (8) to obtain a solution to ATF (z,s) and
AT\, (z,y,s) asa function of axial position z and AN(s).
Now, attention is given to the neutron balance Eq. (11), and a series of
operations is performed: substitute Eq. (18) into Eq. (11); multiply through by
H*(z)N*(t), where H'(2) is a weighting function taken to be the steady-state
adjoint and N (1) is the assumed adjoint time dependence; integrate over the volume;
and require variations of the resultant with N*('r) to be zero (the restricted variational
principle).® This series of operations leads to:
8). C. Robinson, Approximate Solution to the Time Dependent Multigroup
Neutron Diffusion Equations Using a Restricted Variational Principle, Ph.D. thesis,
Univ. Tenn. (Dec. 1966).
13
<-vH +DvH-H" % H +TH*vsz > N(t)
6
*
) B <HVI H>N()
=]
* — _ * -] dN
+Z < H )\ifDECi( r,t)> =<H V 'H > (20)
i=1
where
6
- _ 5
Fe(l-8)f+) 8.
i=1
(21)
and < > indicates integrals over the reactor volume. The reason for introducing
f will be clarified below.
The static reactivity is defined as
VoSV ’
p_= =, (22)
s v
which is the algebraically largest eigenvalue of the equation’
Dy - y +{1=-p)F =0 . 3
[v-Dv Za] b ( ps)FvZf\bs 0 (23)
We furthermore consider the solution to the equation
- (24)
Sk oK Tk R
[v-Dv-ZGJ 1!;5*(1 ps)(FvZF)ws 0;
this equation is defined to be the adjoint to Eq. (23). Then Eq. (23) is multiplied
through by Qrt and integrated over the volume to obtain
’B. E. Prince, Period Measurements on the Molten-Salt Reactor Experiment
During Fuel Circulation: Theory and Experiment, CRNL-TM-1626 (Cct. 1966).
14
* 2 )
_ <_v1l's . D\'?ws l's Zqc: s Y Fy Zf¢s>
= ca (25)
<$s f\)zfvs ”
In Eq. (20), by choice
H(r) = t v, (26a)
and H (M) = ¢ (7). (26b)
At this point it is possible to calculate the value of . which is required for a
critical system. This is the procedure that is normally pursued in criticality cal-
culations; therefore, the quantity f was introduced in Eq. (20) so that the formulism
could be reduced easily to conventional static formulation. Accordingly, we
introduce the definition
<-vH -DtH - H*ZGH + H*’f"vsz >
p(t) = (27)
H FLoo H>
< .\v»;f A
where the reactivity ¢(t) is, in general, a function of time, since the nuclear
parameters will be changing in time due to feedback, rod motion, etc. It follows
from Eq. (27) that p(o) is the static reactivity if the reactor were "just" critical at
t = 0. We now infroduce the definitions
<-9H" DyH>=<-H DB?H >, (28)
h=<HVIH> /<H T ygH >, (29)
f
and write Eq. (20) as
15
6
PN -y (8.5 /FING
i=1
+§ <<H*)\F . C.(r r)>\/<H*_f_v2H>=A-§-N- . (30)
iDi i p f dt
i=1 -
-
Since the spatial mode H(r) was chosen to be the flux distribution at critical
[eigenfunction of Eq. (23)], N(0) is unity. Then p (0) from Eq. (30) is
6 a.f. <HLELC(F,O0)>
p(O) :z i Di _ i Di i . (31)
=
1 f_ <H*-'F\) ZFH>
At this point, Eq. (30) is linearized by introduction of
I
N =1+N) , (32a)
o(t) =0(0) + o' (1), (32b)
and
C,(r, 1) =C(r,0 +Cl7,1), (32¢)
where the primed quantities will be assumed to be small deviations about the mean.
Equation (32) is introduced into Eq. (30) and the products of small quantities are
ignored to obtain
6 * -
<H A, 'cDiCi(r’ Q) >
ity =Y N +
o - — % —
. <H fv ZH> o <H fvZIH>
i=1 f i=1 f
6 <H*AiFDiCi'(7, f >
16
To reduce Eq. (33) to a more useful form, we define
. { -Da? - E, +Ffy I }
D (rft)E.é . r
L <H*fquH>/<H*H>
where the & represents deviations about the mean. Then o’(t) becomes
<H*p (F,i') H>
‘ L
p(f): . !
<H H>
and Eq. (33) can be written as (dropping primes and transforming)
% —_
6 <H A f..C(r,0)>
s ANG) +) LD N(s)
1 <H fvEfH>
6 <HWf .C(F s) > <H'p(r,s)
) iDici Y T L
i1 <H*FvZFH > < H* H>
Although oL(?,s) could be evaluated directly from Eq. (34), a somewhat simpler
approach is to expand in a Taylor series, as
- eo, - P S opL -
DL(r’S) = aTF L\Tf-(ris) TX_T—’\-A— ATM(I’,S)"“-—B--&—— AO!(T’S)
where AT.(r,s) is the local fluctuation in the temperature of the fuel (]
moderator (j =m), Aa (F’,s) is the local fluctuation in the void fraction
(34)
(35)
H>
. (36)
+ ..., (37)
f) or
of gas,
and the "etc." are assumed to be a deterministic input reactivity that can be
(s)
grouped as P ot
17
Equations(36) and (37) make up the neutronic model. The solution of these
equations and Eq. (15), the hydraulic model, leads to the desired transfer function,
e.g., the neutron-flux—to—pressure transfer function.
2.3 Verification of the Analytical Model
As noted in Sect. 2.2, several assumptions were made in the development of
the model; therefore, we believed that confidence could best be established in the
analytical predictions by direct comparisons with experimental data. In this section
comparisons are presented of analytical results with available experimental data.
The experimental frequency-response function obtained at zero power by
Kerlin and Ball'® is presented in Fig. 2. Since their data extends to about 0.2 cps,
other data obtained by noise analysis by Fry et al. Mis included in Fig. 2a. The
data obtained from noise analysis extends from 0. 14 to 15 cps, but no phase infor-
mation is readily available from the noise data, since an autopower spectral density
(APSD) analysis was formed. Along with the experimental data, the results obtained
from the neutronic model are also presented. We conclude from Fig. 2 that the
analytical model describing the system is satisfactory at zero power. The "hump" in
the calculated frequency response function at about 0.04 cps is attributed to the
assumption of plug flow for the fuel salt around the loop; i.e., there must be mixing
of the delayed precursors, which the model ignores. To check the analytical model
further, the calculated effective delayed neutron fraction Beff’ which is used in
conjunction with the in-hour equation for rod calibration, is compared with the
measured Bofre Experimentally, the decrease in reactivity due to circulating fuel
relative to static fuel was 0.212 # 0.004% sk/k.? An assumed static Beff of 0.00666
T, W. Kerlin and S. J. Ball, Experimental Dynamic Analysis of the Molten-
Salt Reactor Experiment, ORNL-TM=-1647 (Oct. 1966).
"D. N. Fry, et al., "Neutron-Fluctuation Measurements at Oak Ridge
National Laboratory,’ pp. 463-74, in Neutron Noise, Waves, and Pulse Propagation,
Proc. 9th AEC Symp. Ser., Gainesville, Fla., February 1966, CONF-660206
(May 1967).
18
would lead to a circulating Bt of 0.00454. The circulating B ¢f calculated from
the mode! was 0.00443. Prince’ had calculated a circulating BeFF of 0.00444,
The experimental data'® for the neutron-flux—to-reactivity frequency-response
function for the reactor operating at 5 Mw are presented in Fig. 3 along with the
calculated power—to—reactivity frequency-response function for the same conditions.
In Fig. 3a there is a difference between the calculated and the observed
modulus of the power~to~reactivity frequency-response function below 0.008 cps
because the mode! ignored the heat exchanger; i.e., fluctuations in the fuel-salt
outlet temperature were transported around the loop and back to the inlet of the core
where they affected reactivity directly. As in Fig. 2, the discrepancy in the
0.04 cps region is atiributed to the plug flow model.
The difference between the experimental and calculated phase information in
Fig. 3b at the lower frequencies is atiributed to the heat exchanger assumption. We
do not understand the difference at the higher frequencies.
We conclude from Fig. 3 that the analytical prediction of the power-to-
reactivity frequency-response function is acceptable for frequencies above 0.008 cps
at a power level of 5 Mw.
The calculated modulus of the reactivity-to-pressure frequency-response func-
tion and the available experimental data? are presented in Fig. 4. The calculated
magnitude of the modulus of the frequency-response function is proportional to the
void fraction for each model.
It was stated in Sect. 2.2 that the pump bowl was not explicitly accounted for
in the model, but an attempt was made to account for its effect on the system by the
use of boundary conditions between regions 1 and 6 (see Fig. 1). The difference in
the calculated modulus of the frequency-response function between curves labeled
Model A and Model B in Fig. 4 is attributed to the assumed boundary conditions
between regions 1 and 6. There must be two boundary conditions. The first boundary
"ZMSRP Semiann. Progr. Rept. Aug. 31, 1965, ORNL-3872, pp. 22-24.
ORNL DWG. 69-3T7h41
10 T 11 1 T TtTt[ T T TT1[ T T TT]
— CALCULATED
x EXPERIMENT (REF. 9)
® EXPERIMENT (REF. 10)
0
0.001 00l 0l 1.0 100
FREQUENCY (cps)
CRNL DWG. €9-37hZ
0 T T T T T T7T] T T T1
- — CALCULATED —
x EXPERIMENTAL
PHASE (deq)
FREQUENCY (cps)
Fig. 2. Modulus and Phase of the Neutron-Flux-to-Reactivity Frequency-
Response Function for the MSRE at Zero Power. (a) Modulus and (b) Phase.
20
ORNL DWG. 69-37L3
3
ax10 T T T T T T T T
- — CALCULATED B
x EXPERIMENTAL
10> L— .
o x _
o | x ]
x
02 l L 11| | L1 1 L L
0.00I 0.0 ol 0
FREQUENCY (cps)
60 ORNL DWG. 69-3Thk
T T T T T T
B " — CALCULATED —
40— X x EXPERIMENTAL ]
e X B
20 _
3 L , )
2
w O ' _
< B —
I X
a
-20 — B
—40.._.__ .
-60
0.00!1 0.0I ol
FREQUENCY (cps)
Fig. 3. Modulus and Phase of the Neutron-Flux-to-Reactivity Frequency-
Response Function for the MSRE at 5 Mw. (a) Modulus and (b) Phase.
21
condition was that the pressure fluctuations at the exit of region 6 are the same as
the inlet pressure fluctuations to region 1. This condition seems physically reason-
able; therefore, it was used for both Model A and Model B. For the second boundary
condition, we assumed for Model A that the void-fraction fluctuation at the exit of
region 6 was equal to the void-fraction fluctuation at the inlet of region 1. For
Model B, the second boundary condition was that the fluctuation in the total mass
velocity to region 1 was zero.
2 CERL DWG. &9-374%
S T TT T 11 T T T T 1T ]
N X X T
Xt
[ x/x/ \x i // ]
/ M x
B . ~ /\\,,/ N N
§ P /E..o—o-”"’“'r'fi'_’—;' ;&W"w\:o—o-—*';:::xf
o o e x a «* X
20— o g2 :
2 8 x ° B -X
= e —
s
o | A~ ]
L -
“a_ A ® CALCULATED MODEL A
X x CALCULATED MODEL B
P D EXPERIMENTAL
X
o Lot vk
0.00! 0.0l 0.l 10 10.0
FREQUENCY (cps)