-
Notifications
You must be signed in to change notification settings - Fork 10
/
NAT_MSREdynamicsTesting.txt
2561 lines (1236 loc) · 38.1 KB
/
NAT_MSREdynamicsTesting.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
7 s e
Aol
»
*
cluded measurvements using the
\»
EXPERIENCES WITH DYNAMIC TESTING
S‘/D filfin, L
METHODS AT THE MOLTEN-SALT
REACTOR EXPERIMENT
reachufy, fre~
quency, power, testing, per~
formance, signals, MSRE
KEYWORDS:
. W. KERLIN, S. J. BALL R. C. STEFFY, *andM R. BUCKNER**
Oak Ridge National Labowatm'y, Oak dede, Tennessee 37830
Keceived May 23, 1970 |
Revised September 14, 1970 -
A series of veactivity-to-power frequency re-
sponse measuremenis was made on the Molten-
Salt Reactor Experviment. This was done for P30
and #°U fuels, for a range of operating power
levels, at several points in the sysiem opervaling
history, and for several different test procedures.
A comparison of expevimental resulis with prior
theoretical predictions confirmed ithe validity of
the theoretical predictions. The test program in-
pseudorandom
binary sequence, pseudorandom ternary sequence,
n-sequence, and the multifrequency binary se-
I. INTRODUCTION
An extensive dynamics testing prograra was
carried out at the Molten-Salt Reactor Experiment
(MSRE)." The tests consisted of reactivity to
power f{rcquency response measurements. The
purpose of the test program was: T
1. to demonstrate the safety and operability of
the system
2. to check the validity of the theoretical anal-
ysis so that the safety of the plant could be
*Present address:
tanocga, Tennessee,
**University of Tennessee, Knoxville, Tennessee. Pres-
ent address: Savannah River Laboratory, Aiken, South
Carolina,
Tennessee Valley Authority, Chat-
NUCLEAR TECHNOLOGY =~ VOL. 10 FEBRUARY 1971
reassessed if necessary and so that con-
firmed methods could be established for
analyzing future, high- performance molten-
salt reactors
3. to evaluate techniques for performing dy-
namics experiments and methods of data
analysis.
Tests were performed at several different power
levels, al several different times in the system’s
operating history, and for the reactor fueled with
U and with ***U. Items 1 and 2 were the main
objectives of the test program, but this paper em-
phasizes item 3 since it should be of general in-
terest to those planning dynamics tests in other
systems. Those interested only in the perfor-
mance of the MSRE could skip Secs. II and III and
proceed directly to the results in Sec. IV.
Il. PLANNING THE TESTS
A. Objective
The primary test objective was to measure the
reactivity-to-power frequency response over the
range of frequencies where important system dy -
namic effects occurred. Inspection of the fre-
quency response predictions (see Figs. 8 and 14
of Ref. 1) indicated that measurements down to
~0.005 rad/sec at the low frequency end were
needed. It would have been desirable to carry the
-high frequency end of the measurements out to
about. 50 rad/sec if the zero-power reactor kinet-
ics effects were to be observed. If the interest
were in feedback effects, the upper frequency need
not have been greater than ~0.5 rad/sec. The ap-
proach used here was to determine the high fre-
quency (1.0 to 100.00 rad/sec) response by noise
103
Kerlin et al.
measurements during zero-powar operation. Sub-
sequent at-power measurements concentrated on
the 0.005- to 0.5-rad/sec range where feedback
effects were important.
B. Equipment Used in Experimenta! Measurements
The selection of the experimental methods for
the MSRE dynamics tests was based on the infor-
mation required and on the capabilities of the
available equipment. Fortunately, the emphasis
on low frequency results (0.005 to 0.5 rad/sec)
made it possible to obtain the important part of
the system frequency respouse using the standard
MSRE control rods to introduce the input reacti-
vity perturbations.
The MSRE has three identical control rods,
each with an active length of 59.4 in. One rod is
normally designated as the regulating rod and is
used for fine control. The other two rods are used
as shim rods for coarse adjustments. The rods
are actually flexible, stainless-steel hoses on
which are strung gadolinium oxide poison cylin-
ders. The rods are mounted in thimbles which
have two 30-deg offsetting bends so that the rods
can be centrally located even though there is no
room for the control-rod drive assemblies above
the central axis of the core. The maximum rod
speed is ~0.5 in./sec. Typical rod travel in the
experiments was ~0.5 in. for most of the 2%y
tests and 0.3 in. for most of the 2**U tests. This
gave a reactivity change of ~0.025% (7¢) in the
**U tests and ~0.02% (12¢) in the 2%V tests,
Figure 1 shows the control-rod and drive as -
sembly. The position indication for each rod was
obtained from a synchro geared to the rod drive
mechanism. A coarse synchro (5-deg rotation per
inch of rod travel) was used in early tests and a
fine synchro (60-deg rotation per inch of rod
travel) was used in later tests. The signal from
the position synchro was amplified and low-pass
filtered (1-sec time constant) to eliminate high
frequency noise and the accompanying aliasing ef-
fect prior to input into the Bunker Ramo computer,
BR-340, where the signal was digitized every 0.25
sec and recorded on magnetic tape.
The nuclear power level signal was furnished
by the output of a compensated ion chamber loca-
ted adjacent to the core. This signal was also
amplified, Jow-pass filtered (1-sec time constant),
digitized at 0.25-sec intervals, and recorded on
magnetic tape. | '
The BR-340 computer was also used in con-
junction with a portable analog computer for
generation of the input signal for the test. A com-
puter program was prepared for on-line genera-
tion of each test signal used in the tests (the
signals are described in Sec. II.C.2).
104
EXPERIENCES WITi{ DYNAMIC TESTING
C. Test Signals
1. Introduction. Test signal selection was influ-
enced by considerations of accuracy requirements,
frequency range over which information was
needed, and hardware capabilities. The following
input signals were used during the testing pro-
gram:
a. pulse
c
. step
. pseudorandom binary sequence
QL o
. pseudorandom ternary sequence
@
. n-sequence
bty
.
multifrequency binary sequence (flat input
spectrum) |
g. multifrequency binary sequence (prewhit-
ened output spectrum).
Pulse and step tests are easy to implement, but
these signals give results with limited accuracy.
This is because the signals are nonperiodic, and
therefore have a continuous frequency spectrum
and resulting low signal energy in the neighbor-
hood of a frequency of interest.
The other five signals are more trouble to im-
plement, but they permit more accurate results,
This is because they are periodic, and therefore
concentrate the signal energy in discrete harmon-
ic frequencies. In all of the tests using periodic
signals, the period is determined by the lowest
desired frequency:
ro2
where
T ='period
w1 = lowest desired frequency.
For example, the required period for a test in
which the lowest required frequency is 0.01
rad/sec in 628 séc. All other harmonics would be
at integer multiples of 0.01 rad/sec. The accura-
cy of the results is improved by using input sig-
nals consisting of more than 1 cycle. In the MSRE
measurements 2 to 10 cycles were used,
2. Properties of mput Signals.
a. Pulse. The energy density e of a pulse of
duration T and amplitude A at frequency w is given
by:
‘e _A*T? [sin(wT/Z)] 2
2r L wT/2 |
FEBRUARY 1971
NUCLEAR TECHNOLOGY VOL. 10
'NUCLEAR TECHNOLOGY
Kerlin et al.
FXPERIENCES WITH DYNAMIC TESTING
REVERSIBLE DRIVE MCTOR
SOLENOID ACTUATED
RELEASE
GEAR AND ARM
' \, .
/ 4
A l
SWITCH i ]
DRIVE UNIT —// ‘
SPACER lg
{
LOWER LIMIT L?
SWITCH '-3
3~in. x 2~in. ECCENTRIC
REDUCER
GUIDE BARS, ——_]
4 AT 90°
BEADED POISON ELEMENTS—< |
2~in. CONTAINMENT THIMBLE —-
y | | ‘1 ("'
COOLANT TO DRIVE
ASSEMBLY
/'—“COOUNG
\O/ GAS INLET
L
\ //’
"
o~
COOLING GAS
CONTAINER
-~
——POSITION INDICATOR
SYNCHRO TRANSMITTER
FIXED DRIVE SUPPORT AND
3~ in. CONTAINMENT TUBE
COOLANT TO
POISON ELEMENTS
%in.0.D0.-304 S.S.- FLEXIBLE
HOSE CABLE
a0
~—— SPRING LOADED ANTIBACKLASH
HEAD AND IDLER GEAR
oi™
I6-in. RADIUS x 30° BEND
Fig. 1. Control-rod drive assembly,
This spectrum appears in Fig. 2. Note that the
amplitude is expressed as energy spectral density
(energy per unit frequency). | ' |
b. Step. A step input may be thought of as a
pulse whose duration has gone to infinity. The
step test is suitable only for systems whose re-
sponse settles to some constant value after the
VOL. 10
FEBRUARY 1971
step input. This requires that the system’s zero-
frequency gain be a finite constant (including zero).
In principle, the step input contains an infinite
amount of energy, but this energy is concentrated
in the low frequencies where it is of little use.
¢. Pseudorandom Binary Sequence. The pseu~
dorandom binary sequence (PRBS) is often used
105
Lot o
Naatag
Kerlin et al.
0.1
w = FREQUENCY (rad/sec)
T = PULSE DURATION (sec
0.01
ENERGY PER UNIT FREQUENCY
AZ T2
0.00!
Q.4 | 10 100
DIMENSIONLESS FREQUENCY (w T)
Fig. 2. Energy spectrum of a square pulse.
for frequency response measurements and for ap-
proximate impulse response measurements. The
methods for generating the PRBS are well
known.”? These methods give periodic sequences
of +1’s and -1’s (each member of the sequence is
called a bit). The total number of bits in the se-
quence N must be 22 - 1 for any integer value of
Z. The period of the signal is given by the prod-
uct of the number of bits N and the bit time in-
terval At
The spectrum of the PRBS with pulse amplitude
A and total test duration T is given by:
2 . 2
py =2 WADET (G (g
2 |
A0=;1VzT for k=0, (1)
where A; = amplitude of the energy spectrum at
the A’th harmonic frequency. The spectra for
several sequences are shown in Fig. 3. Note that
the short sequences concentrate most of the signal
energy in the first few harmonics and the longer
sequences spread the signal power among more
harmonics. |
In planning a test, one must select the period to
give the required lowest frequency. The required
upper frequency fixes the sequence length N or
equivalently (since the period is fixed) the bit dur-
ation. The following relation specifies the har-
monic number at which the signal power is half as
large as the amplitude of the harmonic with the
106
EXPERIENCES WITH DYNAMIC TESTING
A Py Y A e L gratuam. e, oet ) - A
T Ay s R T R AT
'y 2 Y . e LUl S R SN s M.
e o T O v Tl O o iy R R R B AR
Ref T B NI TR e e s ST | PO L IO LR ]
L R S A F o T T e A E N
-
greatest amplitude’ (thereby furnishing a measure
of the bandwidth of the signal):
kr =0.44N , (2)
where 2, =harmonic number of the harmonic with
half the power as the harmonic with the greatest
power, Thus, if the lowest frequency is ;
rad/sec, and the required highest frequency is wy,
rad/sec, then the number of bits is given by:
N =227 %L (3)
w1
The bit duration A is fixed by the highest fre-
quency of interest. The relation is
At = — | (4)
Of course, these are just rules of thumb. If the
total signal energy is too small, the signal energy
per harmonic may be too small even for the har-
monic with the largest amplitude. .
- d. Pseudovandom Tevnary Sequence. The pseu-
dorandom ternary sequence* (PRTS) is similar to
the PRBS, but three levels of the input signal are
1.0
DENOTES HARMONIC FREQUENCY
BASIS ~ SAME TOTAL DURATION
0.5 FOR ALL SIGNALS
0.2
0.1
.
w
O
2 005
4
o
s
g
Wi
9% 002
D
a
x .
—
LS 0.0t
o
ac.
2
w 0.005 -
-t
T 4
| '
1 °
0.002 .
o i
L] i
' o @
! y
0.001%
1 2 5 10 20 50 100
HARMONIC NUMBER
Fig. 3. Energy spectrum for several PRBS signals.
NUCLEAR TECHNOLOGY VOL. 10 FEBRUARY 1971
AMPLITUDE (NORMALIZED TO PRBS)
used (-1, 0, +1). The number of shifts in these-
quence is given by N = (37‘ - 1) for integer
values of 7.
The spectrum of the PRTS with pulse amplitude
A and total test duration I'is given by:
8 (N +1)A°%T [sin(kfr/N)]2 .
A = & : for % odd
3 2 kRu/N
A’ / (5)
Ay =0 for k& even.
This shows that the shape of the PRTS spectrum
is the same as for the PRBS. However, only the
odd harmonics are non-zero and they have an am-
plitude which is one-third larger than the corres-
ponding amplitude of a PRBS harmonic for a
sequence with the same value of N. Figure 4
shows a comparison of these signals. The proper-
ties given in-Egs. (2) through (4) for the PRBS also
apply for the PRTS.
- The PRTS is of interest because it has the ad-
vantage that it discriminates against nonlinear
effects. This may be advantageous because it
allows one to use large amplitude signals in fre-
quency response measurements. The PRTS has
the disadvantage that in the MSRE (and in many
other reactor systems) a three-level input is
harder to implement with system hardware than a
two-level signal.
e. n-Sequence. The n-sequence’ is obtained by
a simple modilication of the PRBS. The modifica-
tion consists of inverting every other bit in a
PRBS. Since the number of bits Nin a PRBS is
o
o
0.01
0.0t O.1 | 10
NORMALIZED HARMONIC NUMBER (k/N)
Fig. 4. Envelope of amplitude spectra for PRBS, PRTS,
and n-sequence, '
NUCLEAR TECHNOLOGY VOL. 10 FEBRUARY 1971
Kerlin et al. EXPERIENCES WITH DYNAMIC TESTING
always odd, the number of bits in an n-sequence
obtained by nicdification of an N-bit PRBS is 2N.
The spectrum of the n-sequence with N bits,
pulse amplitude A, and total test duration T is
given by: |
| A2 e (T \K:
4, = AN+ DA% [sm(k/r/N)J for b odd
N? kw/N 1 ©)
A =0 for & even.
Figure 4 shows a comparison of the spectrum for
the n-sequence and the PRBS and PRTS. Since the
shape of the amplitude spectrum is the same as
for the PRBS, the bandwidth relations [Egs. (2)
through (4)] still apply.
The n-sequence discriminates against nonlin-
ear effects as in the case of the PRTS signal.
f. Multifrequency Binary Sequence (MIFBS)—
Flat Spectrum. In all frequency response mea-
surements, a major objective is to select input
signals with a large fraction of the total available
signal energy concentrated in the frequencies
selected for measurement. Generally, it is de-
sirable to space the harmonics evenly on a loga-
rithmic scale except in regions where more
resolution is needed. Since the harmonics of the
PRBS, PRTS, and n-sequence are evenly spaced on
a linear scale, the spacing of the harmonics is too
dense at the higher frequencies (see Fig. 3). This
constitutes a waste of signal energy in identifying
nearby harmonics which are only slightly different
from one another.
An alternate procedure is to design a test sig-
nal which maximizes the {raction of the total
signal energy in harmonics selected by the ex-
perimenter. A signal of this type can be obtained
by a computer optimization of the polarities of the
pulses 'in a pulse chain of fixed length. The ob-
jective function, which is minimized in the opti-
mization, is the difference between the desired
spectrum and the spectrum obtained for a given
pulse chain. Experience shows that as much as 65
to 75% of the total signal power can be concen-
trated in selected harmonics.®”’ Furthermore, the
signal can be designed so as to discriminate
against nonlinear effects.
A typical signal used in the MSRE experiments
appears in Fig. 5.
g. Multifrequency Binary Sequence (MFBS)—
Prewhitened Spectrum. One of the main reasons
for interest in the PRBS, PRTS, and ii-sequence is
that the amplitude spectrum can be made quite flat
over a wide frequency range. This is important in
measurements with large noise contamination of
the input signal. The procedure for such a system
would be to use as much input signal energy as
possible (within limits set by system operating
107
T R AR it it 45N
S TR AT NSNS R TR W TN e
FRACTION OF TOTAL SIGNAL ENERGY -
: 5'
nN
- At o, — _ - ‘
B#gfl?maw&ys LR N e SRR O I PR 2 a7 o 3 AR e PPNy
L T G N R L s e N el R SR R ¥ S ;- T P G B LG S Ao L A N T A R R Er
: T N e O By i e e R Rogee ¥y B TS e T e S G IR AT i g ) e Rl M g Y g ¥, £
] U TR ;;1;"?5“, Y ST ¥ I T 4: ..; P Y L 3 ?;:}‘;;,‘, i P u :‘ " > 5 e
Kerlin et al.
M e M0k
L U0 UUJHU”U”UU e
“l Ate3 sec 7
(o) THE INPUT SIGNAL
io~!
NOTE. THE TWELVE
DESIRED
CONTAIN 753 %, OF
THE TOTAL SIGNAL
ENERGY
O DESIRED HARMONICS
D OTHER HARMONICS
BELOW SCALE
1073
10
0~} 10° 10!
FREQUENCY (rad/sec)
(b) ENERGY SPECTRUM
| Fig. 5. MFBS flat spectrum signal and its spectrum,
- conditions and nonlinear effects) and to divide this
energy evenly among the desired harmonics so
that the signal-to-noise ratio would be as high as
possible at each measurement frequency.
In systems in which the predominant noise
contamination is in the output signal, the same
observations apply as were mentioned above in
connection with an input-noise problem. That is,
each output harmonic should contain the maximum
possible signal energy. Thus, for systems with
output noise problems (a common case) the output
amplitude spectrum should be flat. This can be
accomplished by using an input signal whose am-
plitude spectrum has a shape which is the recip-
rocal of the amplitude spectrum of the system
frequency response. |
A method has been developed’ for obtaining a
flat output spectrum if preliminary estimates of
the amplitude of the system frequency response
are available from theoretical calculations or
from preliminary measurements. The procedure
is the same as described in the previous section,
except that the desired amplitude spectrum used
in the optimization has the shape of the recipro-
cal of the expected shape of the amplitude of the
- system {requency response. The amplitude spec-
trum of a typical input signal for a prewhitened
MFBS test is shown in Fig. 6.
3. Signal Input Procedures. Three different pro-
cedures were used in the tests. The changes were
required to overcome problems with the control
rods and with the system background flux noise.
108
EXPERIENCES WITH DYNAMIC TESTING
a. Open-Locp Rod Positioning. This procedure
was used in the early tests. The desired input
signal generated by the BR-340 computer was
used to actuate withdraw and insert signals to
the control-rod drive motor. The withdraw and
insert times were different because the coasting
characteristics of the rod were different for
withdrawals and insertions. The withdraw and
insert times were adjusted manually during the
beginning of the test to give the desired pulse
shapes. This procedure . worked well when the
control rods were new, but the wear associated
with long-term operation caused difficulty in
later tests.
b. Flux Demand. The flux demand procedure
was used to overcome the problems associated
with open-loop tests. The procedure was to feed
the test sequence in as a flux demand signal for
the flux-servo system. This caused the control
rods to move to satisfy the flux demand. In this
test, the spectrum of the flux signal had the ap-
proximate shape of the spectrum of the test se-
.quence. The amplitude of the spectrum of the
input was approximately the amplitude of the flux
signal divided by the amplitude of the system fre-
quency response at that frequency.
This procedure worked satisfactorily for the
final tests with the ?**U loading. The only condi-
tion was that the flux servo system had to be ad-
A
:
T 0N
AT Ooon
"‘"* Ot = 3 sec
(@) THE INPUT SIGNAL
NOTE: THE SIX DESIRED
HARMONICS CONTAIN 72 7%
OF THE TOTAL SIGNAL
ENERGY
FRACTION OF TOTAL SIGNAL ENERGY
O DESIRED HARMONICS
0 OTHER HARMONICS
BELOW SCALE
03" _
1002 2 5 107! 2 5 10°® 2 5 10!
FREQUENCY (rod/sec)
(6) ENERGY SPECTRUM
Fig. 6. MFBS prewhitened signal and its spectrum,
NUCLEAR TECHNOLOGY VOL. 10 FEBRUARY 1971
o=
justed to avoid hunting by the control rod. This
was necessary because of loose coupling in the
rod drive mechanism (see Fig 1), which caused
an error in every indicated rod position change.
If each rod position change was preceded by a
change in the opposite direction, then each read-
ing was in error by a multiplicative factor. When
rod position changes in arbitrary directions were
made, the indicated position error was not a
simple factor and it was impossible to obtain re-
liable rod position indications.
When the reactor operated with °°U fuel, a
change in system characteristics made the flux
demand procedure unacceptable. Shortly after
operation began with ***U fuel, the void fraction
in the fuel salt increased significantly with an ac-
companying increase in flux noise. This noise
component in the error signal in the servo caused
excessive rod motion. This was unacceptable be-
cause of the problem with erroneous rod position
signals.
- ¢. Closed-Loop Rod Positioning. The prob-
lems with the flux demand test led to the closed-
loop rod positioning procedure. In this procedure,
the flux signal from the ion chamber was discon-
nected from the servo system and was replaced
by the rod position signal. Then, the error signal
which actuated the control-rod drive was the dif-
ference between actual and desired rod position
signal. This procedure was satisfactory in all
tests.
Hi. DATA ANALYSIS METHODS
Three different digital computer codes were
used in the data analysis. These are described
briefly below:
1. FOURCO.? This code computes the Fourier
transform of the output signal and the input sig-
nal, and computes their ratio to give the frequen-
cy response.
2. CPSD.? This code is based on a digital
simulation of bandpass filters. The filters have
adjustable bandwidths, as opposed to the other
two analysis methods in which the effective band-
widths are determined by the duration of the data
record analyzed.
3. CABS.'® This code computes the autocorre-
lation function of the input, the autocorrelation
function of the output, and the cross-correlation
function for input and output. These are then
Fourier transformed (using FOURCO) to give the
input power spectrum, the output power spectrum,
and the cross power spectrum. The frequency
response is given by the ratio of the cross power
spectrum to the input power spectrum.
NUCLEAR TECHNOLOGY VOL. 10 FEBRUARY 1971
Kerlin et al. EXPERIENCES WITH DYNAMIC TESTING
IV. RESULTS
The large number of different tests (over 50)