-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtech-tree.html
1006 lines (924 loc) · 26.6 KB
/
tech-tree.html
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
<!DOCTYPE html>
<html>
<head>
<title>tech-tree.md</title>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<style>
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
body {
font-family: "Segoe WPC", "Segoe UI", "SFUIText-Light", "HelveticaNeue-Light", sans-serif, "Droid Sans Fallback";
font-size: 14px;
padding: 0 12px;
line-height: 22px;
word-wrap: break-word;
}
#code-csp-warning {
position: fixed;
top: 0;
right: 0;
color: white;
margin: 16px;
text-align: center;
font-size: 12px;
font-family: sans-serif;
background-color:#444444;
cursor: pointer;
padding: 6px;
box-shadow: 1px 1px 1px rgba(0,0,0,.25);
}
#code-csp-warning:hover {
text-decoration: none;
background-color:#007acc;
box-shadow: 2px 2px 2px rgba(0,0,0,.25);
}
body.scrollBeyondLastLine {
margin-bottom: calc(100vh - 22px);
}
body.showEditorSelection .code-line {
position: relative;
}
body.showEditorSelection .code-active-line:before,
body.showEditorSelection .code-line:hover:before {
content: "";
display: block;
position: absolute;
top: 0;
left: -12px;
height: 100%;
}
body.showEditorSelection li.code-active-line:before,
body.showEditorSelection li.code-line:hover:before {
left: -30px;
}
.vscode-light.showEditorSelection .code-active-line:before {
border-left: 3px solid rgba(0, 0, 0, 0.15);
}
.vscode-light.showEditorSelection .code-line:hover:before {
border-left: 3px solid rgba(0, 0, 0, 0.40);
}
.vscode-dark.showEditorSelection .code-active-line:before {
border-left: 3px solid rgba(255, 255, 255, 0.4);
}
.vscode-dark.showEditorSelection .code-line:hover:before {
border-left: 3px solid rgba(255, 255, 255, 0.60);
}
.vscode-high-contrast.showEditorSelection .code-active-line:before {
border-left: 3px solid rgba(255, 160, 0, 0.7);
}
.vscode-high-contrast.showEditorSelection .code-line:hover:before {
border-left: 3px solid rgba(255, 160, 0, 1);
}
img {
max-width: 100%;
max-height: 100%;
}
a {
color: #4080D0;
text-decoration: none;
}
a:focus,
input:focus,
select:focus,
textarea:focus {
outline: 1px solid -webkit-focus-ring-color;
outline-offset: -1px;
}
hr {
border: 0;
height: 2px;
border-bottom: 2px solid;
}
h1 {
padding-bottom: 0.3em;
line-height: 1.2;
border-bottom-width: 1px;
border-bottom-style: solid;
}
h1, h2, h3 {
font-weight: normal;
}
h1 code,
h2 code,
h3 code,
h4 code,
h5 code,
h6 code {
font-size: inherit;
line-height: auto;
}
a:hover {
color: #4080D0;
text-decoration: underline;
}
table {
border-collapse: collapse;
}
table > thead > tr > th {
text-align: left;
border-bottom: 1px solid;
}
table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td {
padding: 5px 10px;
}
table > tbody > tr + tr > td {
border-top: 1px solid;
}
blockquote {
margin: 0 7px 0 5px;
padding: 0 16px 0 10px;
border-left: 5px solid;
}
code {
font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
font-size: 14px;
line-height: 19px;
}
body.wordWrap pre {
white-space: pre-wrap;
}
.mac code {
font-size: 12px;
line-height: 18px;
}
pre:not(.hljs),
pre.hljs code > div {
padding: 16px;
border-radius: 3px;
overflow: auto;
}
/** Theming */
.vscode-light,
.vscode-light pre code {
color: rgb(30, 30, 30);
}
.vscode-dark,
.vscode-dark pre code {
color: #DDD;
}
.vscode-high-contrast,
.vscode-high-contrast pre code {
color: white;
}
.vscode-light code {
color: #A31515;
}
.vscode-dark code {
color: #D7BA7D;
}
.vscode-light pre:not(.hljs),
.vscode-light code > div {
background-color: rgba(220, 220, 220, 0.4);
}
.vscode-dark pre:not(.hljs),
.vscode-dark code > div {
background-color: rgba(10, 10, 10, 0.4);
}
.vscode-high-contrast pre:not(.hljs),
.vscode-high-contrast code > div {
background-color: rgb(0, 0, 0);
}
.vscode-high-contrast h1 {
border-color: rgb(0, 0, 0);
}
.vscode-light table > thead > tr > th {
border-color: rgba(0, 0, 0, 0.69);
}
.vscode-dark table > thead > tr > th {
border-color: rgba(255, 255, 255, 0.69);
}
.vscode-light h1,
.vscode-light hr,
.vscode-light table > tbody > tr + tr > td {
border-color: rgba(0, 0, 0, 0.18);
}
.vscode-dark h1,
.vscode-dark hr,
.vscode-dark table > tbody > tr + tr > td {
border-color: rgba(255, 255, 255, 0.18);
}
.vscode-light blockquote,
.vscode-dark blockquote {
background: rgba(127, 127, 127, 0.1);
border-color: rgba(0, 122, 204, 0.5);
}
.vscode-high-contrast blockquote {
background: transparent;
border-color: #fff;
}
</style>
<style>
/* Tomorrow Theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
/* Tomorrow Comment */
.hljs-comment,
.hljs-quote {
color: #8e908c;
}
/* Tomorrow Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-deletion {
color: #c82829;
}
/* Tomorrow Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-meta,
.hljs-link {
color: #f5871f;
}
/* Tomorrow Yellow */
.hljs-attribute {
color: #eab700;
}
/* Tomorrow Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #718c00;
}
/* Tomorrow Blue */
.hljs-title,
.hljs-section {
color: #4271ae;
}
/* Tomorrow Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #8959a8;
}
.hljs {
display: block;
overflow-x: auto;
color: #4d4d4c;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
</style>
<style>
/*
* Markdown PDF CSS
*/
body {
font-family: "Meiryo", "Segoe WPC", "Segoe UI", "SFUIText-Light", "HelveticaNeue-Light", sans-serif, "Droid Sans Fallback";
}
pre {
background-color: #f8f8f8;
border: 1px solid #cccccc;
border-radius: 3px;
overflow-x: auto;
white-space: pre-wrap;
overflow-wrap: break-word;
}
pre:not(.hljs) {
padding: 23px;
line-height: 19px;
}
blockquote {
background: rgba(127, 127, 127, 0.1);
border-color: rgba(0, 122, 204, 0.5);
}
.emoji {
height: 1.4em;
}
/* for inline code */
:not(pre):not(.hljs) > code {
color: #C9AE75; /* Change the old color so it seems less like an error */
font-size: inherit;
}
/* Page Break : use <div class="page"/> to insert page break
-------------------------------------------------------- */
.page {
page-break-after: always;
}
</style>
</head>
<body>
<style>
.top {
position:absolute;
left:0; right:0;
height: 62px;
}
.left {
position:absolute;
left:10; top:142px; bottom: 0;
width: 340px;
/* background: red; */
}
.main {
position: absolute;
left:340px; top:142px;
right:0; bottom:0;
/* background: yellow; */
}
.right {
position:absolute;
top:50px; bottom: 0;
left:560px;
/* width: 782px; */
/* background: red; */
}
</style>
<!--
/* Begin Contact Form CSS */
.contactform {
position: static;
overflow: hidden;
}
.contactleft {
width: 25%;
text-align: right;
clear: both;
float: left;
display: inline;
padding: 4px;
margin: 5px 0;
}
.contactright {
width: 70%;
text-align: left;
float: right;
display: inline;
padding: 4px;
margin: 5px 0;
}
.contacterror {
border: 1px solid #ff0000;
}
/* End Contact Form CSS */
</style> -->
<script type="text/javascript">
/***********************************************
* Textarea Maxlength script- � Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for legal use.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
function ismaxlength(obj){
var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : ""
if (obj.getAttribute && obj.value.length>mlength)
obj.value=obj.value.substring(0,mlength)
}
</script>
<!-- <body class="orange hid_6"> -->
<!-- <div id="wrapper"> -->
<h2 id="basic-constants">Basic constants</h2>
<ul>
<li>Solar constant: 1.362 kW/m² @1AU</li>
<li>1AU = 1.49597871E8 km</li>
<li>Moon-Earth Distance (LD): 3.84400E5 km</li>
</ul>
<div class="left">
<h2 id="calculator">Calculator</h2>
<ol>
<li>Target asteroid #3
<ul>
<li>character
<ul>
<li>orbit</li>
<li>physical property</li>
<li>composition</li>
</ul>
</li>
<li>Observatory
<ul>
<li>optical
<ul>
<li>images</li>
<li>color wheel</li>
<li>spectrum</li>
</ul>
</li>
<li>radar</li>
</ul>
</li>
<li>Probe constellation/Vehicle
<ul>
<li>Density in space</li>
<li>communication link</li>
<li>mass/propulsion
<ul>
<li>power supply</li>
<li>load
<ul>
<li>attitude</li>
<li>instrument</li>
</ul>
</li>
<li>propulsion
<ul>
<li>specific impulse</li>
<li>Total impulse</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>solar furnace #5
<ul>
<li>stationary</li>
<li>on orbit</li>
<li>calc
<ul>
<li>size</li>
<li>effective area
<ul>
<li>full power</li>
</ul>
</li>
<li>focal distance</li>
<li>focus spot
<ul>
<li>focus spot size</li>
<li>power desity</li>
</ul>
</li>
<li>mechanic
<ul>
<li>mass</li>
<li>construction speed
<ul>
<li>accuracy in need</li>
</ul>
</li>
<li>on orbit
<ul>
<li>weight</li>
</ul>
</li>
<li>stationary
<ul>
<li>track speed</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>smelting in field #6
<ul>
<li>power desity</li>
<li>reflect ratio</li>
<li>Molten pool productivity
<ul>
<li>pour out rate</li>
</ul>
</li>
</ul>
</li>
<li>zone melting #6
<ul>
<li>size of raw material</li>
<li>power desity</li>
<li>speed</li>
<li>total time</li>
<li>productivity</li>
</ul>
</li>
<li>Magnetic work shield #4
<ul>
<li>Magnetic tower</li>
<li>Magnetic torquer of work station</li>
</ul>
</li>
<li>Electromagnetic momentum management system
<ul>
<li>fix position for furnace</li>
<li>positioning for robots</li>
<li>Electromagnetic launch system for work station</li>
</ul>
</li>
<li>Exponential growth
<ul>
<li>productivity per set</li>
<li>productivity of solar furnace</li>
<li>robots duty #7</li>
<li>further construction, cabin etc</li>
<li>one shot for whole</li>
<li>orbital transfer for C-type</li>
</ul>
</li>
<li>Orgnization
<ul>
<li>Time frame #20</li>
<li>Initial base package (IBP) and supplement #13</li>
<li>Resource in need</li>
</ul>
</li>
</ol>
</div>
<div id="header" class="main">
<!-- eds solar furnace-->
<!-- Inputs -->
<P><STRONG>Solar Furnace Calculator:<BR>
</STRONG>
<TABLE id="Table1" cellSpacing="1" cellPadding="1" width="300" bgColor="#ffffcc" border="1">
<TR>
<TD>Distance</TD>
<TD><INPUT id="evaluDistance" onkeyup="furnace_calc()" type="text" size="5" value="1" name="evaluDistance"> </TD>
<TD>AU
<!-- id = distUnits -->
<!-- <SELECT id="distanUnit" onchange="distance_unit()" name="distanUnit">
<OPTION value="1" selected>AU</OPTION>
<OPTION value="3.84400E5">LD</OPTION>
<OPTION value="1.49597871E8">km</OPTION>
</SELECT> -->
</TD>
<TD bgColor="#ccffcc">Solar Power Density</TD>
<TD><INPUT id="solarPowerDensity" onkeyup="furnace_calc()" type="text" size="8" value="1362" name="solarPowerDensity"></TD>
<TD>W/m²</TD>
</TR>
<TR>
<TD bgColor="#ffccaa">Equivalent size/Actual diameter</TD>
<TD><INPUT id="twText1" onkeyup="tw_calc()" type="text" size="8" value="50" name="furnaceSize"></TD>
<TD>m</TD>
<TD bgColor="#ccffcc">Effective area</TD>
<TD><INPUT id="effectArea" onkeyup="tw_calc()" type="text" size="8" value="1.362" name="effectArea"></TD>
<TD>m sq</TD>
</TR>
<TR>
<TD bgColor="#ffccaa">Efficency</TD>
<TD><INPUT id="furnaceEfficency" onkeyup="tw_calc()" type="text" size="8" value="90" name="furnaceEfficency"></TD>
<TD>%</TD>
<TD bgColor="#ccffcc">Full Power</TD>
<TD><INPUT id="fullPower" onkeyup="tw_calc()" type="text" size="8" value="1.362" name="fullPower"></TD>
<TD>kW</TD>
</TR>
<TR>
<TD bgColor="#ffccaa">Focus Distance</TD>
<TD><INPUT id="focusDistance" onkeyup="tw_calc()" type="text" size="8" value="100" name="focusDistance"></TD>
<TD>m</TD>
<TD bgColor="#ccffcc">Focus Spot Size</TD>
<TD><INPUT id="twText3" onkeyup="tw_calc()" type="text" size="8" value="2" name="twText3"></TD>
<TD>m</TD>
</TR>
<TR>
<TD bgColor="#ffccaa">Focus Quality</TD>
<TD><INPUT id="twText1" onkeyup="tw_calc()" type="text" size="8" value="80" name="focuQuality"></TD>
<TD>%</TD>
<TD bgColor="#ccffff">Nominal Focus Spot Power Density</TD>
<TD><INPUT id="twText3" onkeyup="tw_calc()" type="text" size="8" value="1000" name="nomFSPD"></TD>
<TD>kW/m sq</TD>
</TR>
<TR>
<TD bgColor="#666666">Asteroid related</TD>
</TR>
<TR>
<TD bgColor="#ffffcc">MPC designation</TD>
<TD><INPUT id="twText3" onkeyup="tw_calc()" type="text" size="12" value="(6178) 1986 DA" name="twText3"></TD>
<TD></TD>
<TD bgColor="#ccffcc">Surface Gravity</TD>
<TD><INPUT id="twText1" onkeyup="tw_calc()" type="text" size="8" value="0.25" name="Distance"></TD>
<TD>g/kg</TD>
</TR>
<TR>
<TD bgColor="#ccffcc">Perihelion</TD>
<TD><INPUT id="twText1" onkeyup="tw_calc()" type="text" size="8" value="1.1805" name="tgtPerihelion"></TD>
<TD>AU</TD>
<TD bgColor="#ccffcc">Aphelion</TD>
<TD><INPUT id="twText3" onkeyup="tw_calc()" type="text" size="8" value="4.4648" name="tgtAphelion"></TD>
<TD>AU</TD>
</TR>
<TR>
<TD bgColor="#ccffff">PeriFSPD</TD>
<TD><INPUT id="twText1" onkeyup="tw_calc()" type="text" size="8" value="1.1805" name="periFSPD"></TD>
<TD>kW/m sq</TD>
<TD bgColor="#ccffff">ApheFSPD</TD>
<TD><INPUT id="twText3" onkeyup="tw_calc()" type="text" size="8" value="4.4648" name="apheFSPD"></TD>
<TD>kW/m sq</TD>
</TR>
<TR>
<TD bgColor="#ccffcc">Orbital period</TD>
<TD><INPUT id="twText1" onkeyup="tw_calc()" type="text" size="8" value="4.74" name="orbPeriod"></TD>
<TD>yr</TD>
<TD bgColor="#ccffcc">Rotation period</TD>
<TD><INPUT id="twText3" onkeyup="tw_calc()" type="text" size="8" value="3.50" name="rotPeriod"></TD>
<TD>h</TD>
</TR>
<TR>
<TD bgColor="#ccffcc">Spectral type</TD>
<TD><INPUT id="twText1" onkeyup="tw_calc()" type="text" size="8" value="M" name="specType"></TD>
<TD></TD>
<TD bgColor="#ccffcc">Dimensions</TD>
<TD><INPUT id="twText3" onkeyup="tw_calc()" type="text" size="8" value="3.15" name="tgtSize"></TD>
<TD>km</TD>
</TR>
<TR>
<TD bgColor="#ccffcc">Mass</TD>
<TD><INPUT id="twText1" onkeyup="tw_calc()" type="text" size="8" value="20" name="Distance"></TD>
<TD>Ton</TD>
<TD bgColor="#ccffff">Weight</TD>
<TD><INPUT id="twText3" onkeyup="tw_calc()" type="text" size="8" value="5" name="twText3"></TD>
<TD>kg-force</TD>
</TR>
</TABLE>
</P>
<P><STRONG>Smelting in the field<BR>
</STRONG>
<TABLE id="Table1" cellSpacing="1" cellPadding="1" width="300" bgColor="#ffffcc" border="1">
<TR>
<TD>Distance</TD>
<TD><INPUT id="evaluDistance" onkeyup="furnace_calc()" type="text" size="5" value="1" name="evaluDistance"> </TD>
<TD>AU
<!-- id = distUnits -->
<!-- <SELECT id="distanUnit" onchange="distance_unit()" name="distanUnit">
<OPTION value="1" selected>AU</OPTION>
<OPTION value="3.84400E5">LD</OPTION>
<OPTION value="1.49597871E8">km</OPTION>
</SELECT> -->
</TD>
<TD bgColor="#ccffcc">Solar Power Density</TD>
<TD><INPUT id="solarPowerDensity" onkeyup="furnace_calc()" type="text" size="8" value="1362" name="solarPowerDensity"></TD>
<TD>W/m²</TD>
</TR>
<TR>
<TD bgColor="#ffccaa">Equivalent size/Actual diameter</TD>
<TD><INPUT id="twText1" onkeyup="tw_calc()" type="text" size="8" value="50" name="furnaceSize"></TD>
<TD>m</TD>
<TD bgColor="#ccffcc">Effective area</TD>
<TD><INPUT id="effectArea" onkeyup="tw_calc()" type="text" size="8" value="1.362" name="effectArea"></TD>
<TD>m sq</TD>
</TR>
</TABLE>
</P>
<script language="javascript">
var eDist = 1
function distance_unit() {
const AU = 1.49597871E8
const LD = 3.84400E5
eDist=document.getElementById("evaluDistance").value
// *document.getElementById("distanUnit").value
// var cell = document.createElement("td");
var cellText = document.createTextNode("cell in row ");
document.getElementById("distUnits").setChild(cellText);
furnace_calc()
}
function furnace_calc() {
const nominalSPD = 1362
eDist=document.getElementById("evaluDistance").value
var SPD = nominalSPD/Math.pow(eDist, 2)
// var tr=document.getElementById("twText2").value
// var tunit=document.getElementById("twSelect5").value;
// if (tunit=="F"){
// tr=tr*5/9;
// }
// var tk=document.getElementById("twText3").value*document.getElementById("twSelect2").value;//cm
// var ta=document.getElementById("twText4").value
// tunit=document.getElementById("twSelect6").value;
// if (tunit=="F"){
// ta=(ta-32)*5/9;
// }
// var len=document.getElementById("twText5").value/document.getElementById("twSelect4").value;//cm
// //calcs
// var rho=1.7e-6 //ohm-cm
//output
document.getElementById("solarPowerDensity").value=SPD.toPrecision(3)
// document.getElementById("twText7").value=ri.toPrecision(3)
// document.getElementById("twText8").value=vi.toPrecision(3)
// document.getElementById("twText9").value=pi.toPrecision(3)
// document.getElementById("twText10").value=we.toPrecision(3)
// document.getElementById("twText11").value=re.toPrecision(3)
// document.getElementById("twText12").value=ve.toPrecision(3)
// document.getElementById("twText13").value=pe.toPrecision(3)
}
function A_external(current,rise) {
var k = 0.048
var b = 0.44
var c = 0.725
return Math.pow((current/(k*Math.pow(rise,b))),1/c)
}
function A_internal(current,rise) {
var k = 0.024
var b = 0.44
var c = 0.725
return Math.pow((current/(k*Math.pow(rise,b))),1/c)
}
</script>
<div id="divhead">
<!-- align="center"> -->
<h2>Satellite Link Budget Calculator</h2>
<p>Complete all white boxes and then click any calculate button to obtain results in the green boxes.</p>
<form action="http://www.satsig.net/linkbugt.htm">
<table>
<tbody><tr>
<td>Uplink frequency GHz</td>
<td><input type="TEXT" name="frequp" size="10" onfocus="this.form.frequp.value=''"></td>
</tr>
<tr>
<td>Uplink antenna diameter m</td>
<td><input type="TEXT" name="esdiaup" size="10" onfocus="this.form.esdiaup.value=''"></td>
</tr>
<tr>
<td>Uplink antenna aperture efficiency e.g. 0.65</td>
<td><input type="TEXT" name="eff" size="10" value="0.65" onfocus="this.form.eff.value=''"></td>
</tr>
<tr bgcolor="#99FF99">
<td>Uplink antenna transmit gain dBi</td>
<td><input type="TEXT" name="esupgain" size="5"></td>
</tr>
<tr>
<td>Uplink antenna, power at the feed W</td>
<td><input type="TEXT" name="espowup" size="5" onfocus="this.form.espowup.value=''"></td>
</tr>
<tr bgcolor="#99FF99">
<td>Uplink EIRP dBW</td>
<td><input type="TEXT" name="esupeirp" size="5"></td>
</tr>
<tr>
<td><a href="http://www.satsig.net/ssazelm.htm">Range</a> (35778 - 41679) km</td>
<td><input type="TEXT" name="range" size="10" value="38500.0" onfocus="this.form.range.value=''"></td>
</tr>
<tr bgcolor="#99FF99">
<td>Uplink path loss dB</td>
<td><input type="TEXT" name="plup" size="5"></td>
</tr>
<tr bgcolor="#99FF99">
<td><a href="http://www.satsig.net/lbpfd.htm">Uplink pfd at satellite dBW/m^2</a></td>
<td><input type="TEXT" name="pfdup" size="5"></td>
</tr>
<tr>
<td>Bandwidth Hz</td>
<td><input type="TEXT" name="bandwidth" size="10" onfocus="this.form.bandwidth.value=''"></td>
</tr>
<tr>
<td><a href="http://www.satsig.net/lbgt.htm">Satellite uplink G/T dB/K</a></td>
<td><input type="TEXT" name="gontup" size="10" onfocus="this.form.gontup.value=''"></td>
</tr>
<tr bgcolor="#99FF99">
<td>Uplink C/N dB</td>
<td><input type="TEXT" name="cnup" size="5"></td>
</tr>
</tbody></table>
<p><input type="BUTTON" value="Click to calculate results" onclick="computeform(this.form)"> </p>
<table cellpadding="0" cellspacing="1" style="border-collapse: collapse">
<tbody><tr>
<td>Downlink frequency GHz</td>
<td><input type="TEXT" name="freqdn" size="10" onfocus="this.form.freqdn.value=''"></td>
</tr>
<tr>
<td>Downlink receive antenna diameter m</td>
<td><input type="TEXT" name="esdiadn" size="10" onfocus="this.form.esdiadn.value=''"></td>
</tr>
<tr>
<td>Downlink receive antenna aperture efficiency e.g. 0.65</td>
<td><input type="TEXT" name="effdn" value="0.65" size="10" onfocus="this.form.effdn.value=''"></td>
</tr>
<tr>
<td><a href="http://www.satsig.net/noise.htm">Downlink system noise temperature (antenna+LNA) K</a></td>
<td><input type="TEXT" name="temp" size="10" onfocus="this.form.temp.value=''"></td>
</tr>
<tr bgcolor="#99FF99">
<td>Downlink receive antenna gain dBi</td>
<td><input type="TEXT" name="esdngain" size="5"></td>
</tr>
<tr bgcolor="#99FF99">
<td>Downlink receive antenna G/T dB/K</td>
<td><input type="TEXT" name="gontdn" size="5"></td>
</tr>
<tr>
<td><a href="http://www.satsig.net/lbeirp.htm">Downlink satellite EIRP dBW</a></td>
<td><input type="TEXT" name="eirpdn" size="10" onfocus="this.form.eirpdn.value=''"></td>
</tr>
<tr bgcolor="#99FF99">
<td>Downlink path loss dB</td>
<td><input type="TEXT" name="pldn" size="5"></td>
</tr>
<tr bgcolor="#99FF99">
<td>Downlink C/N dB</td>
<td><input type="TEXT" name="cndn" size="5"></td>
</tr>
</tbody></table>
<p><input type="BUTTON" value="Click to calculate results" onclick="computeform(this.form)"> </p>
<table cellpadding="0" cellspacing="1" style="border-collapse: collapse">
<tbody><tr>
<td><a href="http://www.satsig.net/interfer.htm">Uplink C/interference dB</a></td>
<td><input type="TEXT" name="ciup" size="10" value="28.0" onfocus="this.form.ciup.value=''"></td>
</tr>
<tr bgcolor="#99FF99">
<td>Uplink C/N dB</td>
<td><input type="TEXT" name="cnup2" size="5"></td>
</tr>
<tr>
<td><a href="http://www.satsig.net/interfer.htm">Satellite C/intermod dB</a></td>
<td><input type="TEXT" name="cim" size="10" value="21.0" onfocus="this.form.cim.value=''"></td>
</tr>
<tr bgcolor="#99FF99">
<td>Downlink C/N dB</td>
<td><input type="TEXT" name="cndn2" size="5"></td>
</tr>
<tr>
<td><a href="http://www.satsig.net/interfer.htm">Downlink C/interference dB</a></td>
<td><input type="TEXT" name="cidn" size="10" value="28.0" onfocus="this.form.cidn.value=''"></td>
</tr>
<tr bgcolor="#99FF99">
<td>Total link C/N dB</td>
<td><input type="TEXT" name="cntot" size="5"></td>
</tr>
</tbody></table>
<p><input type="BUTTON" value="Click to calculate results" onclick="computeform(this.form)"><input type="Reset" value="Click to zero everything except defaults" onclick="ClearForm(this.form)"></p>
</form>
</div>
<script type="text/javascript">
// <!-- hide this script tag's contents from old browsers
function gain(freq, dia, e) {
//freq in GHz, dia in m, e=efficiency e.g. 0.65 is 65%
a=10.0*Math.log(4*3.14159*e*3.14159*dia*dia*freq*freq/(4*.3*.3))/Math.log(10.0);
return a;
}
function eirp(gain, pow) {
//antenna gain in dBi, power in watts
a=gain+10.0*Math.log(pow)/Math.log(10.0);
return a;
}
function pathloss(range, freq) {
// range in km, freq in GHz
a=92.45+20.0*Math.log(range)/Math.log(10.0)+20.0*Math.log(freq)/Math.log(10.0);
return a;
}
function lnkb(eirp,pathloss,gont,bw) {
a=eirp-pathloss-10.0*Math.log(bw)/Math.log(10.0)+228.6;
a=1.0*gont+a;
return a;
}
function sumdb(a,b,c,d,e) {
a1=1.0/(Math.pow(10.0, a/10.0));
b1=1.0/(Math.pow(10.0, b/10.0));
c1=1.0/(Math.pow(10.0, c/10.0));
d1=1.0/(Math.pow(10.0, d/10.0));
e1=1.0/(Math.pow(10.0, e/10.0));
sdb=-10.0*Math.log(a1+b1+c1+d1+e1)/Math.log(10.0);
return sdb;
}
function computeform(form) {
gainupdb= gain(form.frequp.value, form.esdiaup.value, form.eff.value);
eirpdb = eirp(gainupdb, form.espowup.value);
plupdb = pathloss(form.range.value, form.frequp.value);
pfdupdb = eirpdb - plupdb + gain(form.frequp.value, 1.128379, 1.0);
cnupdb = lnkb(eirpdb, plupdb, form.gontup.value, form.bandwidth.value);
//
pldndb = pathloss(form.range.value, form.freqdn.value);
gaindndb= gain(form.freqdn.value, form.esdiadn.value, form.effdn.value);
gontdndb= gaindndb -10*Math.log(form.temp.value)/Math.log(10);
cndndb = lnkb(form.eirpdn.value, pldndb, gontdndb, form.bandwidth.value);
//
cntotdb = sumdb(form.ciup.value,cnupdb,form.cim.value,cndndb,form.cidn.value);
//
form.esupgain.value=gainupdb;
form.esdngain.value=gaindndb;
form.esupeirp.value=eirpdb;
form.plup.value =plupdb;
form.pfdup.value =pfdupdb;
form.cnup.value =cnupdb;
//
form.pldn.value =pldndb;
form.gontdn.value =gontdndb;
form.cndn.value =cndndb;
//
form.cnup2.value =cnupdb;
form.cndn2.value =cndndb;
form.cntot.value =cntotdb;
//
return;
}
<!-- // -- done hiding from old browsers -->
</script>
<div class = "right">
<iframe src="http://asterank.com/3d/" width="700px" height="500px" frameborder="0" scrolling="no"> </iframe>
<img src="https://user-images.githubusercontent.com/1320252/48569629-38cc7380-e93d-11e8-8317-639868a95439.png" alt="eds-0a" />
<img src="https://user-images.githubusercontent.com/1320252/48569700-67e2e500-e93d-11e8-8200-74e84e535a61.png" alt="eds-0a" />
<img src="https://user-images.githubusercontent.com/1320252/46815235-16c75a80-cdad-11e8-86d1-83fba3bf2010.png"
alt="eds-0a" />
<img src="https://user-images.githubusercontent.com/1320252/46815246-1c24a500-cdad-11e8-905c-ee67fc2966c0.png"