-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapter.2.00.xhtml
executable file
·1681 lines (1628 loc) · 94.1 KB
/
chapter.2.00.xhtml
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
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<!-- <!DOCTYPE html> -->
<!-- <html lang="en"> -->
<head>
<title>The Principles of the Trinary Universe: Chapter 2.00 Trinary Energy</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Jeffrey Scott Flesher" />
<meta name="created" content="1961-01-14T18:32:33.366699936" />
<meta name="changedby" content="Jeffrey Scott Flesher" />
<meta name="changed" content="2020-01-14T18:32:57.366666666" />
<meta name="description" content="Author: Jeffrey Scott Flesher, Principles of Light Wizzard or Wizards like Sir Isaac Newton and Nikola Tesla" />
<meta name="keywords" content="Light,Wizzard,Wizard,Newton,Tesla,Franklin,God,Jesus,Bar/Abbas,Darkness,Trinary,Universe,Sanctuary,Physics,Sun,Step,Jeffrey Scott Flesher" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@TheLightWizzard" />
<meta name="twitter:creator" content="@TheLightWizzard" />
<meta name="twitter:title" content="The Principles of the Trinary Universe: Chapter 2.00 Trinary Energy" />
<meta name="twitter:description" content="Author: Jeffrey Scott Flesher, Principles of Light Wizzard or Wizards like Sir Isaac Newton and Nikola Tesla" />
<meta name="twitter:image" content="images/cover.jpg" />
<link rel="shortcut icon" type="image/ico" href="favicon.ico" />
<!-- *** Put all js files inside comment tag when running kindlegen to get rid of warnings
*** -->
<link rel="stylesheet" href="1doc2rule.min.css" />
<!-- <script async="async" src="1doc2rule.min.js"></script> -->
</head>
<body>
<!-- ************* CONTAINER ********************************************** -->
<div class="container">
<!-- ************* BEGIN_TITLE_PAGE_COPYRIGHT ***************************** -->
<div class="noprint">
<span class="show_web_page_only"><span class="align_center"><span id="google_translate_element" class="google_translate_element"></span></span></span>
<span class="bigcenter"><cite>The Principles of the Trinary Universe</cite></span>
<span class="bignboldncenter">Chapter 2.00:<br />Trinary Energy</span>
<span class="small_text_line_center"><span class="center_italic">C</span>®<span class="center_italic">pyRight</span> & <span class="center_italic">C</span>©<span class="center_italic">pyLeft</span><br />by</span>
<span class="a_signature_large_center">Jeffrey Scott Flesher</span>
<span class="author_title">“Medically Retired United States Air Force Staff Sergeant”</span>
<span class="center_small">Last Update: <span class="text_mono ">14 January 2020</span></span>
<span class="center_small">
<a href="http://LightWizzard.com/books/trinary.universe/the.principles.of.the.trinary.universe.xhtml" class="blank_target_link">http://LightWizzard.com/books/trinary.universe/the.principles.of.the.trinary.universe.html</a>
</span>
<div class="a_line_show_break_html"></div><span class="a_blank_line"> </span>
</div>
<!-- ************* END_TITLE_PAGE_COPYRIGHT ******************************* -->
<!-- ************* BEGIN_CHAPTER_2 **************************************** -->
<div class="page_content">
<h2 id="chapter_02_00" class="a_header"> Chapter 2.00:<br />Trinary Energy </h2>
<p class="text_top">
Trinary means 3 State Logic Changes,
this is seen in Atomic Structures under an Electron Microscope,
and Sir Isaac Newton invented the Modern Microscope,
but White Light from the Sun would destroy most things you want to look at under a microscope,
this Electron Microscope uses Electrons to Light up what you want to see,
and uses Electronic Focusing Lenses,
and a special Camera to view the image with,
it also has focusing capability,
so you know have two ways to increase the magnification of an object,
thus it gives you a better Light Source,
but better Magnification,
enough to see that all Atoms,
will go through 3 Logical State Changes: Solid, Semisolid, and Invisible,
in Trinity this is known as the Father, the Son, and the Holy Ghost,
so I changed Trinity too Trinary to remove Religion from Trinary Science,
and call White Noise Trinary Energy.
</p>
<p class="text_indent">
<a id="return_term_trinary_energy_2" class="a_link" href="terms.xhtml#term_trinary_energy">Trinary Energy <sub>[2]</sub></a>
is seen in “White Light” as “White Noise”,
its Also Known As “God's Particle”, but only as a Joke,
but I call it the Light,
and it has been referenced in the Bible as God being All Light without Darkness,
but in Science, it needs a Scientific Name,
and needs to be defined in a way that describes how it behaves,
because Science is all about the way you Document Experiments and Present Facts,
and most people make Jokes about White Noise,
as if they can detect it in Dries and Washing Machines,
when it is encoded into everything,
including our DNA,
and since that is microscopic,
you know that it was written to be read by something really small,
and in biology, you will not find this,
since it is only there to allow the flow of Energy to be manipulated,
like it was just an Electronic Circuit board,
because that is all it is,
the Flesh is just building blocks for the Trinary Energy to Animate,
the only reason Humans have Intelligence is because of their Connection to the Trinary Energy,
so calling it God does not change this,
as long as we agree it is the Only God in the Universe,
and it is Light and Electricity as well as all Atomic Matter in the Universe,
so really its Everything in the Universe,
as Tesla stated,
so he was just a Crazy old Wizard to Sheeple,
which Sheeple is a Term used to describe Stupid People,
meaning those that have not learned about the Light that Tesla wrote about,
so those that did not understand Tesla,
did not understand why the Light is Everything,
it is because every Atom in the Universe is created from Neutrinos and Light,
this Light is what I call “Trinary Energy”,
it is seen in the “White Light” of the Sun as “White Noise”,
Sir Isaac Newton called it God,
the Bible stated God is All Light without Darkness,
so we must agree that we are talking about the same God,
and not some Deity or Spirit,
this is not about religion, it is about the Bible,
and not what you read into it,
but what is written into it,
not what was inserted like Christ,
but that witch remains in the name of Jesus Bar Abbas,
who was a Man that a Leader in the Militia,
that fought against the Roman Empire,
for its use of Money,
and what he Preached was believing in the Light of God,
Light being Energy,
this Energy was described as the Father, Son and Holy Ghost or Spirit known as Mother,
this is called Trinity,
and it is about describing the 3 State Changes of Atom's,
it was written using Witchcraft that only Alchemist could read,
and that was forbidden by the Church,
and Wizards and Witches could be burned alive if caught,
so this is forbidden knowledge,
and it is why few know about it,
and fewer talk about it,
but the facts are the facts,
and there is only one Truth,
and that is the Light.
</p>
<p class="text_indent">
In the Introduction, I tried to give a broad overview about Trinary Energy,
in this chapter, I will try to expand on subjects I just brushed over in the introduction,
and I might not repeat some key concepts that were in the Introduction to save space and make this document shorter,
same will be true with future chapters, I try to build on what I said, so I only repeat myself to make a point,
even if you think I am rambling on,
or repeating things over and over,
it is because my brain only knows how to relate events in an order that it understands them,
and not all humans remember things the same way,
so I relate Moon Light with Bee Pee, why wonder why, when few care to know,
but your the Reader or Listener and not the Editor,
who would cut that line,
without knowing why I came to think that thought.
</p>
<p class="text_indent">
Sights and Smells are one aspect of a Memory,
but too shallow to relate to,
but words have way too many meanings to relate concepts to,
at least it is for me,
I only think in terms of images,
so words are just letters that do not even add up into the words meaning,
so it is just spells, and you know what Wizards think about Spells,
an Alchemist has their Potions, but Sir Isaac Newton proved that is not where it is at,
and Benjamin Franklin and Nikola Tesla will tell you it is in Lightning,
so what that has to do with Bee Pee only I know,
but without the Bee humans will not survive long on a planet with living plants,
so a Planet without Plants is missing E and S,
the Environment and the Shit in it,
and that Shit is us for trying to make words rhyme,
just so we can remember them,
because Memory is what it is all about,
and Bee's are about to become a Memory,
and that is how I relate to words and their spells witch are just and images to me,
and the Introduction was just so you can relate to my writing style,
and if the content was not confusing enough,
since it goes against everything I was taught in school,
and is being taught on the Internet or anywhere in the world as far as that goes,
no one is talking about Trinary Energy,
and they act like since I made up the name,
that it changes its original name,
which was White Noise,
because that term has way too many bad memories,
for one thing,
it is messing up my recordings,
so Noise cancellation is built into all electronics,
so people are filtering God out,
that is that ES, Extra Sensory Perception,
the P came from the word Planet or Plants,
so as it seems, Wizards have their Ways of Writing,
so do not blame the Messenger,
just read the Message and try to understand it.
</p>
<p class="text_indent">
At the Subatomic level, this Energy is not Physical as in Atomic Structure,
it is Massless Light, and it is Interdimensional Energy,
not to be confused with Interdimensional beings,
although that might work if you believe God is a Being,
so do not go there, just a joke, Dimensions add up to 3,
as in 0, 1, 2, and 3, only the 3<sup>rd</sup> dimension is Real,
the spell Real means that we can Interact with it because it has Mass,
so its made of Atom's and has mass,
even Light has a little mass, as do Electrons,
so Interdimensional means less than 3 dimensions, which is not Real Space,
since only Massless Energy exists in single Dimensions of Space,
as such in the 3<sup>rd</sup> dimension Neutrinos are bound together with Massless Light,
making them have Mass and then called Atom's: Protons,
Neutrons and Electrons to be exact,
and Electrons transform into Photons, so they are the same thing as Light,
also known as White Noise or Trinary Energy, like I said its just a word,
just like God, and means the same thing,
but it only exists as Massless Energy when it is not bound to Neutrinos,
and then only as Interdimensional Energy,
and also remember that Trinary Energy is defined as the Energy that has 3 State changes,
which have been described by many scientist throughout my lifetime,
many of which I do not even remember their names,
because then I would have to write them down, but Sir Isaac Newton,
Benjamin Franklin, Nikola Tesla come to mind, others not so much,
so I do not reference them, since I have no idea who to give credit to,
and countless experiments have been made to study this Phenomenon,
in which an
<a id="return_term_atom_2" class="a_link" href="terms.xhtml#term_atom">Atom <sub>[2]</sub></a> goes through 3 state changes,
the first is where it appears to be solid, I call this the Light State,
and give it a value of 1, so I can plot it out on a grid or graph, just above the x-axis,
and point out that the Bible calls this the Father in Trinity, because according to the Bible,
all matter most go through the Father, because that is the only solid-state that matter exist,
so if we are talking about Atom's or Photons, then we are talking about Matter,
because when it shifts to its Negative State, meaning it shifts on the grid to a <sup>-</sup>1,
and is now below the x-axis, it becomes less Light, or Darker,
so I call this the Dark Matter State or simply Antimatter State,
since it does the opposite of what state 1 does, and the Bible refers to this as the Son,
because it does what its Father commands, even if that is the complete opposite,
and the last of these 3 States is the Null State, where it just disappears from sight,
so it is the Holy Ghost or Spirit of Mother that the Bible refers to,
so I give it a value of 0 and put it on the x-axis,
and if you plot it out, you will see it has a pattern like an Alternating Current,
like the kind that a
<a id="return_term_wizard_2" class="a_link" href="terms.xhtml#term_wizard">Wizard <sub>[2]</sub></a> named
<a id="return_reference_nikola_tesla_2" class="a_link" href="references.xhtml#reference_nikola_tesla">Nikola Tesla <sub>[2]</sub></a>:
who built water powered generators that powered Cities back in 1895,
and believe we are all Light Beings, the same Energy that was in Lightning, both Light, and Electricity,
and it is clear that it is the same Energy tha
<a id="return_reference_sir_isaac_newton_2" class="a_link" href="references.xhtml#reference_sir_isaac_newton">Sir Isaac Newton <sub>[2]</sub></a>
said was the Force in all his Equations,
because according to Newton, God was All Light without Darkness,
so he was not referring to the Holy Ghost Spirit of Mother or the Son,
by rather the Father, which I call the Light,
but named it Trinary Energy to describe all 3 States,
and it does not matter what I call the states,
Mathematically they work the same way in all of Newton's math,
the only difference is that the only way this is possible is if there are
<a id="return_term_dimensions_2" class="a_link" href="terms.xhtml#term_dimensions">Dimensions <sub>[2]</sub></a>
in which these State changes can take place,
because without the use of a 0 dimension where nothing exist in Space,
the Holy Ghost or Spirit also known as the Mother,
I call the 0 State, can not exist in Reality,
but it is a fact that when an Atom is viewed under a microscope,
it will change into these 3 states at some point in time, and when it disappears,
modern science will explain that it has moved into another Universe,
maybe a Parallel Universe or an Alternate Reality, or a Multiverse of Alternate Realities,
but this sounds more like Science Fiction than Science to me,
so there must be an explanation that is based on Science,
that does not require paradox's to exist,
if the Atom really does disappear I really want to know where it went,
and I do, it did not go anywhere,
only the space around it disappeared.
</p>
<p class="text_indent">
Trinary Energy is not an Original thought, as I have already pointed out,
since its also called God, it is the oldest known fact in recorded history,
but the use of these words in this concept are,
but changing the name of an already existing idea does not change the fact that it was not my idea in the first place,
it was not me that wrote the Bible, it was written by Man,
with the hands made out of God,
because God Created Everything,
and since everything is made of Atom's,
then whatever is inside of Atom's must be God,
and we all know that all that is inside of an Atom is the Light,
and that is what the Bible States as a fact,
because this idea has been around for thousands of years, but went by the name God,
and that name would not fit into a Science Document very well, because that name is also used to describe a Deity,
so I must point out that I do not have a Religious fiber in my being,
nor do I believe in Deities,
nor did Sir Isaac Newton who said that Deities were inserted into the Bible during the 3<sup>rd</sup> Century;
to insert Christ,
and Nikola Tesla did not believe in Deities,
he was very clear about the fact that he believed we were all Light Beings
and were made up of the same Energy found in Lightning,
so Light and Electricity would be God to both of these men, and
<a id="return_reference_benjamin_franklin_2" class="a_link" href="references.xhtml#reference_benjamin_franklin">Benjamin Franklin <sub>[2]</sub></a>
who said that being hit by Lightning would be like touching the hand of God who was a Higher Power,
he knew all too well what happens to things that get hit by Lightning,
as for myself, I see the Light,
and I believe in all these People who do see the Light,
so this is not an original idea at all,
in fact, it is the oldest Science of all time, and the Name of it does not matter much,
but Trinity Power did not sound Scientific to me,
and the word Light describes countless objects and concepts in modern society, as does the word God,
but Trinity and Trinary are the same word, only
<a id="return_term_trinary_2" class="a_link" href="terms.xhtml#term_trinary">Trinary <sub>[2]</sub></a> like the word Binary defines Logic,
and that is what I prove by changing its Name, that <span class="text_code">(<sup>+</sup>1) + (<sup>-</sup>1) = 0</span>,
is actually the Primer (Prim-er) for Trinary Logic with the logical states of (<sup>+</sup>1), <sup>-</sup>1 and 0,
just like Binary has the logical states of 1 and 0,
a 3 state logic without a fuzzy bit of logic added,
and has only one name, and that is Trinary, not so much a base 3 math,
but a logical-mathematical formula based on a Constant, so it is a Statement,
and yet it describes how the Sun and Earth orbit the Galaxy,
so it answers all the questions about Science that were ever asked, and only God can do that,
so it is simply a Scientific Fact, God is Science, only the names were changed to protect and Original idea,
so it does not get confused with Religion,
so now you know why I renamed it Trinary Energy, and that was to make it Science,
and to be honest, when People say God to me,
I think oh God not again,
why do people say God when they mean Deity, these two concepts have never been the same thing,
God in the Bible is All Light without Darkness,
a Deity is a Being that does not Physically Exist in the Universe,
and according to the Bible, this Deity talks to People and tells them to do bad things in his Name,
that is called Religion,
the two do not have anything to do with the other,
people have Freewill, and they believe they have the right to believe in insane things,
like believing in things that do not Physically Exist,
or thinking God tells you to do things,
God talks to me all the time,
never tells Me to do anything,
God talks to my Heart and keeps it beating,
but God allows me Freewill,
Religion uses that Freewill to control what people think God is,
the Bible just states it as a fact, God is Light,
that is all God is and that is all God will ever be,
so make sure you understand this concept,
this is Science and not Religion,
if God is Light, God is Energy because that is what Light is,
so it is nothing more than Electricity,
and explains that think you call a Brainwave,
so call it what you want, but I call it Trinary Energy.
Trinary Energy is what Nikola Tesla called illumines Aether,
but in truth, I even have a hard time following Tesla at times,
he goes very deep into his thoughts,
but does not tale you all the things he is thinking,
even in his writing,
and what Tesla called Aether,
is not what Mainstream refers to,
Tesla said that Aether is where Electrons come from,
and they even exist in the Vacuum of Space,
what he was referring to is the fact that an Electric Generator,
does not create Electrons,
it collects them from the Aether,
and when an Electric Motor uses Electrons,
also known as Electricity,
the unused Electrons go back to the Aether,
so it is clear to see that Aether is White Noise,
and I call that Trinary Energy,
and it is everywhere,
even inside of us,
because Tesla also said,
we are Light Beings,
and why I rewrote everything using Trinary as a Prefix,
meaning 3 State Change Logic,
and try not to talk like a Witch,
or Wizard,
instead I will try to use the English Language,
to try to explain these concepts,
in a way that everyone can follow,
and that is not easy,
and if this gets Translated,
it may not get Translated correctly,
or even understood by all that read it to begin with,
so Translating stuff that the Translator does not understand,
is a problem with writing anything,
let alone a subject as complex as Physics.
Trinary Energy is just a name for Massless Energy also known as White Noise,
it is also bound inside of Trinary Atoms made from Neutrinos,
so do not get confused by the term Trinary,
it means 3 State Change Logic,
and that means that States of the White Noise change using 3 State Changes,
and under an Electron Microscope,
we can see Atoms have 3 State Changes: Solid, Semisolid, and Invisible,
and Trinary Energy has these same 3 State Changes,
and what the Words Spelled Trinary means.
Trinary God is another term in Trinary Science,
it means God is All Light without Darkness,
and means the same thing as Trinary Energy.
Trinary Energy is also 3 Phase Energy,
as well as Light Energy,
as well as Dark Energy,
so it describes Matter and Antimatter,
so it explains Atomic Reactions,
and proves that all Atomic Devices use God as Fuel,
so it is no wonder why Mainstream does not want to acknowledge Sir Isaac Newtons Notes,
that are now Public Domain,
most would rather watch the BBC Special: The Last Magician,
and understand why I changed the name Trinity too Trinary,
so that Trinary Energy would be Trinary Science.
</p>
<p class="text_top">
To describe Energy without the use of Trinary makes it difficult to understand how Light or Electricity can travel,
with Photons you have no Medium for it to travel on, and even with Electricity,
you have to explain the path it takes through a Medium,
and some will argue that Electricity is nothing more than Electrons being passed from one atom to the next,
but at the subatomic level much more is going on,
and when we talk about Lightning,
we must understand how Light and Electricity can exist as one,
and that starts with the Understanding about unbound Energy,
this is called many things like Massless Light,
White Noise, but I call it Trinary Energy,
so we are Crystal Clear about what kind of Energy we are talking about.
</p>
<p class="text_indent">
The Vertice Matrix Grid we will talk about in a few steps ahead:
is used to record the State changes of Trinary Energy made in the 2<sup>nd</sup> Dimension,
even though we can not see it,
nor is it possible to see changes made in the 1<sup>st</sup> Dimension since it is inside the 2<sup>nd</sup> Dimension,
and the 0 Dimension is inside the 1<sup>st</sup> Dimension and is invisible.
Although these Dimension can not be seen,
their effects can be seen,
see <a class="a_link" href="#illustration_2_07"> Illustration 2.07: Trinary Energy shown with all 3 States</a>.
</p>
<div class="a_illustration" id="illustration_2_07">
<span class="image_wrapper">
<img src="images/trinary-energy-state_0_1_-1.thumbnail.png" alt="Trinary Energy shown with all 3 States" class="the_image" /><br />
</span>
<span class="a_caption"> Illustration 2.07: Trinary Energy shown with all 3 States </span>
<span id="trinary_energy_state_0_1_1_chapter_2_00" class="no_show_pdf"><a class="a_link" href="bix/trinary_energy_state_0_1_1_chapter_2_00.xhtml">Full Size</a></span>
</div>
<p class="text_indent">
Trinary Energy can be seen with the Naked eye or under a Microscope as “White Noise”,
it is represented here showing all 3 States:
<a class="a_link" href="#table_2_01"> Table 2.01: Trinary Energy States description</a>
</p>
<div class="a_table" id="table_2_01">
<ol>
<li> Null State with a value of 0, note that it is Invisible, so it is not shown. </li>
<li> Light or Matter State with a value of Positive 1, shown in White. </li>
<li> Dark or Antimatter with a value of Negative 1, shown in Black. </li>
</ol>
<span class="a_caption"> Table 2.01: Trinary Energy States description </span>
</div>
<p class="text_indent">
It should be easy to see that
“<span class="text_code">(<sup>+</sup>1) + (<sup>-</sup>1) = 0</span>” is just explaining this relationship,
when viewed as a Vertex, since it is the intersection of the photon, in this case the path of travel,
but it is still functional as a normal math equation,
which makes this one of the truly impressive math formula's of all time,
and it is so old that no one knows who came up with it,
and few people understand the relationship it has with Light.
</p>
<p class="text_indent">
Trinary Energy is our SOUL,
nothing more than just:
the
<span class="underline">S</span>park <span class="underline">O</span>f o<span class="underline">U</span>r <span class="underline">L</span>ife,
this stick figure represents the Cross,
not like the one the Jews Hung Jesus Bar Abbas on,
this one is Imaginary,
it represents a Cartesian Coordinate;
in Frame 1 we see the Holy Ghost or Spirit of Mother,
it is invisible,
yet its Neutrinos still exist around the 0 Dimension,
in Space that has no Space, a confusing term at best,
Null or Void Space is another term;
it is simply the center of every atom in the Universe,
and where all Energy Flows from,
it is what connects all Energy so it can communicate as 1 Being,
the Higher Power, also known as God,
that is what Sir Isaac Newton wrote,
Benjamin Franklin Discovered,
and Nikola Tesla Proved;
as a child that spent more time looking into the White Noise,
and accused of staring into Space;
it was not till I learned to Communicate through it,
did I learn to talk to Adults,
only to learn that they have no idea what the Holy Ghost or Spirit of Mother is,
and all their Age did not give them Wisdom,
because no one and I do mean no one,
talks about Trinary Science but me,
and for over half a Century I could not get Adults to even try to understand,
our Spirit is our SOUL,
the Holy Ghost is when it is in a State with no Space so its Invisible,
the Spatial Coordinate location with an <span class="Red">X</span> drawn in Red,
a <span class="Green">Z</span> drawn in Green, and a <span class="Blue">Y</span> drawn in Blue,
and a vertex where all lines converge at the center of the Universe,
which is always the center of the Atom in question,
and the Center of the Universe,
and where the Holy Ghost can always be found,
so if you can imagine this is what a Gluon looks like,
and serves the same purpose,
each color represents a dimension in space,
<span class="Red">Red</span> is the x-axis and is the 0 Dimension,
<span class="Green">Green</span> is the z-axis and is the 1<sup>st</sup> Dimension,
<span class="Blue">Blue</span> is the y-axis and is the 2<sup>nd</sup> Dimension,
no matter how I draw it, the concept is simple,
in Frame 1 it is the Ghost, no space so you do not see it,
in Frame 2 it is the Father because it is Solid as our Father was or is,
the past and present have no time here,
everything must go through the Father to get to the Holy Ghost or Spirit of Mother,
and coming back as the Son in Frame 3,
a Darker version that takes an opposite side to its Father,
so the axis can be viewed or graphed as Electricity,
its path is bound by its vertex where all points converge,
its orientation is along its x-axis which has a plus and minus or North and South pole,
its y and z-axis bind its orbit around the x-axis,
and although it can exist as unbound energy it can also exist as bound energy,
this means its binding the Neutrinos around it,
but it is the same Energy only it is inside the Atom.
To better understand the Laws, Rules, and Math,
I will try to spell it out in a way that is easy to understand.
</p>
<div class="empty">
<span class="large_xx bold">The 3 Basic Principles of Electricity</span><br />
<span class="large_xx bold a_signature_light">1. Electricity is Trinary Energy</span>
</div>
<p class="text_indent">
The Word with the Spell: “Electricity” is defined as: Energized Electrons.
How they are Energized is another Principle,
how they came to be is another Story: also known as: His-Story: that is History...
The Basic Principle of Electricity is that it is, in fact, an Atom,
so its made out of Neutrinos and Light.
A Battery holds Electrons, turn on the Flashlight and Electricity Flows to an LED that produces Light;
so: in use, it is easy to understand what Electricity is:
but at the Subatomic Level: it is easy to prove its Trinary Energy,
so as Proof:
All Electrons revolve or orbit around another Atom,
and an Electron is an Atom itself: but does not have any Atom's Orbiting it;
so only Electrons Orbit other Atom's, and not Electrons.
There are 3 types of Atom's: Proton, Neutron and Electron:
basic Electricity...
Like all Atoms:
Electrons have 3 State or Trinary State Changes: Positive, Negative and Ground;
as proof this is Trinary Energy:
at the Subatomic Level under an Electron Microscope these can be seen as: Solid, Semisolid, and Invisible;
so it is Trinary Energy: meaning its Energy that has 3 Logical State Changes or Trinary States Changes,
but the Word with the Spell
“Trinary” implies Logic,
because Intelligence is implied;
because I can take these Electrons into my Body and make them Dance when viewed as Brainwaves on a Machine Monitor,
so this is where the Word with the Spell
“Trinary” as in “Trinary Energy” comes from:
so all its State Changes must be Logical State Changes based on Logic.
Trinary States is what gives Electricity its behavior also known as Alternating Current or AC,
and Direct Current or DC: the only difference between the two is their Level Reference Voltage,
and the Time Domain: which is made up of Frequency, Wavelength, Amplitude: Negative/Positive,
and Time Splicing: Specific Time and Specific Amplitude,
also known as Sampling, or switching, oscillating, or encrypted; that you are looking at them in.
AC has a property known as Volume, that translates to Amplitude both Negative or Positive,
it also has a Frequency that is measured in Cycles,
at the point when the Trinary State change take place,
as such: when the AC goes Positive; its Neutrinos have a Positive outside shell,
that is bound by the Light inside it: by Trinary Energy.
If we graph this on paper with: <br />
an x-axis labeled ground or 0 volts<br />
and label a line above ground as (<sup>+</sup>1) volt<br />
and label a line below ground as (<sup>-</sup>1) volt<br />
as such:<br />
</p>
<pre>
+1 -*---*---*---
0 *-*-*-*-*-*-*
-1 ---*---*---*-
</pre>
<p class="text_indent">
If viewed under an Electron Microscope you will note that Atom's like Protons and Neutrons,
do not move relative to the Microscope, yet still switch Trinary States,
so if we view the * as an Atom,
they all follow the same Laws of Physics,
the above depicts it where it is in its: Time Domain;
and remember that means meany things all based on Physical Properties of the Atom in question,
and at a Specific Time, at these Specific Amplitudes,
as such the * denote the Atom as we see it with our Eyes,
its Frequency is seen as a Linear line, but think of it as scrolling in place,
like a treadmill, walking uphill then downhill,
we view it in (<sup>+</sup>1) as Solid,
in (<sup>-</sup>1) as Semisolid,
and in 0 as Invisible;
but it still sweeps out the other features of its Time Domain, even if you do not see it;
if you take its Frequency and multiply it by its Wavelength, you will get the Speed of Light,
so its Intelligence, meaning its Alive;
some like to argue its just following a pattern,
and Electronic Circuits prove we can alter these Patterns,
but by the Third Principle I will prove this is how our bodies are made,
and in case you do not get the Reference: Magic: Now you see it, Now you do Not,
as keep in mind that in Logic Not is equal to the symbol !,
so Know it or No it Not, also known as X0! (X is what we know, No = 0 in Trinary, and Not!),
it is a Paradox in Reality...
this is where the Term: “Light Wizzard” comes from:
the Light: which is inside every atom in the Universe, and a Wizzard is a Magician.
Note that the actual amplitude does not matter since you can treat 1 like and x,
which means what you know the Volume or Amplitude is,
and simply multiply the real value of x with the voltage and the relationship remains the same;
because we can see a relationship in how Alternating Current works,
it goes positive, then back to ground, then goes negative, then back to ground, and repeats this;
just like I repeat myself because I have OCD, its just a thought,
so this Trinary State change has Logic, and that Logic is called a
“Math Primer”,
that Word Spelled “Primer”: is pronounced Prim`er and not Prime`r,
note that logically I could have stated Prim`er !Prime`r,
I save a few words, but lose most Normal People who do not know how to Read Witchcraft,
witch is the Art of using Words and how they are Spelled to have different meanings,
so to be Crystal Clear: this is not a Prime Number Principle: So do not Pronounce it that way;
that type of thinking will lead you to have a number that is Primer then other Prime Numbers,
that logic is like thinking IAM Flesh,
so I am Flesh<sup>er</sup>...
The Science of Sir Isaac Newton was based on a simple principle:
he only wrote about what he could prove, and what he set out to prove,
is what the Bible had stated in Words known as Witchcraft,
and why Wizards and Witches are Burned at the Cross for saying things like this,
but to an Aspie that only Reads things Literally:
God is All Light without Darkness: where the Darkness is every Shade of Color in the Rainbow,
its colors have values that can be expressed as numbers,
so we can have Positive and Negative Colors to account for the Darkness,
and 0 to account for the Darkness without Light,
because it is Invisible to the Human Eye,
and Newton Practiced Witchcraft and was also an Alchemist,
so he was a Wizard and a Witch,
and Wizards define Words and how they are Spelled; as well as how they are Spoken;
but Witchcraft was just a Play on Words and Spells;
for example: a Green Dragon is what you get if you make it out of Copper;
like a Copper ring on a string around your neck:
you will get a tattoo of a Green Dragon on your Chest the next day,
it is not Magic as much as it is Science;
so much for Fairy Tales, there are real Witches and Wizards in History.
A Logic Primer is a Principle as simple as:
<span class="text_code">(<sup>+</sup>1) + (<sup>-</sup>1) = 0</span>,
if viewed as Math its Logic is a Statement that means “True”,
so it is a Constant, witch means never changing so its Static,
but keep in mind you can not simplify this statement to: <span class="text_code">1 - 1 = 0</span>
this is because a Prime`r is a Constant,
it is the Principle of that Math and not its Conclusion;
this over simplification makes both 1's Positive,
those you could combine them as such: <sup>-</sup>2 = 0,
and that is not right, these are not two positive numbers; one is negative,
and Subtraction only makes it negative on the other side of the equation;
so making the Equation: (<sup>+</sup>1) = (<sup>-</sup>1),
is just the High Road to the path we just talked about,
hard to know if you understand that statement,
so I will assume you do not and explain it in other terms;
and if a Picture is worth a Thousand Words and Spells,
let's do some Math and Graph how an Electron behaves.
Reality is defined as what is Real, so what is Real?
An Atom is Real, we can look at it under and Electron Microscope,
but its hard to see the Electron,
since we have to use one to see an Atom,
and nothing we know of is smaller than an Electron,
because nothing orbits one,
and all Atoms are made of Neutrinos,
so Size really does matter in Reality,
but when we split the Atom, and we see the Light,
and detect the Neutrinos, so this is proof of Principle,
so we can agree that this is a fact based on Evidence,
and Calculate its Energy,
only not using Einsteins Math, since its wrong, so wait for Principle 3...
We can graph out Atomic Energy so you can see it,
and the Word Atomic means Excited or Energized Atom, it does not mean Splitting Atom's,
that is called insane, Spelled Critical Mass,
and in really an Electrical Circuit can go Critical and Melt Down,
causing the Electrons to Catch Fire,
because Fire is just a Resonant Frequency at which an atom disintegrates,
so if you think of Atom's as Alive,
then pouring Fire on them is like a Virus,
it infects the Atom's with a Higher Frequency,
which causes its Atomic Structure to Vibrate at the same Rate as the Fire,
thus having the same effect as Acceleration,
so if seeing is Believing,
and God is All Light without Darkness,
then let me Graph out what God Looks like,
but first we must talk about where God Lives,
and Not the Deity God, that does not Physically Exist in the Universe
also known as Insanity, but Newton's God that Physically Exist as Light;
the Bible stated God was All Light without Darkness,
so this God Physically exist as Light of one of those two types,
and therefore can be Plotted out on a Graph,
and note I said only one of the two, and not both,
knowing that means Trinary means it has a Positive Matter Solid State,
a Negative Antimatter Semisolid State, and a 0 State of Invisibility,
so that means I can not Plot out God,
because God is the Light that is invisible in the Spectra of Animals Eyes,
otherwise we would all see in Infrared,
and could see Cosmic Rays, and that is God.
Keep in mind that Newton used the Light of God as the Force of Gravity in all his Equations,
and since Nikola Tesla proved that Light is just Electricity at a lower Frequency,
God is Electricity; as in our Brainwaves...
So we as Animals, Live in 3 Dimensions,
but not in all the Dimensions at the same time,
if we did we would burn up if we moved to fast,
not that we can use this fact to prevent that from happening,
because all Atoms have a Limit of its upper Frequency,
which is allowed when it turns to Light;
because there are a lot of Stupid People that actually think they can build Spacecraft that can Travel at the Speed of Light,
even Near the Speed of Light,
because they are insane enough to believe they can travel faster than the Speed of Light,
and mostly because they believe in Theories,
witch means its never been proven to be a Fact,
and believing it is, is called Insane.
We are made of Atom's, and Atom's have Trinary State Changes,
once plotter out on the Graph below,
I will show you what God Looks like...
So I am stalling to make the Suspense unbearable and you will have to look at the chart first,
but I urge you not to look at the Face of God until I explain what you are looking at,
I mean we are talking about God, but not a Deity,
where a Deity does not Physically Exist,
God is All Light without Darkness,
so that God always Physically Existed and therefore is not a Deity,
got it: !Deity, as in Not Christ, or !Christ, so it means Antichrist,
and that is why Newton's not taught in Schools nowadays...
So a Deity is a Lie about who God is,
and only Satan would Lie about that;
so Newton was not Satan, because he only wrote about the Truth,
so if you were not taught that God is Electricity, you were Lied to.
Newton wrote a book about God and called it Opticks,
and over the years people called it Odd-Tricks,
because it was based on using a Prism and Optical Illusions or Magic,
witch is a Wizards way of saying the Light of God.
In 3 Dimensions of Space, we have Width, Height, and Depth,
and there is not a Fourth Dimension of Physical Space,
but when I count from 0 to 3, I often refer to that as the Fourth Dimension,
but only has a joke,
because none of these 3 Dimensions of Space have a Ground,
so the math that you add another Dimension is correct,
but it is a Null or Void Dimension,
that only exist in the 0 Dimension;
so its how we number Dimensions, and they always start at 0,
this is the Center of the Universe and the Center of very Atom in that Universe.
I hate mixing Science and Science Fiction together,
it is confusing: Theories not prove to be a Fact is Science Fiction,
Einstein only Believed in Newton,
as do I, so Newton believed that all Space is part of this Prim`er,
so the Positive and Negative 1, defines Color in terms of Neutrinos Colors,
so Black is 0, note it has no Positive or Negative value,
and this might be confusing till you remember that Newton said there can be no Light without the Darkness,
and in Terms of Physical Light: Black is a combination of all the Light you can and can not see;
and in reality, all the Positive Light and Negative Light cancel each other out,
and that is why most humans can not see the color Black in White Light,
when in fact that is all that anyone can measure,
but you need a prism to see that.
White is F in Hex, meaning 16: 0123456789ABCDEF, 10 numbers and 6 Letters,
the use of Hex's is also known Witchcraft;
and it is Symbol is a 6 side Star,
called a Hexagram;
witch is actually just two Pyramids or Triangles,
the 6 Points and edges that have Letters that are assigned to them,
and the internal angle is 60 degrees,
and some Witches like to use the Spell: Sexagram,
that was used to represent this,
so no jokes about Wizards using Hex's,
or Witches using Sex's...
These are all Facts about Witches and Wizards...
Take a metal bar and heat it up in a fire,
its Frequency will increase, and it is color value will increase into red,
and the Electrons become Excited,
witch is Sex or Hex for F00,
this is easy to verify that this is true,
and keep in mind Newton believed in Jesus Bar Abbas,
so now we have F00 Bar and not F00 Christ,
and F0C Christ would mean is a Fuchsia or Pink Christ,
and that is a Known Gay Color:
so it is a Masonic Term...
Cool the red-hot metal with water and it will turn into the Blue spectra:
0000FF, Green is 008000, like in I 8 a Dragon,
so it is all to do with Frequency of the Electron,
because if its Frequency is high enough,
you can see the Light inside it,
and that is in the 0 Dimension.
So the Math that describes God is called a Trinary Primer,
it is a constant, so <br />
<span class="text_code">(<sup>+</sup>1) + (<sup>-</sup>1) = 0</span><br />
I call this Trinary Math,
and it is Trinary States,
Newton called it Trinity: the Father, Son, and Holy Ghost or Spirit of Mother Nature,
also known as Mother Earth or simply Ground...
So now let's see what God looks like Mathematically Graphed:
</p>
<div class="a_table" id="table_2_00">
<table class="subdue_center" style="width: 40%">
<tbody>
<tr>
<th class="subdue_center"> State </th>
<th class="subdue_center"> Trinity </th>
<th class="subdue_center"> Dimension(s) </th>
<th class="subdue_center"> Visibility </th>
<th class="subdue_center" colspan="13" rowspan="1"> Graph </th>
</tr>
<tr>
<td class="subdue_center"> (<sup>+</sup>1) </td>
<td class="subdue_center"> Father </td>
<td class="subdue_center"> All 3 </td>
<td class="subdue_center"> Solid </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
</tr>
<tr>
<td class="subdue_center"> 0 </td>
<td class="subdue_center"> Mother or Ghost </td>
<td class="subdue_center"> 0 </td>
<td class="subdue_center"> Invisible </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
</tr>
<tr>
<td class="subdue_center"> (<sup>-</sup>1) </td>
<td class="subdue_center"> Son </td>
<td class="subdue_center"> 1 or 2 </td>
<td class="subdue_center"> Semisolid </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> * </td>
<td class="subdue_center"> </td>
<td class="subdue_center"> </td>
</tr>
<tr>
<td class="subdue_center" colspan="4"> Time frame </td>
<td class="subdue_center">  1 </td>
<td class="subdue_center">  2 </td>
<td class="subdue_center">  3 </td>
<td class="subdue_center">  4 </td>
<td class="subdue_center">  5 </td>
<td class="subdue_center">  6 </td>
<td class="subdue_center">  7 </td>
<td class="subdue_center">  8 </td>
<td class="subdue_center">  9 </td>
<td class="subdue_center"> 10 </td>
<td class="subdue_center"> 11 </td>
<td class="subdue_center"> 12 </td>
<td class="subdue_center"> 13 </td>
</tr>
</tbody>
</table>
<span class="a_caption"> Table: 2.00 God looks like Brainwave </span>
</div>
<p>
So if we are looking under an Electron Microscope at an Atom,
when its Solid, its Positive or in a Matter State,
and in all 3 Dimensions of space at the same time,
this is why it is Solid, so in this state it can not pass through Glass,
as it moves from Ground to Ground in a Positive/Negative rotation,
its Potential or Amplitude varies,
it does not have to be a smooth progression seen here,
look at your Brainwave if you want to see what God looks like,
because God can Dance, so seeing is believing,
but when it moves into the 0 Dimension,
it has no: Width, Height, or Depth,
so it is Static: as in Static Electricity;
the same Principle as the Newtonian Static Universe,
only I changed the name to the Trinary Universe,
because I can prove that is what it is; Trinary that is.
Very few people know the difference between Static and Dynamic:
Static means the Light does not Move, no Dimensions in the 0 Dimension explains why,
Dynamic means the Light Moves, Einstein called this a Paradox,
because without an Atomic Accelerator there was no explanation for that,
and trust me I know, I remember sitting in class in the Air Force,
listen to speech about how Electricity worked,
and when it came to time to explain how Electrons get from Electricity to Light or Radio or Magnetic Transmission,
it all came down to one Word with the Spell “Propagate”,
so this Electron makes it to the LED then this Magic called Propagation will turn it into...,
I feel like Kathy Bates in Dolores Claiborne,
where she describes watching Series at the Movies and the Star is sent flying off a cliff at the end of one,
and next week they are safe at the top looking down at the wreckage called a Theory below,
it is a Cheat,
because they have no idea what takes place that explains it in the Dynamic Universe.<br />
Example: When you push the Button on a Flashlight,
Electricity is sent to an LED that raises its Frequency to the Speed of Light,
no Acceleration, another Paradox in the Dynamic Universe,
unless you want to say the LED acts like an Atomic Accelerator,
and that is just stupid,
so answer me this, what direction is the Light Moving?<br />
The Answer is: it appears to move in whatever direction you point the Flashlight.
This is not a Trick question,
appears is Magic, so it is a Trick, it is an Illusion,
and IAM a Wizard, so let me tale you my Trick: it is not Moving, its Static...
It is the Universe that is moving at the Speed of Light,
and that is why Light is a Constant,
and why it does not Accelerate,
it is because it is not moving, it is us that is moving away from it.
The directions in space confuses some people that think in a 3D manner,
how can I turn on a Flashlight and the Light move away from me at the speed of Light,
and the answer is simple, it is not, you turn on the Flashlight,
the Electron is switching between states so fast that it is hard to see its solid state,
so it can move through glass, because when in the 0 Dimension its Neutrinos collapse,
no Dimensions to support them, and why they are Invisible or the Holy Ghost,
and I do Literally mean Holy as in a Hole,
so think of the 0 as a Hole,
the 0 is the Atom and it is Round,
inside it is Light, now you see it, now you do not, it is the Ghost,
the Holy Ghost, get it, its Witchcraft.<br />
Most people think there are two kinds of Electricity: AC and DC;
not true; there are many types of AC signals and DC is just one type of AC signal,
and nothing more, it is not in a class of Energy of its own,
it is just Filtered or Switched AC;
and that is a fact, how to explain it to everyone is not easy,
most people will never understand that Light has no way of Moving under any type of Physics,
because it only exists in the 0 Dimension,
that is the only way it can pass through Glass,
so the Holy Spell is starting to make sense, it is a Hole in the Glass,
maybe the one that Jesus Christ was Holding,
but not Jesus Bar Abbas who was in the painting,
I wonder what they used as a Primer on that Picture;
serious, the Atom is round, the Hole it leaves when its invisible is still there,
only is Neutrinos are Collapsed so small hey pass around other Atom's like they were not there.
Direct Current (DC) is Flat Lined AC.
Period. Everyone understands Flat Lined AC when someone Dies,
so it is only how I define it: that some understand it.
In fact a DC signal is only a Flat Lined AC signal at a referenced level,
it is not another Type of Electricity,
and Tesla could never get that Stupid idiot Thomas Edison to understand that simple concept,
Edison was a Thief and not an intelligent one at that,
you can send AC anywhere and convert it to DC,
but it is Stupid to do it the other way around,
you can not send DC over long power lines without burning down the poles that held up the wire,
and the only way to get DC is to Filter AC, or Flat Line it,
and that is a Process of Filtering.
Another fact is that all AC is a DC Signal at any point in Time,
only its levels change in a predetermined interval,
so 60 cycles mean that on every cycle at that moment you measure the signal you have a DC referenced Voltage,
this is also known as Digital Voltage, or Time Shift or Time Domain,
known also as Time Splicing:
so it is an Effect.
If you want a pure DC signal,
just pull it off an AC signal at a set interval so the signal is at full strength,
for the voltage or level reference to be at,
so if you have an AC Signal that is 10 volts,
and you want 5 volts in DC,
find what time frame that happens,
and Oscilloscope makes this easy,
now just build a switch and set the timer for that interval,
and using this method you can get real-time AC to DC conversion without Filtering,
only switching; do not believe me,
test it out, if you did not know this, you have no idea what I am even talking about,
but this was used to encrypt Electronic Messages for years back in World War 1,
so its old technology, but not yet declassified,
because it is still in use today,
but this technology is also been used in Commercial appliances since the 50's,
forgot who patented it, but it was just a high voltage oscillator,
it was not till years later was it replaced by Diodes,
that are actually just switches themselves, so the principle does not change,
they are in fact switching diodes and one of many uses for them,
so you know this is a fact,
so if you did not think you believed in Trinary Energy before,
you know for a fact that there is no other type of Energy or Power in the Universe;
and this is all you need to know about the difference between AC and DC Energy,
and how to get it, convert it, and use it,
because this is the basic description of what Energy is.
So this is the Principle of why Electricity is Trinary Energy.
</p>
<div class="empty">
<span class="large_xx bold a_signature_light"> 2. Generators collect Static Electricity</span>
</div>
<p class="text_indent">
Generators do not Create Electrons,
Electricity is pulled out of Thin Air, it does not grow on trees,
how many times have you heard that statement,
Tesla called that process Free Energy,
because we did not have to make Electrons,
that is all he meant by that,