-
Notifications
You must be signed in to change notification settings - Fork 25
/
raw.txt
11950 lines (11949 loc) · 705 KB
/
raw.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
9MA_ 11'$2 IO_t',_
O_.,.I e4s,1'.,3sol- ..4 I,'_ 'U%_" _L_L-'_-_J i _.~_A
UNITED STATES GOVERNMENT ' _'_--_-'_--: '. '--_._
R. R. [_P.G_,r,1
TO : FM4/Chief, Mathematical Physics Branch DATE: _A¥ g 7 1_
_OM : FM1/Assistant Chief, Mission Planning 66-FN1-64
and Analysis Division
SUBJECT: CSM orbit determination using the T,_ radar
Apparently it is planned to use the T.MMradar while that spacecraft
is sitting on the lunar surface to determine the CBM's orbit. I am
told that the radar angle data accuracy is so poor it will not even
be used3 the com_nd module's orbit determination will be carried out
with range and range rate observations. Considering the extremely slow
rotational rate of the moon, I cannot for the life of me understand how
it will be possible to accurately determine the orientation of the command module's orbital plane. I am told they intend to do this after
the comm_nd module has made a plane change, which occurs a couple of
orbits before TN ascent, and the results will be used to establish
orbital insertion conditions for the Y,MM launch targetting..
Could you analyze the situation, determining how well the various
orbital elements m_y be determined for the folaowing data gathering
1Periods: (a) one-half pass, starting from horizon to directly overhead, (b) one complete pass from horizon to horizon, and (c) two
complete passes from horizon to horizon. I am also interested in
being informed about the correlation of the various orbital elements;
for exampl% orbital period and orientation of the plane.
I may have this all messed up and perhaps they do not really intend
to do the things in the way I understand it, but I certainly would appreciate it if you would make a rather abbreviated, order of magnitude
type, analysis of this within the next couple of weeks in order to determine whether it is even reasonable to include such a program in the
T._ computer or alternatively if it mnst be m_wdified to make it insensitive to sm_l] bias and random errors in the radar data. I just can't
help comparing this to a single radar station on the ground where conditions are far superior and our results are not red hot.
Howard W. Tindall, Jr.
¢C:
(See attached list)
Bur U.S. SavingsBondsRe:darly on thePa3'ra,/!Savins PlanMAy 10Sl tL_l'ON
_. 0174 t#aut 14. r dj I_1- II.d_
t,m'rm._ srATrs C.OVEI_Nm_NT ' ': C'"--'iV_D
i¢,4mo ","_dum JUhi ,_[) ':":
t [{. ' r,::.:,:
R. R. RAGAt, I
TO : See list attached DATE: _ _ _o_
FRO_%! : F_/Assistant Chief, 1/issionPlanning 66-FMl-t0
and Analysis Division
SUBJECT: Spacecraft computer program status report
Tom Gibson and I went to MIT on May 25 and 26 with one of our primary
objectives to determine exactlb'what the progr-m schedule situation
was for the AS-50k (AS-207/208) spacecraft computer programs. Although we had a number of verT fruitful discussions with MIT people_
such as Ed Copps, Dick Battin: John Dahlen, and Bob Mallard, on this
subject_ we really did not find out what we wanted to know. However_
I am very encouraged to see the enthusiasm and vigor with which Ed
Copps is attacking this problem.
Ed has set June 3, 1966, as a target for getting out the first cut at
a Program Development Plan, which he is anxious to talk to us about
during the following week. In fact, he intends to come down then not
only to talk over the program as he has put it together but also to
discuss its preliminary output regarding the AS-20T/208, 503, and 502
schedule situation. Tom and I concluded that it would be better to
accept this delay than for us to attempt to do the job ourselves,
which is for all practical purposes the same thing he is trying to
do. Our main objective, of course_ is to find out what the pacing
items are so that m_ximum attention can be given to these items in
an attempt to bring what is expected to be an unacceptable schedule
more into line. Possible lines of attack are as follows:
1. Review and, if possible, reduce or simplify our requirements
involving the pacing programs.
2. Give top priority to programmers working on those routines
for computer access.
3- Authorize somewhat inefficient use of computer storage by
those programmers to speed up the coding process, even at the sacrifice
of deletion of other routines.
4. Reassignment of personnel to the critical areas even though
inefficient.
5- Reassignment of certain tasks from people working on the critical systems to other groups, such as AC Fdectronics, _C, or other
internal _rT units, etc.
Bgy U.g SavingsBondsRegldarlyonthePayrollSavh_gsPlan //It is not our intention to dispute MIT esti ates of time required to
carry out specific tasks, shortening the tfme to anticipate delivery,
by telling them to do a Job in two months which they feel requires
three; although, of course, these estimates must be carefully examined
to assure ourselves we are getting the correct picture.
It is to be emphasized that we must look at the overall schedule situation and not Just the program for a specific flight.. There are obvious
interactions end trade-offs that could be made between the program_
for AS-207/208 and those for AS-503 and AS-504. If all efforts to remain within the flight schedule fail and the progr_m_ do become pacing'
for these flights--as they very well could be--we must be in a position
to understand the trade-off of flight schedule delays of one mission
as compared to another.
A couple of items which Ed Copps did tentatively identify as problem
areas which might be influencing the schedule are the following:
1. Special guidance progr_m_ are required to eDable yaw steering
during the lunar orbit insertion maneuver, providing for plane change
in excess of 6°. Ed says the Design Reference Mission calls for a 12u
capability, although he doubts that other spacecraft systems constraints
would permit such great plane changes. Accordingly, he asked us to
re-examine this specification to determine if we could live with a 6°
plane change capability, thereby avoiding the necessity of formulating
and including these special guidance progr-m_.
2. Everyone at MIT seems to feel that the preparation of the Guidance System Operations Plan (GSOP) is the most critical of al] items
since so much of the work _.st be delayed until this final definition
of program requirements is finished. Accordingly, we will attempt to
take all possible steps to assist MIT in this work, including having
EEC people stationed at MIT to assist in the development of the GSOP
,m_, almost simultaneously, giving EEC approval of it. Also, it is
intended to work on the more critical pacing items first as ones are
identified and initiate procedures whereby official l_C approval c_m
be obtained on these parts as they are completed rather than waiting
for delivery of the entire package.
I'd like to make one final observation regarding the overall situation.
It's probably terrible; I really don't know yet. But it's my feeling
that everything that can be done to help has been done. We are reacting
to the problem areas as fast as possible; MIT has reorganized in what
seems to be the best possible _ay, and they appear to be getting things
on a businesslike basis, which up to now has probably been our worst
problem. __
Howard W. Tindall, Jr.GSA IPMI_ (41 Ct_ 101-11.$
IJNITED STATES GOVERNMENT
g, /,!
Jt3i. I 3!
TO : See list _// DATE: JU_iI._lgi_._,GAi, . .
FROM : F¥_Deputy Chief, Mission Planning and 66-_,12.-83
Analysis Division
SUBJECT: Apollo rendezvous guidance computer program options
The.purpose of this memorandum is to inform you of two special features
of the Apollo spacecraft rendezvous guidance computer progr_m._ you may
not be aware of since we just added them to the system.
First of all, you recall that both spacecraft--the CSM and the I,EM--
have rendezvous guidance systems. In order for the computers to determine what maneuvers are required to bring about rendezvous, the basic
thing each of the computers needs is the state vectors--that is_ orbital
elements--of both vehicles. Up until now, al _ thought has apparently
been given to the _ program. Since the CSM is supposed to be passive,
all radar data is used to update the LE_ state vector, based on the
assumption that the CSM it is tracking is in a wel 1 known, unchanging
orbit. Also, as the l,MFfmakes maneuvers, the guidance system senses
them and so there is no need for a pilot input to the computer to inform it that they were made. However, when we consider what's going
on in the CSM, or in the l,EM during a CSM rescue, this doesn't look so
hot.
First of all, the computer may really have a better defined state vector
for its mm spacecraft_ making it more desirable to update the state vector of the other vehicle. Therefore, pilot control is needed over which
spacecraft state vector should be updated based on the radar and optical
observations. This will allow the pilot to exercise his best judgment
as opposed to providing some sort of autonm,tic logic built into the computer program. Also, if the other vehicle maneuvers, the computer won't
know it unless informed by some external source, like the crew. For this
reason and others, it is also necessary to include in both the CSM and
J,_4 computer programs the capability for the pilot to input to the computer the fact that the other spacecraft is making a maneuver such that
it can be taken into account in maintaining the best current state vector
of each spacecraft in each spacecraft's computer.
Accordingly, both of these options are being provided; that is, the crew
wil'l, inform the computer which spacecraft state vector should be updated
and he shall also input to the computer all necessary information when the
other vehicle makes a maneuver. Associated with this latter capability
is the need to assure that the observational data is not improperly used.
Therefore, in order to avoid complex and sophisticated computer logic, we
have decided to again utilize the crew's capability to understand the
:lOl_lOII BuyU.S.SavingsBondsRegularlyonthePayrollSavingsPlan /22
situation and control the computer processing in tho following way. The
pilot will interrupt the computer program at the time it is planned that
the other vehicle will make the maneuver, _hich will cause the computer
to reject all tracking data until the actual _V of the maneuver is input.
He will have to get this information by voice from the other spacecraft
after the _neuver is executed_ of course. This procedure will assure
that the quantities which are input are the most accurate available and
should assure that the observational data is used properly.
Howard W. Tinda]9 · Jr.
Addressees:
CA/D. K. Slayton l_Ml_/R. P. Patten
CB_A. B. Shepard FM/Branch Chiefs
CB/J. A. McDivitt FM2/T. F. Gibson_ Jr.
CB/E. E. Aldrin, Jr.
CF/W, J. North
CFTC. H. Woodling
CF/P. Kramer
CFTC. C. Thomas
CF/D. Gr_m_
CF_J.B.Jones
·EG/R. C. Duncan
EG2/D. C. Cheath_m
wOS3/K.J. Cox
PA/J. F. Shea
PA/W. A. Lee
PD/R. W. Williams
PD4/A. Cohen
PM/0. E. Maynard
PM2_C. H. Perrine
PM2/K. L. Turner
FA/C. C. Eraft, Jr.
FA/S. A. Sjoberg
FA/R. G. Rose
FC_J. D. Hedge
FC/E. F. Kra_z
FC/A. D. Aldrich
FC/M. F. Brooks
FC_G. S. Lunney
'FCIC. E. Cbarlesworth
FC_P. C. Shaffer
FC/H. D. Reed
FC/J. C. BostiCk .
_/!i P' Mayer
V. Jenkins
R. Huss
F. Dalby
F_3/J. P. Bryant
FM:HWT:psVrll_b IVKM [4%11 JV
MAY It&,_ [OiTlOII
-,j
UNITED STA'ITS GOVEI1.N/XIENT j._'_
' Memoandzlm
_'o : see li.,_t DAXE: 'jU£.fl_-_l_ ,,4
FRO.X! : F_[/Dcputy Chief_ t_.issionPlanning and. 66-F1_1-8_
Analysis Div_ sion
SUBJECT: Capability to do orbit navigation in earth orbit will not be iml01emented
for AS-207' or AS-504.
MT current_ has plans for suppling a number of different modes for
using _eir basic orbit deter_nation progr_. (_T call s this process
"navi_tion," so I wi_, too.) _ese modes differ in that there is a
varie_ of t_es of obser_tional data used during different _ssion
phases.
In our attempt to si_li_ the AS-504 spacecraft computer program, we
are reviewing the overa_, si_ation to deter_Mne that no _]_necessary
modes are inclu_d. For example, there is no need to perform orbit
navigation while in earth orbit for the lu_r mssion or any recog_zed
contingency situation. _is parti_r orbit _vi_tion mo_ was to
utilize star/lan_rk observations along wi_ other earth orbi_l service routines a_ special initialization capabilities to determine the
spacecraft s_te vector prior to the translunar injection_neuver ......
Since this progr_ is not required for _e lu_r _ssion, _T wi_ be
directed not to include it in the _-50_ _rogr_. Since we do not intend to _plement any pro,ams especialqy for _-20T, u_ess directed
othe_ise, it will be _opped from the _-207 computer program as we_
which means that the CSM wi_ not have the capability of deter_ning
its o_ orbital elements during that _ssion.
Accordin_y, it _i_ not be possible to satisfy 2_t mission objective
as referenced in TRW document 2132-H008-R8-OO0, "Mission Require_nts
for _o_o Spacecraft Development _ssion _-207/208_" _ted _rch 7,
1966_classifiedC°_idential'__XA3x __ \
Howard W. Tin_ Jr.
'_'_- Buy U.S. SavingsBonds Regularly on the Payroll'SavingsPlan /3-_AY lt$2 ll)lliOll
UNIT]':]) STATJ'S GOVEI(NMEN'i'
Memora zdum /' -3[!!l''_ '! ,a'::'_ ,'
R. R. [RAGAi,I
TO : F_I4/Chief, _Mathemat_cal Physics Branch DATE: JUL 8 'B66
PROM : FM/DeputyChief, Mission Pla_ning and 66-Flql-85
Analysis Division
SUBJECT: Determination of relative CSM orbit
Jim, this is just a reminder of conversations with you and k'm_labout
a job I'd like your people to do. In th£nking more about this orbit
determination task wherein the I,EMdetermines the CSM orbit while sitting
on the lunar surface, I wonder if perhaps MIT has lost sight of our primary objectives, thus leading them to the conclusion that they should use
only range and range rate data.
The only purpose of this orbit determination, as you recall, is to determine the orientation of the CSM's orbital plane for use in targeting the
T.RMascent guidance and to select a lift-off time which mnst be within a
few seconds of optimum. It is not to obtain some sort of a precision
total state vector of the CSM. BaAed on these ground rules, I just can't
believe that the angular radar data, even with relatively la_ge biases,
·cannot be useful if properly weighted, and I would think that it would
provide a great strength or reliability to the process, which I wpuld
consider mandatory. That is, we are much more interested in assuring
ourselves of getting a pretty good answer all the time rather than an
excellent answer some of the time.
The questions to be answered are: should we or shouldn't we use the angular data, even with large biases, and how do we take ,mxinmmadvantage
of our external knowledge, such as the CSM's own orbit determination
(though it's not with respect to the I.MM). Don't forget, this data
processing anst be entirely automatic. The crew will never have time
to learn how to operate all those statistical filters, etc., whatever
they are.
w_._l said he would start something here, but I wanted to make sure you
were aware of it and concurred and, in particular, would give it some
of your own personal attention. Perhaps these remarks belong at the top,
but I'd just like to reiterate that as much as I distrust it, I'm afraid
· our best source of relative orbit determination for this particular mission phase may be by the T.MMradar data. I doubt if the CSM will ever
see the T.EMon the surface, at least we'd better not count on it, and the
I_FN tracking certainly can't figure out where the T,Eb{is. Our other
source is the G&N state vector T/M at B_touchdown, which is probably ·
the best, if the antenn_ are pointed at us.
Bt/y U.& SavingsBonds Reg_Iarlyon the Payroll Savings Plan /g
_lO--IOlSM FP_ (41C[_ Io1-1_$
t.' t2-z"" F2'-;\ ;-'-;.-,
UNITI'_I) STA.TES (;OVERNMENT · ,._ _,.,_,: '..- t..T.
R. R. R_,GAi',t
TO : See list _-( DATE: JUL $ 1966
FROM : F_,_Deputy Chief, Mission Planning and 66-FM1-86
Analysis Division
SUB3ECT: HO special program available for targeting the CSM plane change in
lunar orbit
As I understand it, it is currently planned to make a plane change with
the CSM in lunar orbit within the last several revolutions prior to L_4
ascent. The purpose of this maneuver is to optimize the sharing of maneuver (propulsion) requirements between the CSM and the T.RM.
This memorandum is to inform you that there is no computer program current]j planned for either the CSM or T.k"Mspacecraft computer to carry
out the targeting for this CSM plane change. In other words, in finalizing the onboard computer program requirements for the AS-504 mission,
we are assuming that the targeting for this maneuver will be carried out
by some source external to the computer: such as pre-missionplanning in
the form of crew charts or from the MCC in real time.
Of course, the programs needed to execute this maneuver will be available,
although not provided specifically for it.
· · ' _ Jr._
i_,,-,,, Buy U.S. SavingsBondsRegularlyonthePayrollSavingsPlan t 7M;morandum /._c. ....
TO : Seelist DATE:JUL
PROM : F_Deputy Chief, Mission Planning and 66-FM1-89
AnalysisDivision
SUBJECT: LMM radar angle bias correction
As you know, the rendezvous orbit navigation process involves updating
the spacecraft state vector based on the spacecraft radar data. However, the._adar apparently has _nncceptably large angular bias errors
for soniereason. Instead of fixing the d_mn radar_ someone decided to
include in the LEM spacecraft computer program the capability of computing these raS_v angle biases at the same time the spacecraft state
vector is updated. Once these biases have been determiued to the computerts satisfaction_ they are not updated further; that is) they are
assumed to remain unchanged thereafter.
There is a contingency) however_ which would cause them to change, so
I'm told_ and that is if the T,_ were to undergo loss of pressurization.
It had been PIIT's intention to provide an option in their rendezvous orbit determ_uation program to reinitialize the computer such that it would
redetermine the radar angle biases in this event. However, in line with
our c_%paign to simplify the computer program) this option is being deleted_ which means that, in the event of spacecraft pressurization loss_
the radar angle bias may be in error by some fraction of a degree. This
does not disable the rendezvous guidance system, but rather may cause
some loss of efficiency in the use of propulsion fuel. Just how _,ch
depends on when it happens, of course, but the m_ximnm extra cost is
not expected to exceed about 50 ft/sec. We'll get a better estimate
of this cost and m_ke sure it's acceptable.
Ed Lineberry, how about you getting that done. In the meantSme, we're
telling MIT to take this option out imless we're directed otherwise.
. Howard W. Tindall) Jr.
Buy U.S.SavingsBondsRegularlyonthePayrollSavingsPlan /
SOlO-lOll __ _ __MAY 1_$2 [_111ON
UNITED ST-VrES GOVEKNMENT i-'[_2C ,_ t\/_- D
'zorandum ;_ il ,/. _t.,
R. R. !:_AGAN
TO : Seelist DATE:JUL18 1966
FRO,_! : _-_Deputy Chief, Mission Planning and 66-_R41-94
Analysis Division
SUBJECT.: Rendezvous terminal phase guidance program in the Apollo spacecraft
computer
On July 7, 1966, a t.eam of _C and lOT "experts in rendezvous" (including Paul Kramme]_;Ed Lineberry, John Dablen, and Norm Sears) met
at MIT to discuss and review the preliminary _aidance System Operation
Plan (C_SOP)which MIT has unofficially distributed, covering the terminal phase and External Av programs for the AS-207/208 mission. %_ais
meeting was sort of a mile-pebble in the accelerated program development sequence we have established in an attempt to get all this business
on schedule, gIaatis, we sa-eobtaining bits and pieces o.fthe C_OP as
they come off the _T press rather than awaiting receipt of the formal_ly
published, final document.
It is our hope that, by reviewing and commenting on these pieces as
they.become available, the GSOP should be virtually acceptable without
modification on the date of its publication and should permit the computer program development to proceed n_ch more quickly than it has in
the past. We had previously discussed these mission programs and our
pilot in!mat and display requirements for them in detail a month or so
ago with MIT, and the pieces of the C_0P I am talking about here reflected that input very well. Therefore, most of the discussion was
for purposes of clarification to assure a firm understanding on both
MSC's and MIT's part as to what this program was really going to do and
how we were going to operate it. Basically, very few modifications were
considered necessary.
In my opinion, this meeting was highly successful; and, since ttZese
processors--the ter__"nal phase and External W--are the most signifil
cant new requirements and the most controversial of the mission programs, I feel we are probably over the htump as far as defining the
program for the AS-207/208 mission.
i would like to point out here the two items given the most attention
at this meeting since they serve well to describe the character of the
terminal phase rendezvous guidance philosophy:
1. One of the capabilities of most interest which we have provided
was the display of range, range rate_ and the angle the spacecraft X-axis
makes with respect to the local horizontal, it was decided to m_ke these
three quantities available a_ crew request at any time the data was
available. ('Yr_isstuff is used for ca_ying out the crew backup proce-
_ d_u'es.) Contrary to one of .,myprevious re-oorts, these quantities will
·_l_
B,O`U.S.SavingsBondsRegdarly , onthePayrollSavingsPlan / ?2
Al! be computed based on the current best estimate of the two spacecraft
state vectors. (We had previously expressed an intention for the computer to display raw radar range and range rate in the T.k_4). Our action
in this case was based on our desire to make the CSM and T.k_4computer
programs as much the same as possible, and, since the raw rad_ data is
available on what is said to be a highly accurate analog display in the
T.k_4,we have not really lost anything. In order to make this particular
feature of the program as independent as possible from the automatic
guidance system processing, we have divorced the display of these quantities from the activity associated with the pr_,_y guidance system to
the ,.l_Xi_m extent.
R. Based on Gemini experience, the crew has emphasized that there
is no requirement for automatic execution of the braking m_euvers by
the G&N system. As previously reported, it is felt that this task can
he carried out Just as we]l, if not better, by the crew if they are provided the proper information; namely, the range and range rate data.
At least this is true in the case of the nom_ual mission and most contingency situations, and we want to take advantage of that. However,
there are occasions when auto--tic control of these maneUvers by the
G&N m_ght be mandatory. For example, visual acquisition is required for
the crew to carry out this task, and under some abort situations lighting
conditions c_-nbe unacceptable. A3.so, there are abort cases in which
the closing velocity is too high for effective m_uual control. Recognizing that procedures are available for utilizing the remaining computer processors to cai-_y out the G&N controlled braking maneuvers by
proper pilot m_nipulation of the computer, we deleted the requirement
for automatic computer logic for this task. _e point is, we felt that
there was ins_ufficient justification to carry out the extra programming,
debugging, verification, and documentation, as well as using some 50 to
100 words of precious computer storage, for a program which was not
needed_ except in rather remote contingency situations, as long as procedures were available to handle all situations. And_ they are.
The final GSOP shall reflect these characteristi6s; otherwise, it was
accepted pretty well as is.
In the course of our discussions, I learned some rather interesting things
about the command module which I must say didn't impress me very favorably. In fact, I really wonder (i.e., doubt) if it is possible for one
crew member to carry out a rendezvous in the CS/{. For ex_w%_le, the only
observational data available to the computer is from the sextant, and
that requires manual tracking and inlrdtof observations into the computer.
(The I.k_4has automatic radar tracking with its data available to the
computer as it periodica]ly requests it.) And, of course, in order for
the pilot to use this system, he has to be down in the navigation area
of the spacecraft, which means he has to quit making observations somet_me before any SPS maneuver to get strapped into his seat. On {op of
that, the sextant apparently can't be oriented along any of the major3
spacecraft axes, which makes it necessary to orient to some attitude
not consistent with making }{CS midcourse _neuvers.
I'll bet that when we finally get a crew timeline on a CSM one-man
rendezvous_ he has to do it without any observational data available
to the computer after about 15 minutes before TPI. If my guess is
right_ in effect we have provided practically no CSM G&_ rendezvous
guidance system, and thus the Job will end up being carried out pretty
much using the crew backup procedures. Boy' __· , .... ,... . .-
. _ :,2' ' _t'.: ._ .4_ ~; _ . . ?
-·L y55,_._'"':_W: :'5'_'.:J! ..... . ,L ' ' ·:_*'_":·
"'_ "'"_':' GO " :'' :_'.,-i,_
i "i.':St
! _t · *l
_:::';..3'
.' . _:-,,- ;_: ....
.. 7,,.:,. · ._.,,.
.
,.%_,.
'. ,.'..*' ':
· _,F-?_-.,_.*_. e:_-._.:_ .._ _ i5 ?i,-'::' ,, .. · r ," "
_' :'_ "' ':':F'-:'' "' ' ?" ; "''':''"_'"_'';_"' "_: i _ _'' ;_ ' ": ' '
:,.;g_ -: ,! :.:'t : o '_"'::.._;: t .Si_'_ii_i,t , , .. ._?.: . :-_ .:. ? nar'z: AUII$ 0 1_86
· .'.,- . _..; - .. ,
; "'FROM :.i_/Deputy Ohtef_ Mission Planning 66-FMl-lO0
', "and AD,_ysisDivision _-
· , ... . · .' .
"$UBJEOT: Notes regarding the AS-207/208 OuiSence Systems Operation Plan (GSOP)
meeting with MIT
During the week of August 15, we held a review of the AS-207/208 Guidanc_
Systems Operation Plan (GSOP) at MIT. Some things interested me which
-, . I will pass on to you here. I will also include some of the more significant _ecisions--that is, direction to MIT--that were made at that
t_,_-. -.
· 1. It is currently p!_nued that the astronaut will freeze the ren-
&ezvous maneuver sequence by a manual input to the co._puter. Tais will
bedone at about twelve minutes before each of the maneuvers, including
the TPI maneuver. It serves 'to prevent new observational (e.g., radar)
data from changing the maneuver he intends to ma.k__ next. It does this
!t by causing the computer to completely ignore all new observational data
obtained between the time of his signal and the maneuver. In fact,
: whatever data is collected during that period is never Used, even after
the maneuver has been executed.
· Logic is being introduced into the rendezvous navigation program
' (i.e.2_'the orbit determination used during rende_¢ous ) which, in effect,
edits the observational data automatically. Specifically, if the change
in both the computed velocity magnitude and the _---_mputedposition of the
spacecraft is less than some pre-established amommt due to the processing
of new observation-I data, that data is adjudged _o be good and is automatically included in the solution. If the change, in either of these
quantities is in excess of some larger pre-estab__ished amount, the data
is not accepted (unless thecrew permits it), an_ a program -_arm light
comes,on. If the change in those quantities f_ ·between the'se two
ltmits, the data is accepted and used, but the _=,_m light would be lit.
: _. MIT was directed not to provide a mode Car utilizing Alignment
Optical Telescope (AOT) data in the rendezvous rr_,_zigation. This had been
ten ,l_ativelY'muggested for use in the event of a =_ndezvous radar failure
: ' ·i ,l_ut,based: on the likelihood that the AOT data _=LTLd not be of any value,
·ii .. ;:_:..-. ..'itwas . decided ... not to complicate the program to _zmit its use.
[:"47':/Xte _o fear of some ambiguity, the compuOi_r pro_z-_m is designed
'to reject ra_,_ data when. the estlm-ted range to, ,_ohetarget exceeds
::' 7.'- ' ,lmoe ii._..:'._._.'
.... :": I,,%.' :: _;;-e. -:'
} '_ ' _t.,_ '{mI' ',-..... . Buy _,_7.-_avh_gsBonds .=,.,.:RegularlyOnthe Payc.-":SavingsPlan ¢7f"
.22.' '·7'_: .-_... _m.t _ *_--, _ _v._-_ -TT·'_._ '_ - ,._, ·, ,,, _ -_·_._-.._._ ~ · _4 , _, . ,. . . .
_._ _,., -___,,__.._ _.a_._¥. _ ,: : :.,·_ _._.., :__ ......_:· _ - ? _ _ r?._, _; _._:__.
_i_;_,_ <_ _23 .__ _ :_'_ _ :·_;_-_- . ; :: · :,_% .,__.;_ _:
c_,-_"_*_,_ ' ';,-'.._._..._._'",._; _: ', _' _,_ :..,_ _.._',_,_r.-"_ ._ _.'-,. ',_i_· ',,_,j_-_.,'*'.: ,. : ' · . : .x , '.-4 ·'-_4.'_"__".--.-_?_- ,_"?
.._:;.,G'_i .._ -..'._-_._, ., .:i.!_'??,_./O- _e 'O_'}4Z_' s, _'_S_t0_6.2e$_'_esO],ye_ :'_s whether or not an :'
se asa lunar ao si- '
'].'::,? ._-_ ":'i! _!.:":??7:_.:'_'.'?'_he_'_'ght crew peoDle ' have 'requJested that the display of dura-
_'.'_.:i:_/:_;:...._':_J:_:;t_Ocn:O_ time' _.. the terminal _hase between ._ and _PF be in seconds.
:: :.:: ' -.'._,i Sin e ·.this id ,not one Of. the standard t_. display formats, MIT .was
il" ..' :_ . ......':.'-_directed _o'ret_in units of hou_s.:_nutes.seconds as they proposed,
-: -;....unless the crew has ren_y good reasons to provide this new format.
Tom Hardy has the action.
"7. As usual, there was a discussion as to the reference to be used
in the display of altitude. MIT was directed to compute and display all
spacecraft altitudes referenced to a spherical earth with radius equal
: _ to that of the launch 10ad. This reference was determined to be best,
although not l_erfect,for rendezvous missions after what seemed to be
· . endless months of discussion. Coordinates of landmarks used for orbit
determination, however, will be referenced to the Fischer Ellipsoid.
8. As a result of the crew's dissatisfaction with the fixed headsdown attitude forced upon them during SPS maneuvers on AS-204/205, MIT
proposes to eliminate that constraint in the AS-207/208 programs. The
:_: computer will display a "preferred attitude," which is heads-up, but
wild.not automatically orient the spacecraft to that attitude. As I
understand it, it will hold whatever spacecraft "roll" attitude it happens to end up with when the thruster axis is properly aligned. It is
possible for the crew to manually change this attitude if it is undesirable by deactivating computer attitude control, then manually changing
the attitude and reinitiating computer control, which w51] then hold the
new attitude.
_. No mi_t,.,mimpulse capability is to be implemented in the LGC
since there appears to be no requirement for this, whatever it is.
10. As usual, the question of navigation (i.e., orbit determination)
in earth orbit came up again. We previously had directed MIT not to inelude this capability in the A_-20T/208 mission programs since·it is not
required for the lunar mission. However, they, and some _C people, feel
it is desirable to provide this capability in order to obtain further
experience with the process prior to going to the moon. Thus, this is
still an open item. It has been agreed, in any case, that orbit deter-
/ . ruinationusing unknown lanSm_ks would not be included, and, although
the provision ts being m_de for star/moon horizon measurements, they
will only be used to obtain CDU angles to be transmitted on the downl_nk and they will not be used in the navigation program.
Norm Sears estimates that the orbit determination process should -
· ' be comp!eted within about,ten seconds of accepting an observation. Also,
. he would liketo establish a procedure whereby data points are obtained
i "' at the rate of about one per minute.
_,..._ ;_'"' .. .. · ,. r_-._`
" .2?_. :::":_ ll. _ I_IT was directed to delete the guld_nce reference release (GER) .'_
_ _. · _ignal,!its function to be replaced by the lift-off signal. As I under- _
.'_ _? _ stand it, there is some controversyover this which Aaron Cohen intends
'&! to resolve at !_C.
: 12. One feature of this program which !a_rtic,_larly disturbs me, and
many others, is the tremendous amount of work the astronaut must perform
to use the com_uter program. Of course_ much of this comes about as a
· result of the trade-off to provide mission flexibility by giving the
crew the capability of controlling what the coml_.ter is doing as opposed
to having it perform automatically. Another specific example is the
amount of data which must be input to the computer prior to making a maneuver, including such things as spacecraft weight and inertia_ engine
trim angles, tailoff, spacecraft configuration (docked or undocked)_ 'and
level of rate response to hand controller inputs, it _'ould certainly
be desirable, if possible_ to eliminate as _uy of .these inputs as possible, either by putting them in fixed memory--if that is a reasonable
thing to do--or by deleting them altogether. T_cr_- is some question in
my mind as to how accurately some of them can be determined by the crew_
· and we may find that there is no significant advantage obtained by up-
·dating them. _is will be followed up.
I'm sure there was something else interesting tha_ .came up there_ but I
don't remember it right now.
Howard W. Tin_3, Jr. _\
. ,, ,.
· L_ .-_
·-' .'" -'_' J =_T-_"_, .'_ i5:/: :,i,"._:. '.4 ·'. "-"- '.':74_. _',, ; : ,:_',,": -'-:. - '. _. ' ...._ _'
-_'-z_,, .<" _'"' .,Im_l_lew-h. t:. '-· . _/_ _ i__
_-:_,:,.._;<.,::....._',,r, ."' .'-', :' '--': ' .' " : .- _-C'-'!",/E',-.,'
- "-'...-. '.:- : ':.zl,'lemoranaum
_':_.' ''::'_%':-'_?.' '.7..¥-:_' 2; ' SE, u _._.....
:...,':.....,:_.. .._0: .3 .' See ...... :_st _,._., '_.._.,_':; ....'_,_7. ., .._' ·...... :_. '" '........ : .... :;._...:,..:::._,_,_,_
- '-'._ 7"?':' ' * ' ' ? '_
· . ,et
:.. _OM ' : _/Deputy.._ef, Mission Pl_ing ,_a 2' 66-FMl-103
.' Analysis Division
SUBJECT.:AutOmatic rendezvous braking maneuver
_':,'
As you :*now,MIT is currently designing the command module mud lunar
module computer progr_m-_ without provision for automatic braking
maneuvers. There has been some thought to reversing this direction.
However, Don Cheatham, Aaron Cohen, and I agreed today to proceed as
we are for the AS-207/208 progr_-_-_--thatis, do not provide automatic
"' br_g maneuvers in the computer programs--since we are fairly sure
that this capability should not be required for that flight. We will
review this decision later for the AS-50_ program% based on .experience
gained during the AS-204 mission and from crew training and simulations,
after more cmzplete crew ·procedure} are defined.
Howard g. Tind-!l, Jr. I,
: . .
- - · . ...:
.....
..... -:,>:; . : _.' -
·. ._°.] BuyUS,SavingsBondsRegularlyanthePaym__SadngsPlan
-- 2.6-·'_ .- .;. _o. _'L-' _: °_._ · _4_ -_:{_y.' _ ._ ,__A_, _,, _ ,__ ' _ ' '
· · .._X- _ -:..,? .... , ..,,,-, ,_ _, -_ -_:_-._*_. _ ._ .. ,-
.-- _ ,,? ._ _'
':'A_'_:i%:._'-,_ ·,":,,._: ._,i:',_:.......-:.. '" _-_:'5_?'_' ':
·:'¥ ' ? ' ?";:'':' "" '!
· . _, °.:_ .._.,;.._ _.-ro,.:..: . ._.-$:_ . .. ,...... _/
ci : _. _ ._--_._-;. -_-%:- _... ·--._._ , ' ..'" . ...' :._
tUl' "'
F
_:._·_,i_,' ..4C.._.,:.._.i :,.-....... ,'' .,.'_ '_':-': ' 4 ' - -,.'..
_gO_ : '._:.Deput_:-_hief, Mission P_---_ _g :; 66-FMl-lOh
4_,, :_.Gnd:"AZ_F_is Division ,._
SUB3ECT: S_US of'"._e 1_ module "quick return" guidance cal_bili_
·_ais note is in response to your query regarding the "quick return"
tcapability being provided in the l_mar module (LM) for aborts during
"".thelunar descent phase. As you ree_ I reported deletion of a pro-
: '' k _:_._ in the T.M computer for generating coefficients to be used in an
ml_rt Dolynomlal to retarget the IA{ Dowered flight to provide a direct
:intercept rendezvous trajectory. You asked how far this work had pro-
-Eressed since you felt such a capability would be "comfortable."
In answer to that question, MIT Informed me that, whereas the concepts
w_re well established, there was still a considerable amount of work
required to complete this particular program. Furthermore, we have
also deleted the direct ascen_ launch guidance_ which is a necessary
'companion Drogram. Certainly of more interest to you now is_ what is
..Ouz' current capability. ':
· 'k
_e program is being written such that abort action by the pilot durin,;
Dowered descent will cause the guidance to retarget to the stan_nrd imm
·insertion orbit. Incidents_y_ it is necessary for the astronaut to
'select which engine, the Ascent Propulsion System (AlmS) or the Descent
Propulsion System (DPS), is to be used, depending on the situation.
In any case, following insertion into orbit, the crew has two choices:
either to proceed with the concentric flight plan, or to use a processor' which we'have retained for Just such situations as this, whereby
the crew may .?btain the two-impulse Lambert solution for rendezvousing
' with m_m_m AV--essenti,lly a _t_ect intercept, in effect, the latte--
-: l_rovides very nearly the same capability as we have deleted, except thvt
· _ the maneuver must be carried out in two steps _ith some delaY--say, fi--e
or ten minutes--between them, as opposed to a single maneuver.
. If the concentric flight Dlan is chosen, the time between the abort
action and rendezvous would be 'about 2_ hours with the differential
altitude varying between k2 nautical ?les above to the standard 15
nautical miles below the CSM, depending on whether the abort took place
· . '. 1._nediately after initiation of the descent maneuver or at the end of
the hover. The "direct intercept" approach would take about l½ hours
·' ibut iS only possible prior to initiation of hover since after that tim._
'_''' the intercept trajectory, _*ort-n-te!y, also intercepts the moon--fir_t:
Actual _rocea,_res have to be settled, but I feel we're in pretty good
; ' _hape here.
'_.5 '
-.., B_,,,,U-$Savings . B_ Regularlyon the P_,?ll SavingsPlan .:., .,..._ ,_.. ¥1_:,.k_';?,'_._,._ ;_
_'_ ".;:':..-,,.-?_; -_¥_{, _' _&?..<_.:_.,..'L_.j; _.v "-__-" .. .;'' ' .'." ._f'_ .... ., */> "':_.f':'-'' ., ._:.v;..,._ .. ',:,' "_
- .. t' _°
':"_"_;",'¢/';i,"' :';' '_:i!:_L._':_:'_;:_ _'i:!or:exaaple, iff an'a_t:_ccurs-':'e_r_Y in descent, the. LM _111 be _ear . ..... ,. :.
.-; .(_ ',.>. _,::, ._:._0,'000 .feet · with orbi_._ _re_oc!ty.. ,._e current i_serti_n altitude is .. "'
,_ ,.. . } ·
·*' ..i'_ -'.'?'i:?:-_._0,000 _eet. _hua, the s_acecraft would have to _ke a large altitud._
.... "._ "'_. :.':;'': ._han_ with little 'increase tm velocity, which would obvious_y'de___d
_-:; :i_'_-.'._Some rather wild gyrations of the sl_acecraft--bothhiE_ly undesirable
· . :- ": . ' \
· _ H_w_r_ W. Tin_ll, Jr.
,I cc-
(See attached llst)
.-% .
- ° , .
- . . :c"; ': k J a.j<-': , .;_.:,.',-
.,.: .. - . i_ ._'. .-,,_.._.. ?
·I :o.'< ' i.'_ _: _
["_.'
. · '_.?-41_
._'<"
c._?
'_'
' _ - - :
A . ?.,.k,>_.' ........
·! . -. ,,;:_;._ :-,'_:.'._,_;,.._ - .. , _ .
R [ * _ Ii 4 '_ ..... 1_ i_ 'I ; I _. _ ''II I i .... i : ' I I I I I 1
:' :' ':"_?;-_;'4_-_:'>.''_'._:__·':' 'i', '' :' ; - ' '
. .. ,- . _._,,._;_,_..¥. ::_,_'-.?..,_ _,-. :...
.... :· , ' ,- ¢_ -_a- _f': '-. '' .... . · "
- _i-.. -' .?_,'_j_";',__:,_',_.... _ ' :.....
·. ._ -. :/._ '-...,. _ !;_.% _ _ ...... .... .. ..-- .
· :_' · - ; '- .i_,._ ..... _.,_... . ,' .... ° -.';.
.
1
_ ,:'_ · ::_.._,_ ._ .... :. · -.: .' ....,; ,.-' · ' i.-'
.....
_- -.. <.._j a. .;; _,y_ '-._;¢ .°'}.:[._C_,-... - · , .... _ .k...-':.k_-_al "_ · .: __ ___L '.F
MA? 19b_ ,_TJ_
o '_ GU _,f_k_1t 41gr_3 IOlo11,6
UNITEDSTATESGOVERNMEN'f _
TO : FA/Director of Flight Operations DATE: $EP 1 O _$
_-I_oM : FM/Depu ty *Chief, Nission Pl_ni_ and 66-FMl-107
Analysis Division
SUBJECT: Alternate rendezvous technique - mission planning status
Since our meeting in your ofz_ice on the stable orbit rendezvous_ Ed
Lineberry and i have met on a number of occasions with other interested
people in an attempt to lay out a schedule of work needed to arrive at
the decision as to how to go on 278 and subsequent missions. This note
is to let you know the things we (I_C) intend to do and when we ex!0ect
to get them done. As you will see, most of the work is being done by the
Flight Crew Support Division and GuiS_nce Control Division since the most
significant difference from the old Concentric Flight Plan (CFP) involves
the termiu_l phase of the rendezvous.
1. Paul Kramer_ FCSD, has assigned a task to McDonnell Aircraft Co.
to perform man-in-the-loop s_m-l_tions of both the stable orbit rendezvous
technique and the _ with comparable approach velocities. S_lation of
both syst_m.q will be initiated with the transfer m_euver. The approach
velocities wi 11 be equivalent to the CFP with differential altitude varying from about 5 to 15 nau6ical miles. All failures modes w_ll be investigated. It is intended to start this three-week effort on about September 19.
2. GCD has two studies going. The first is an evaluation of the
CSM optical rendezvous gnis_nce system to determine its accuracies and
performance when operating in a stable orbit type rendezvous. The prime
objective of this study is to determine the magnitude of the dispersions
to be expected in the on-board computed _euvers starting with the
transfer from the stable orbit point. It is anticipated that this n_n!Ysi$
will be completed by mid-October.
B. The second GCD study concerns the braking phase. Ron Simpson is
in cbnwge Of this investigation which is prim_ily an expausio_ of one
previously carried out for higher closing rates. He intends to start
with conditions corresponding to CFP differential altitudes of between
5 and 15 miles. As I understand it, his m_-in-the-loop $_tionz are
usua]_y initiated at about a l0 mi_e range. The purpose, of course_ is to
determine if there is some preferred closing rate going into the braking
maneuver. These runs wi_ be performed both with and without a cockpit
display of range and range rate. He expects to _tart this analysis in
mid-September with the results to be available early in October.2
!
4. We are doing some things in MPAD too, of course, but they are
not as extensive as I indicated they might be during our meeting. Ed
Lineberry's people are carrying out analyses a_m_d at selection of the
optimum transfer angle(_)and trailing displacement for the stable
orbit rendezvous technique. These two parameters are probably interrelated growing !_ger together to keep the closing rate meaningIlul in
the face of dispersions. We still expect the preferred trailing displacemen¥co be in the order of 15 to 20 nautical m_es. At present the
two prime candidates for _ are 292° and 330°. 292°, you rec_1%, has
the advantage of providing the same approach conditions - primarily
mini_ inertial line of sight rates - as the CFP. This was the transfer
angle used on the Gemini XI re-rendezvous which, in effect, checked out
a ground controlled (perfectly:) CFP with braking without a ra_ s_m,,1-tlng a differential altitude of 5 nautical miles. _he 330 ° figure was
jointly selected by _C and MAC for the Gemini XII re-rendezvous based
on lighting considerations and time available to m_ke mid-course corrections. _e objective was to !orovide as large a value of _as !_ossible
while avoiding the unique problems associated with a 360 ° transfer in
the presence of out-of-plan and altitude dispersions. (Incidentally,
McDonnell is canopying out a considerable amount of _ork both in terms
of dispersion a._alysis and the preparation offlight crew rendezvous
charts. N_ch of this work will be applicable to our _effort. )
5. In addition, the mission planning for the Gemini XII re-rendezvous is being constrained as much as possible to duplicate the AS-278
initial CSM rendezvous conditions. In particular, we are trying to
duplicate the ground tracking orbit determination capabilities as well as
the relative motion trajectories to simulate the stable orbit rendezvous
technique.
6. As you may reca19, we originally est_ted development of ten
reference trajectories _as required to provide information for the big
decision. We have concluded that it is virt,,_lly impossible to do that
much work in a reasonable length of time, regard_less of how we redistribute our manpower. However, RAB is developing a reference trajectory for
the nominal lunar rendezvous ass,,m_ug an on-time LM lift off. It w_19 be
a two-impulse, minimum _ V trajectory to the stable orbit position. Once
this is completed they intend to perturb the LM insertion conditions up
to the 3 Si? performance of the Abort Guidance System and the Ascent
Propulsion System in order to determine the effects of these dispersions
on the Delta V. _eir work w99'_be based on the assumption that there I
is a perfect knowledge of the situation at the time of the maneuvers and
that they are executed perfectly. Ed anticipates that this work wil 1 be
completed around the middle of October.
Fin_lgy, we are issuing a program change notice to MIT to provide an
offset rendezvous target capability - trailing position only. I should
point out _-t some resistance is expected to this program change,
primarily from the FCOD since there are m_y other capabilities they give
much higher priority which we have not agreed to implement so far. I am
not certain how ASP0 w_l] react either since, as I u_derstand it, _W has
reported to Joe Shea that they see no significant advantage to this
t echni que.
£?-,% I
3
Also associated with _1] this, the _-207/208 Reference Trajectory is to
be issued on about September 23. As you are probably a_a_e_ there are a
large number of unresolved areas on this complex _ssion pr_i_ due
to the uncertainty associated with the AS-206 mission; thus, the quality
of this Reference Trajectory is going to be questionable in any case.
Unfortunately it will continue to show the initial CSM active rendezvous
as a CFP type with a differential altitude of 20 nautical miles.
Although it does not correspond to the planned documentation schedule,
I really expect another Reference Trajectory will have to be issued
prior to the release of the Operational Trajectory. Therefore, if we
change to the stable orbit rendezvous, that will either be reflected in
the new Reference Trajectory, or we will issue an addendum of some sort
such as an internal note documenting the change.
Chris, this has been a tough problem and, believe it or not, we have
spent a lot of time developing this plan for getting the answers you and
Sig want. If there is something else you think we should be doing, please
let me know.
Howard W. Tin_l 1, Jr.
CC:
FA/S. A. Sjoberg
FA/R. G. Rose
FC/J. D. Hodge
FS/H. E. Clements
FM;J. P. Mayer
FM/C. R. Huss
FM/M. V. Jenkins ·
FM12/Jo F. Dalby
FM/13/J. P. Bryant
FM14/R. P. Parten
FM/Branch Chiefs
CA/D. K. Slayton
CF/W. J. North
CF/P. Kramer
EG/R. C. Duncan
EG/D. C. Cheatbam
EG23/K. J. Cox
PA/J. F. Shea
PM2/C. H. Perrine
FM:RWT: cmJ
. " _ .' :' .
· ' ( ·
Of'TlOe4A,tFO4f_ KO. 10
GSa._ _Sl Cflll 14H--$ I,.4
UNITED STATES GOVERNMENT
Memorandum '"'
: SEP' ':
TO : EG/Ohief_ Guidance and Control Division DAT_. _. _- : t
· FaOM : FM/Deputy Chief, Mission pl_ing and 66-FM1-109
Analysis Division
SO_JECT: Mission rules needed for use with AGC self-check
· i As you probably recslJ, we have had an exchange of views and -_m_randa
regarding the usei_,l_ess of the Apollo computer prelim known as selfcheck. _is exchenge was started by our attempt to cut the spacecraft
· i
computer program down to an acceptable size for the 1,_R_ mission.
': Current status is that the self-check progr_ are still in; however,
I intuitively feel the 50_ pro_m_ have probably again grown to a
· .: point t_t we have again overflowed storage and will event-_lly have
:_ to have another paring down session. I would like to request that
your people who expressed an interest in preserving self-check ass,_,_
i. the task of formulating applicable mission rules which could be used
: on the 1,,_ mission in. conjunction with the self-check pro_m_.
_aese mission rules would specify exactly what action is to be taken
during the 50_ mission_ probably as a function of mission phase and
type of computer failure detected by self-check.
_ae point is, I would like to w_ke sure that this program r_nlly serves
a useful operatio_l function as opposed to a pre-flight function be-
; fore we decide to carry it to the moon at the exclusion of some other
'.i: _m someone wants. And, of co_rse_ If we do retain it in the
system, these reco-wnended mission rules should be very useful to the
Flight Control Division and to the flight crew in establishing the
operational procedures.
Howard W. Ti _ , Jr. _'
CA/D. K. Slayton
OF/W. J. North
0F_C. C. _aomas
EG/D. C. 0heatb_m
PA/ff. F. Shea
PD4/A. Cohen
FA/C. C. Kraft, Jr.
FA/S. A. Sjoberg
FC½J. D. Hedge
FN/!i P. Mayer
R. Huss
V. Jenkins · ·
FM/Branch Chiefs
FM2/T. F. Gibson, Jr.
· Fbi: ITw'T:cm .,, .
Buyq .'. eavingsBonds f Regularlyon, theVa . ,aWngsPlan E/ i.i
' 'i· :: . '
IAi, y 19_ II_IIDON
//
UNITED STATES GOVERNMENT
Memorandum -
: v. i :'m6
i_. _. *::'.' '-- _ _
"' _OM : _/Deputy Chief, Mission Pl_n_n_ng and 66-FMl-l10
_lysisDivision
$UZ2EET- IGC computer requirements to provide DI_ backup of SPS
* During our discussion at MIT last week, the question came up as to
whether it is necessary to have trajectory integration techniques in
_he LOC for the tr_-earth phase of the mission as well as the :lm-_7,
_hase. _ae argument is that if we are serious about using the I_ .
descent propulsion system to back up the command module SiS during
Il the tram_-earth phase, it will be necessary to have this inte_tion
._ capability as a service program for such things as platform alig-ment
and maneuver targeting. In fact, this capability would also be
required for trans-lunar aborts using the DPS, I suppose. The more l
think about it, the more I am convinced that this capability should
be included and I am interested in your comments on the subject. Of
course, if you agree I assume you w_l], include it in the 504 LOC
pro_A=m requirements.
Howard lq. Tindall, Jr.
QC;
CFfO. C. _aomas
EGIR. C. Dvncan
EGfD. C. Chea_b_m
PA/J. F. Shea
PA/W. A. Lee
PDfR. W. Will_m-_
PD ,/A. Cohen
PM/O. E. May_"_d
.. r z.r e
FA/C° C. Kraft, Jr.
FA/S. A. SJoberg
FAIR. G. Rose
FC/j.O. Eoa_
FC2/E.F. K.ranz
FC3/A. D. Aldrich
FO4/M.F. Brooks
1_:,/O. S. Dmney
FM/r. P. M_yer
F_/C. R. Huss
FMiS/J. P. Bryant
FM/Branch Chiefs
I M2/T. F. Gibson, Jr.
FM:HWT:cm
· I._ ·
· · . ·
OMIO_._ _ N0, l0
_V if62 _
um:r_ sr^rsz OOVER_ME_rr. F'.7_C_'-.V_D
Memorandum sE?
R. R. RAGAN
1'o : _IW;.'/F.ltght Softw:=e Branch DATE: SEP 2 1 1966
Attention: T.F. Gibson, Jr.
: FaOM : FM/Deputy Chief, Mission Planning and 66-FM1-_31
Analysis Division
SUBJECT: Rendezvous Search modes of various types
According to the notes I made during the 278 GSOP review at MIT last
August, there was aPDarently still some question as to whether an
automatic ra_-? search mode was needed. Sears also 9uestioned whether
an automatic sextant search mode was needed on the commnd module.
Has anything been done to answer either of these questions? If so,
what? If not, what can we do to close out these items?
Howard W. Ti_-11, Jr.
cc'
EG/D. Co Cheatb-m
PD4/A. Cohen
FM/M. V. Jenkins
FM: HWT: am
!_ BuyU.S.SavingsBandsl_gularlyonthePayroll $av_agsPlan.. : · . '. . . ,..
. _ ' · , i'.· j.. : ,
,_tANf]902 tD_14_
-- _ Ifltt Mi a I]_1 --I I,.i Z'
i UNITED STATES GOVERNMENT ' ''
Memorandum
TO : See list DATE_.-
_': FROM 1' FM/Deputy Chief, Mission Pl,-_ing and 66-1aM1'3_12
Analysis Division _ !i
SUBJECT: Apollo rendezvous navigation data edit is too complicated
In my notes of .the AS-207/208 GSOP meeting with MIT, reference 66-FMl-100
of August 30, I indicated that MIT was including an automatic data edit
i scheme in the rendezvous navigational pro_i_-_mfor both .the L_ and the
·0SM. As you rec_._l, this scheme was to accept rarle- or SXT data auto-
-_ 'matic_l_y if its effect 'on the spacecraft state vector is less tba- some
4 pre-established --_unt and would reject it if its effect is greater then
· · some other (3,rger) pre-established -,_unt. Data falling between these
two criteria was to be a_cepted but a warning light was to be turned
on. Dr. Shea commented that this seems _,_ecessari_y complicated - that
.re,lly there is no almParent sense in having three conditions when two
would do just as well. I must say, although I was foolish enough to
_! argue at the time, I cer+_-ly agree now that we really should ,_ke this
a s_,T.Te binary decision. Use the data or don't use the data based on
, some pre-established level of quality - probably light a light when the
computer is reject_ the data and do away with that central m_gion
altogether. I have searched my memory and can't r_e-11 W_ MIT proposed
to do it that way, but unless someone can find a good reason, we should
direct MIT to simplify the decision logic as noted above.
Flight Office Branch personnel please take appropriate action t-,,ediately. ..
· \
Addressees:
'_ (Seeattachedlist)'_ UNITED STATES GOVERNMENT
..ii
Memorandum
TO : See list DAqT_.P '_P?!_l: _$G
;' FAOM : .FM/Deputy Chief, Mission Planning and 66-FM1-113 r '
SUBJECT: Tne_ are fi_Vfe_nces in the descent guia_nce 10rog_m_
on AS-503 and AS-504
It is c_ently intended to include so_ sort of tests of the IR descent
propulsion smd guiaance on the AS-503 mission. However, it is not
possible to use the s_ne gui_nce eq_tions on AS-503 as w_]] be used
on the AS-504 3_,_ar descent. _his is due to obvious diffe_nces of sm
earth orbital mission compa_d to an actual descent to the moon's surface.
·., _ae g_vitatio_l Dotention is different; the objective of the _euver
is different; there is _thing for the 1,_w landing x_r to boumce
signals off of, etc, Accordingly it is MIT's intention, with our conc_nce, to omit certain vital p_ts of the AS-504 descent gui_aBce
:pro6:!--am from the AS-SOB mission. _he purpose of this memo is to -_ke
sure that you _11 know this.
It is my understanding that there are four main processers of the AS-50_
descent gui_-_ee pro_m which are not to be included in the AS-503
program:
1. processing of the 1._iing rs_r data
2. 2auding point desi_tion
.t
3. x-axisoverride
I _. auto, tic rate of descent c°ntr°l
In addition, the_ is likely to be a cba=ge in the coordinate system of
some sort needed.
I certainly do not claim to be sm expert in descent guidance; in fact,
, quite the opposite. If anything above interests you, I would suggest
i you contact _one who x_lly k_ws wh_t they _ +_king about like
: Don Oheat_m_ Floyd Bennett or Tom Price.
·4 I
Inci_en+_lqy, we s_re c_ntly in the midst of sum exercise designe_ to :
_we the AS-278 spacecraft computer prog_m_ identical to those for ..
AS-503. Although I don't expect this to have any i_t_luenceon the
_escent guia_¢e_ I just mentioned it here to cover that possibility.
Addressees:
BuyU.ravings BondsRegularlyonthePay,tdL ,aWngsPlan g'; · :i.5
:. o .,. .._, · · ..'_'.'
· --: _ .,.' . .,- -- .,, _-. _,,.,,,.._.._.._,,,, .._.
i - caMI_f_dM_. _ 1S
--_-
%"1 UQ_,mImITZDIdl gm STII_llh$ATZSC,OVZRNMAur. ' RC: _r
Memorandu m SEP h,'-. ".'.
· ' . R.R. RAGAN
TO : See list DATE: _ Z S _ · 'i
'"' 'I _ : FM/Deputy Chief, Misston ;m,_,-m._g and. 66-FM1-11_ !.' !)
.I _1 ysis Division >
st_JEcr: Apollo spacecraft gaia_-ce navigation modes
'. currently planned for AS-503 and AS-50_
I am afraid there is a bit of confusion as to what navigation modes are
being provided in the AS-503 and AS-50_ Apol3n spacecraft computer progr_mR. I am sure I have contributed to this confusion m_self, and the
.: purpose of this -_-_ is to try and clear it _ll up.
. According to Norm Sears, it is intended to p_vlde the followt-g navi-
-] gation; that is, onlxm_d orbit determination pro_ in the AS-504
i .ct....... -d m:)du_le c-_ter program:
7
I
a. Durtng earth orbital operations there Sb*ll be no onboard
, navigatio_l capabLl/ties at all.
b. During the tra_-_,m-_ and tra-.-earth phases the _avigation
I . pro_,_n is be4-g forwn,l-ted to process both star/l_,_,_-k and star/ - '
'_ horizon measuro._nts. _ae l_n_wm_M a_ horizon may be either earth or
i 1,,_,_ at the choice of the flight crew. _t is, there is no interlock
gore .ming.which is used depending on position of the spacecraft relative
·j to those two bodies. _ae pilot -w,st m_m,,lly key in location of the .-
:,I earth l-_-_wks and it is probable that he will also have to key in 1,,.._ -
.i l_w_ks since those stored for 1,m_ orbit navigation are likely to be
of a size not readily observable _,,_ing these phase s of the mission.
c. In lunar orbit the navigation program-w11] uttl_ze only 1,m,_
l,,_ks referenced to the platform. "Twenty-eight l_t_ks w111 be
stored in the computer program, but I am certain others may be keyed in
· if the crew de_ires.
For the As-_O3 mission, it is currently intende_ to have oul_ one _avigation mode - _--_y, use of star/_-_k or star/horizonobservations.
_ae ln_t_ks an_ horizon used are restricted to earth only since i_ is
not intended to have such routines as the 1,,_-_ ephemeris, _,,rm_ rotation, '-_
" etc., l:)ro_f._mst av=*l_ble. Earth 1-_-_ks must be keyed in ._.,_11y by
the crew. Norm Sears (MIT) points out that use of this dat_ in orbits of
thetYP e clzrrently Dl-_-ed for AS-503 may act_,-lly result in defoliation
of the onboard state vector, and as a result it may be necessary to
restrict this process to a spacecraft system test rather _._ an operatio_ procedure in support of the mission. "
t '
I suppose, to m_e this entirely complete, I should also list here the
processing of the co--_-d module sextant data for rendemv_As navigation,
which w_ll be in all Block II computer progr,_m_ currently pl--_-d. "!i!:ii :?::i: i;
'" · ' .1.' ' :'_ "_."" '" '
:°'.
2