#ArduinoUNO

20 posts loaded — scroll for more

Text
draegerit
draegerit

„Zieh ab, wenn’s leuchtet!“ – Mini-Reaktionsspiel mit Arduino

„Zieh ab, wenn’s leuchtet!“ – Mini-Reaktionsspiel mit Arduino

Reaktionsspiele kennt jeder: Ein Signal erscheint – und man muss so schnell wie möglich reagieren.
Genau dieses einfache Prinzip greifen wir in diesem Projekt auf und machen daraus ein kleines Arduino-Spiel:


„Zieh ab, wenn’s leuchtet!“


Dabei steht nicht das Gewinnen im Vordergrund, sondern das spielerische Lernen.
Anhand eines einfachen Spiels lernst du, wie ein Arduino auf Sensordaten reagiert, wie sich Zeitspannen messen lassen und wie Ausgaben wie LEDs oder ein Piezo-Buzzer angesteuert werden.


Im Mittelpunkt steht eine Gabellichtschranke, deren Signal ausgewertet wird, um eine Reaktion exakt zu erfassen. Ohne komplizierte Schaltungen entsteht so ein Projekt, das sofort verständlich ist und gleichzeitig wichtige Grundlagen vermittelt.


https://youtu.be/deVJiPudjW0

Statt eines trockenen Beispiels entsteht ein kleines Spiel, das direkt Feedback liefert – sichtbar, hörbar und messbar. Ideal für Einsteiger, Workshops oder als kleines Projekt für zwischendurch.


Schaltung - Arduino Reaktionsspiel - Zieh ab wenns leuchtet

Arduino UNO als Schaltzentrale

Gabellichtschranke und Halterung

LEDs und Buzzer auf Breadboard

OLED Display und Starttaster

Spielidee & Ablauf


Das Spielprinzip von „Zieh ab, wenn’s leuchtet!“ ist bewusst einfach gehalten, damit der Fokus nicht auf komplizierter Technik liegt, sondern auf dem Zusammenspiel von Sensor, Signal und Reaktion.


Die Grundidee

Ein kleiner Steg steckt in einer Gabellichtschranke und unterbricht dort den Lichtstrahl. Solange der Steg steckt, weiß der Arduino: Das Spiel ist bereit.
Sobald der Lichtstrahl wieder frei ist, erkennt der Arduino sofort die Bewegung – ganz ohne mechanischen Kontakt.


Der Clou:
Der Spieler darf den Steg erst dann herausziehen, wenn das Startsignal erscheint.


So läuft eine Spielrunde ab
- Vorbereitung
Der Steg wird in die Gabellichtschranke gesteckt und blockiert den Lichtstrahl.
Das Spiel wartet auf den Start.
- Spielstart
Nach dem Drücken des Starttasters beginnt eine zufällige Wartezeit.
Diese Zufälligkeit verhindert, dass man „auf Verdacht“ reagiert.
- Startsignal
Die LED leuchtet auf (optional zusätzlich ein Piezo-Ton).
Ab diesem Moment zählt jede Millisekunde.
- Reaktion
Der Spieler zieht den Steg so schnell wie möglich aus der Gabellichtschranke.
Der Lichtstrahl ist wieder frei – das Signal ändert sich.
- Zeitmessung
Der Arduino misst die Zeit zwischen Startsignal und dem Moment, in dem der Steg gezogen wurde.
- Ergebnis
Die gemessene Reaktionszeit wird ausgegeben und kann mit vorherigen Runden verglichen werden.

Was lernst du bei diesem Projekt?


Auch wenn „Zieh ab, wenn’s leuchtet!“ auf den ersten Blick wie ein simples Spiel wirkt, stecken darin mehrere grundlegende Arduino-Konzepte, die in vielen Projekten immer wieder gebraucht werden.


Digitale Signale verstehen und auswerten

Du lernst, wie ein digitales Sensorsignal funktioniert und wie der Arduino erkennt, ob der Lichtstrahl der Gabellichtschranke unterbrochen ist oder nicht. Dabei wird klar, was HIGH und LOW bedeuten und warum Pull-up-Widerstände in der Praxis so wichtig sind.


Sensoren sinnvoll einsetzen

Die Gabellichtschranke dient hier nicht nur als „An/Aus-Schalter“, sondern als präziser Sensor, mit dem sich Bewegungen zuverlässig erfassen lassen – ganz ohne mechanischen Kontakt oder Prellen.


Zeit messen am Arduino

Ein zentraler Bestandteil des Spiels ist die Zeitmessung. Du lernst, wie der Arduino Zeitpunkte speichert und daraus Reaktionszeiten im Millisekunden- oder Mikrosekundenbereich berechnet.


LEDs und Piezo-Buzzer ansteuern

Das Projekt zeigt, wie Ausgaben richtig eingesetzt werden:
Eine LED signalisiert den Startzeitpunkt, ein Piezo-Buzzer kann diesen zusätzlich akustisch untermalen. So entsteht ein klares, für den Spieler verständliches Feedback.


Programmabläufe logisch strukturieren

Du baust eine einfache, aber saubere Spiellogik auf:


- Warten auf ein Startsignal
- Zufällige Verzögerung
- Start der Zeitmessung
- Auswertung des Sensors
- Ausgabe des Ergebnisses

Diese Struktur lässt sich später auf viele andere Arduino-Projekte übertragen.


Benötigte Bauteile


Für das Reaktionsspiel „Zieh ab, wenn’s leuchtet!“ werden nur wenige, gut verfügbare Komponenten benötigt. Viele davon hast du vielleicht bereits in deiner Bastelkiste.


- Arduino UNO*
(alternativ Arduino Nano oder andere AVR-basierte Mikrocontroller)
- Gabellichtschranke*
(optischer Sensor zur Erkennung des herausgezogenen Stegs)
- Drei LEDs mit Vorwiderständen*
(rot, gelb, grün – z. B. jeweils 220 Ω)
- Piezo-Buzzer*
(für akustisches Feedback beim Startsignal)
- I2C OLED Display*
(z. B. 0,96" mit SSD1306-Controller zur Anzeige der Reaktionszeit)
- 400-Pin Breadboard*
- Diverse Breadboardkabel* (Dupont-Kabel)
Bauteile - Arduino Reaktionsspiel

Hinweis von mir: Die mit einem Sternchen (*) markierten Links sind Affiliate-Links. Wenn du über diese Links einkaufst, erhalte ich eine kleine Provision, die dazu beiträgt, diesen Blog zu unterstützen. Der Preis für dich bleibt dabei unverändert. Vielen Dank für deine Unterstützung!


Alternative Mikrocontroller

Statt dem klassischen Arduino UNO kannst du auch den Arduino Nano, oder einen UNO R4 Minima/WiFi/Nano verwenden. Alle diese Mikrocontroller sind kompatibel mit diesem Beitrag.


v.l.n.r. - Arduino UNO R4 Minima - Arduino Nano ESP32 - Arduino Nano V3 - Arduino Nano R4
v.l.n.r. - Arduino UNO R4 Minima - Arduino Nano ESP32 - Arduino Nano V3 - Arduino Nano R4

Die Gabellichtschranke verstehen – warum wir Interrupts nutzen


Die Gabellichtschranke liefert ein digitales Signal:
Ist der Lichtstrahl unterbrochen, ändert sich der Zustand am Ausgang (HIGH/LOW).


Gabellichtschranke F249 - Ansicht von der Seite 2

Gabellichtschranke F249 - Ansicht von der Seite 1

Gabellichtschranke F249 - Ansicht von Oben

Gabellichtschranke F249 - Ansicht von Unten

Man könnte dieses Signal grundsätzlich an einem normalen digitalen Pin abfragen. Für ein Reaktionsspiel ist das jedoch nicht zuverlässig genug. Der Grund: Der Arduino fragt solche Pins nur in bestimmten Programmabschnitten ab. Währenddessen können andere Aufgaben laufen – kurze Signaländerungen gehen verloren oder werden zeitlich ungenau erfasst.


Da es in diesem Projekt auf Millisekunden ankommt, nutzen wir einen Interrupt.


Interrupts sorgen dafür, dass der Arduino sofort reagiert, sobald sich das Signal der Gabellichtschranke ändert – unabhängig davon, was das Hauptprogramm gerade macht.


Beim Arduino UNO stehen dafür die Interrupt-Pins 2 und 3 zur Verfügung. Nur diese Pins können Signaländerungen hardwareseitig direkt erfassen.


Für das Spiel bedeutet das:


- Der Moment, in dem der Steg gezogen wird, wird exakt erkannt
- Die Zeitmessung ist präzise und reproduzierbar
- Keine Reaktion geht verloren

Merksatz: Zeitkritische Sensorsignale gehören an Interrupt-Pins.


Welche Interrupt-Pins stehen zur Verfügung?

Nicht jeder Arduino stellt die gleichen Pins für Interrupts bereit.
Welche Pins genutzt werden können, hängt vom jeweiligen Mikrocontroller ab.


In diesem Projekt verwenden wir bewusst einen klassischen Arduino UNO, bei dem die Interrupt-Pins klar definiert sind. Wenn du jedoch ein anderes Board einsetzt, solltest du wissen, welche Pins Interrupts unterstützen.


Übersicht: Interrupt-fähige Pins nach Board
BoardBenutzbare Digitalpins für InterruptsUNO, Nano, Mini (ATmega328-basierte Boards)2, 3Mega, Mega 2560, Mega ADK2, 3, 18, 19, 20, 21Micro, Leonardo (ATmega32u4)0, 1, 2, 3, 7

Weitere Informationen findest du in der offiziellen Dokumentation unter https://docs.arduino.cc/language-reference/de/funktionen/external-interrupts/attachInterrupt/


LEDs und Piezo-Buzzer ansteuern - einfache digitale Ausgänge


Nachdem wir uns mit der Gabellichtschranke und den Interrupts beschäftigt haben, kümmern wir uns nun um die Ausgabeseite des Spiels.
Dazu gehören in diesem Projekt drei LEDs und ein Piezo-Buzzer.


Im Gegensatz zur Lichtschranke sind diese Bauteile unkritisch:
Sie werden ganz normal an digitale Pins des Arduino angeschlossen und per Software ein- und ausgeschaltet.


LEDs als visuelles Feedback

Die LEDs dienen im Spiel als klare visuelle Signale:


- Rot → Warten / Sperre
- Gelb → Vorbereitung
- Grün → Startsignal („Zieh ab!“)

Jede LED wird über einen Vorwiderstand (z. B. 220 Ω) an einen eigenen digitalen Pin angeschlossen.
Der Arduino schaltet die LEDs anschließend einfach mit HIGH oder LOW.


LEDs und Buzzer auf Breadboard

Technisch betrachtet passiert hier nichts Besonderes – und genau das ist der Vorteil:
Der Fokus liegt nicht auf der Schaltung, sondern auf der logischen Bedeutung der Signale im Spielablauf.


Piezo-Buzzer ansteuern – tone() und noTone()

Auch der Buzzer wird an einen normalen digitalen Pin angeschlossen.
Zur Ansteuerung stellt die Arduino-Umgebung die Funktion tone() zur Verfügung.


Piezo Buzzer
Piezo Buzzer

Dabei gibt es zwei gängige Varianten, die man kennen sollte:


tone(pin, frequenz, dauer)

Wird zusätzlich eine Dauer angegeben, erzeugt der Arduino einen Ton mit der gewünschten Frequenz für genau diesen Zeitraum.


tone(buzzerPin, 1000, 200);

In diesem Beispiel wird ein Ton mit 1000 Hz für 200 Millisekunden ausgegeben.
Nach Ablauf der Zeit stoppt der Ton automatisch – ein zusätzlicher Funktionsaufruf ist nicht notwendig.


Diese Variante eignet sich besonders für:


- kurze Signal- oder Bestätigungstöne
- Countdown- oder Startsignale
- einfache Soundeffekte
tone(pin, frequenz) + noTone(pin)

Wird die Funktion tone() ohne Dauer aufgerufen, läuft der Ton endlos, bis er explizit gestoppt wird.


tone(buzzerPin, 800);
// …
noTone(buzzerPin);

Hier beginnt der Ton mit 800 Hz und bleibt aktiv, bis noTone() aufgerufen wird.


Diese Variante ist sinnvoll, wenn:


- der Ton von einer Bedingung abhängt
- ein Signal aktiv bleiben soll, bis ein Ereignis eintritt
- der Ton manuell beendet werden soll
Warum wir D0 und D1 bewusst nicht verwenden

Beim Arduino UNO (und kompatiblen Boards) sind die Pins D0 und D1 etwas Besonderes:


- D0 → RX (Serielle Kommunikation)
- D1 → TX (Serielle Kommunikation)

Diese Pins werden unter anderem:


- beim Upload eines Programms
- für den seriellen Monitor

verwendet.


RX & TX Pins am Arduino UNO
RX & TX Pins am Arduino UNO

Würden wir LEDs oder den Buzzer an diese Pins anschließen, könnte es:


- zu Problemen beim Upload kommen
- zu unerwartetem Flackern oder Tönen
- zu gestörter serieller Ausgabe führen

Daher gilt als Faustregel: D0 und D1 bleiben für die serielle Kommunikation reserviert.


Für LEDs und Buzzer stehen mehr als genug andere digitale Pins zur Verfügung.


OLED-Display am Arduino – Ansteuerung über I2C


Für die Anzeige der Reaktionszeit verwenden wir ein OLED-Display mit I2C-Schnittstelle.
Der große Vorteil von I2C: Mit nur vier Anschlüssen lässt sich das Display vollständig betreiben.


Benötigte Anschlüsse

Ein I2C-OLED-Display benötigt lediglich:


- VCC → Versorgungsspannung (5 V oder 3,3 V, je nach Modul)
- GND → Masse
- SDA → Datenleitung
- SCL → Taktleitung

Damit ist das Display schnell angeschlossen und spart wertvolle Pins am Arduino.


I2C-Pins am Arduino UNO

Beim Arduino UNO sind die I2C-Pins besonders komfortabel herausgeführt: zum einen als separate, eindeutig beschriftete Buchsen neben AREF (oben links), zum anderen bei den analogen Pins A4 → SDA und A5 → SCL.


Arduino UNO SCL & SDA Pins
Arduino UNO SCL & SDA Pins

Das bedeutet:


- Du kannst entweder die dedizierten SDA/SCL-Pins verwenden
- oder alternativ A4 und A5, falls das besser zu deinem Aufbau passt

Beide Varianten funktionieren gleichwertig.


Schaltung & Verdrahtung – alles zusammengeführt


Nachdem wir alle verwendeten Komponenten einzeln betrachtet haben, setzen wir sie nun zu einer vollständigen Schaltung zusammen.
Der Aufbau erfolgt bewusst auf einem Breadboard, sodass keine Lötarbeiten notwendig sind und Änderungen jederzeit möglich bleiben.


Skizze - Arduino Reaktionsspiel - Zieh ab wenns leuchtet

BauteilFunktionArduino-PinGabellichtschrankeDOD2 (Interrupt-Pin)VCC5 VGNDGNDLED rotStatus „Warten / Sperre“D10LED gelbStatus „Vorbereitung“D9LED grünStartsignalD8Piezo-BuzzerSignalD11GNDGNDStart-TasterSignalD12GNDGNDOLED-Display (I2C)VCC5 VGNDGNDSDASDA / A4SCLSCL / A5

3D-Druck: Halter für die Gabellichtschranke


Für das Reaktionsspiel „Zieh ab, wenn’s leuchtet!“ habe ich einen kleinen 3D-gedruckten Halter für die Gabellichtschranke entworfen.
Der Halter nimmt die Lichtschranke passgenau auf und stellt den herausziehbaren Steg bereit, der den Lichtstrahl zuverlässig unterbricht.


Halter - Gabellichtschranke mit Steg - Kontakt offen

Halter - Gabellichtschranke mit Steg - Kontakt geschlossen

Die STL-Dateien kannst du kostenlos auf Thingiverse herunterladen:


Download auf Thingiverse: https://www.thingiverse.com/thing:7269572


Der Halter ist bewusst minimal gehalten und eignet sich ideal für:


- Steckbrett-Aufbauten
- Tests und Prototypen
- Workshops und Demonstrationen

Programmierung – Schritt für Schritt zum fertigen Spiel


Nachdem der Aufbau der Schaltung abgeschlossen ist, kümmern wir uns nun um die Programmierung des Arduino.
Der Sketch wird dabei nicht auf einmal, sondern bewusst Schritt für Schritt aufgebaut.

Text
makers-muse
makers-muse

Smart Plant Watering System Using Arduino UNO

In today’s world, technology is increasingly being used to simplify daily tasks and make life more efficient. One such innovation is the smart plant watering system. This system is designed to automatically water plants whenever the soil becomes dry, reducing human effort and ensuring that plants receive the right amount of water. This project uses Arduino UNO as the main control unit, making it an ideal example of Arduino UNO automation projects for students, hobbyists, and anyone interested in practical electronics.

Manual watering can be inconsistent and time-consuming, especially for people who are busy or travel frequently. Overwatering or underwatering can harm plant growth and lead to unhealthy soil conditions. A smart watering system solves these issues by automatically monitoring the soil’s moisture level and delivering water only when necessary. It creates a balanced environment for plants to thrive, even when no one is around to take care of them.

Working Principle of the Smart Plant Watering System

The smart plant watering system operates on a simple yet effective principle: sensing, decision-making, and action. A soil moisture sensor acts as the sensing element. It is inserted into the soil to continuously measure the moisture content. The sensor sends an analog signal to the Arduino UNO, which processes this input and compares it to a predefined threshold value.

If the sensor detects that the soil moisture level is below the threshold, the Arduino sends a signal to activate a relay module. The relay, in turn, switches on a mini water pump or solenoid valve that supplies water to the plant. When the moisture level rises and crosses the threshold, the Arduino deactivates the relay, turning off the pump. This automated cycle repeats continuously, maintaining the soil at an optimal moisture level without human involvement.

This process demonstrates how sensors and actuators can work together in a feedback loop. The soil moisture sensor acts as the input device, Arduino UNO functions as the decision-making controller, and the pump serves as the output device. Together, they form a simple yet powerful automation system.

Components Required

To make an automatic plant watering system using Arduino, you will need the following components:

  1. Arduino UNO — The central microcontroller that reads the sensor values and controls the relay.
  2. Soil Moisture Sensor — Measures the water content of the soil by detecting electrical resistance between two probes.
  3. Relay Module — Works as an electrical switch that allows Arduino to control the water pump safely.
  4. Mini Water Pump or Solenoid Valve — Used to supply water to the plant whenever required.
  5. Connecting Wires and Tubing — To establish electrical and water flow connections.
  6. Power Supply — A 5V or 9V battery or USB power source to operate the Arduino and connected components.

These components are inexpensive and widely available online or in electronic stores. Their simplicity makes this project ideal for beginners who want to explore the basics of electronics and automation.

Circuit Connection and Code Explanation

The automatic plant watering system circuit and code are easy to understand. The soil moisture sensor’s analog output pin is connected to the A0 pin of the Arduino UNO. The relay module’s control pin connects to digital pin 8. The relay module is linked to the water pump, which is powered by an external power source since pumps usually require higher voltage and current than the Arduino can provide directly.

When the Arduino reads the moisture sensor value, it determines whether the soil is dry or wet. A lower sensor value indicates dry soil, while a higher value means the soil is moist. The following code demonstrates the core logic of this process:

int sensor = A0;
int pump = 8;

void setup() {
pinMode(pump, OUTPUT);
}

void loop() {
int value = analogRead(sensor);
if (value < 400)
digitalWrite(pump, HIGH);
else
digitalWrite(pump, LOW);
delay(1000);
}

In this code, the Arduino continuously monitors the moisture sensor reading. If the value drops below 400, the soil is considered dry, and the pump is turned on by setting the relay pin to HIGH. When the soil becomes sufficiently moist, the reading rises above the threshold, and the pump is turned off. The delay ensures that the readings are taken every second, preventing the system from switching the pump too frequently.

Applications and Advantages

The smart plant watering system has multiple practical applications. It can be used in home gardens, balconies, offices, greenhouses, and small agricultural setups. It is particularly beneficial for people who cannot water their plants regularly due to travel or a busy schedule. The system ensures that plants always receive the right amount of water without wastage.

The main advantages of this system include:

  1. Automation — The process of watering is completely automated, eliminating manual effort.
  2. Water Conservation — The system delivers water only when needed, reducing wastage.
  3. Plant Health Improvement — Consistent moisture levels help maintain healthy plant growth.
  4. Low Cost — The components are affordable and reusable.
  5. Energy Efficiency — The pump operates only for short periods, minimizing power consumption.
  6. Scalability — The system can be expanded to water multiple plants or even integrated into a larger irrigation setup.

Extensions and Future Enhancements

This beginner Arduino project for smart gardening can be further enhanced by integrating modern technologies. For instance, by connecting a Wi-Fi module such as the ESP8266, you can create an Internet of Things (IoT) version of the system. This allows users to monitor soil moisture data remotely through a smartphone or web dashboard.

Adding an LCD display can help in viewing the real-time moisture percentage, while a buzzer or LED indicator can provide visual or audio alerts when the water level in the container is low. More advanced implementations can include data logging, weather-based control, or mobile notifications. These upgrades transform a simple prototype into a fully functional smart irrigation system.

Conclusion

The smart plant watering system using Arduino UNO demonstrates how automation can simplify everyday life. It provides a hands-on learning experience for understanding sensors, actuators, and microcontroller programming. The project is cost-effective, easy to build, and highly practical for home and garden use.

By learning how to make an automatic plant watering system using Arduino, beginners gain valuable skills in electronics, programming, and problem-solving. The automatic plant watering system circuit and code are simple yet powerful examples of how technology can be applied to environmental sustainability. Whether you are a student, hobbyist, or gardening enthusiast, this project is an excellent introduction to smart gardening and automation concepts.

Text
makers-muse
makers-muse

DIY Smart Security System Using Arduino UNO

In today’s world, home automation is not just about convenience but also about safety. One of the most practical and beginner-friendly projects you can build is a smart security system using Arduino. This project is a simple and effective way to learn the basics of sensors, microcontrollers, and automation. By using a few affordable components like a PIR motion sensor, buzzer, and LED, you can create your own Arduino motion detector project that detects movement and alerts you instantly.

Introduction to Smart Home Security Using Arduino

A smart security system built with Arduino offers an automated way to monitor motion around your home or workplace. Whether it’s for your garage, front door, or office, this type of system can alert you when movement is detected, helping to prevent unwanted access or theft.

The setup works with a PIR motion sensor that detects motion based on infrared radiation emitted by humans or animals. When movement is detected, the Arduino activates a buzzer or LED as an alert. The system can also be extended by adding a relay or Wi-Fi module to send notifications to your smartphone, making it part of a smart home setup.

Components Required

To make your own Arduino motion detector project, you will need the following components:

  • Arduino UNO or ESP32
  • PIR motion sensor
  • Buzzer or LED
  • Breadboard and jumper wires
  • Relay module (optional for connecting an alarm or siren)

All these components are easy to find and inexpensive, which makes this a perfect project for beginners who want to explore home automation.

How the Motion Detector Works

The main component of this system is the PIR motion sensor. PIR stands for Passive Infrared, which means it detects changes in infrared radiation in its environment. When a person or animal moves within its range, the sensor senses a change in infrared levels and sends a signal to the Arduino.

The Arduino then processes this signal and activates an alert. If motion is detected, the buzzer turns on or the LED lights up. When no motion is detected, the alert turns off. This simple concept forms the base of a reliable smart home security using Arduino UNO.

Circuit Connections

Setting up the circuit is simple:

  1. Connect the VCC pin of the PIR sensor to the 5V pin of the Arduino.
  2. Connect the GND pin of the sensor to the GND pin on the Arduino.
  3. Connect the output pin of the PIR sensor to digital pin 2.
  4. Connect the positive terminal of the buzzer or LED to pin 8.
  5. Connect the negative terminal of the buzzer or LED to GND.

Once the connections are complete, the circuit will be ready for programming.

Arduino Code Example

Here’s a simple example code that you can upload using the Arduino IDE:

int pirPin = 2;
int buzzer = 8;

void setup() {
pinMode(pirPin, INPUT);
pinMode(buzzer, OUTPUT);
}

void loop() {
int motion = digitalRead(pirPin);
if (motion == HIGH) {
digitalWrite(buzzer, HIGH);
}
else {
digitalWrite(buzzer, LOW);
}
}

This code continuously checks the PIR sensor for any motion. When motion is detected, the buzzer or LED is turned on. When there is no motion, it is turned off. This basic logic creates an effective simple security system using Arduino UNO.

Testing the System

Once the code is uploaded, power the Arduino board using a USB cable or an external adapter. Move your hand or walk in front of the PIR sensor. You’ll notice that when motion is detected, the buzzer or LED turns on. When you step out of the sensor’s range, it will turn off after a short delay.

The PIR sensor includes two small adjustable knobs on the board. One controls sensitivity, and the other controls delay time. Adjust these knobs until the system reacts accurately to motion while avoiding false alarms from small changes in temperature.

Expanding the Smart Security System

One of the best parts about using Arduino is that you can easily expand your project. Here are a few ideas for upgrading your smart home security using Arduino:

  • Add a Wi-Fi module such as ESP8266 or use an ESP32 board to send alerts to your phone.
  • Connect a relay module to control an alarm or a light.
  • Attach a camera module to capture images when motion is detected.
  • Integrate the system with platforms like Blynk or IFTTT for sending mobile notifications.

These improvements can transform a simple setup into a complete smart security system that provides real-time updates and remote monitoring.

Advantages of Building a Smart Security System

There are many benefits to creating this Arduino motion detector project:

  • It is affordable and uses inexpensive components.
  • It helps you understand the basics of sensors, coding, and microcontroller logic.
  • It can be customized easily according to your needs.
  • It is practical and can be used for real-life applications at home or in the workplace.

The project is ideal for students, beginners, or anyone interested in electronics and automation.

Conclusion

Building a simple security system using Arduino UNO is an excellent starting point for anyone who wants to learn about home automation and electronics. It demonstrates how sensors and microcontrollers can work together to detect motion and provide alerts. By expanding the project with Wi-Fi, a relay, or a camera, you can develop it into a complete smart home security system that not only detects intrusions but also notifies you remotely.

The Arduino motion detector project is practical, educational, and rewarding. It combines creativity, logic, and hands-on experience to help you understand how modern smart systems function. Once completed, you will have a reliable motion-detection system that improves safety and helps you explore more complex smart home ideas in the future.

Text
itsgerges
itsgerges


Best Greetings

The Space Is Created By Light Motion With Speed 1.16 Million Km Per Second

or

or

or

Paper Argument

My 1st theory tells -the solar system space is created by one energy and this energy is provided by one light beam and this light beam moves by speed 1.16 million km per second- the light created all orbits before any planet creation- means- the solar system space is similar as one building has 8 stories and the designer built all stories before any one live in them- By that the orbits are created depending on each other (as proved by my planet orbital distance equation) and no planet data has effect on the orbit creation- because the orbits are built before any planet creation- the light created all orbits except Neptune orbit- the paper explains the reason 

The Major feature is (Space creation needs a motion by speed 1.16 mkm per sec) – this is the fact the theory proves- this fact proof produces 2 important results

(1st result) it proves the speed 1.16 million km per second is A Fact – and proves there’s a light beam moves by speed 1.16 million km per second

(2nd result) it gives us an answer for the question (how is the space created?) and also it helps us to discover the space nature and features

The Planets Orbits Creation Details

The light beam with speed 1.16 million km per second built the solar system starting its motion from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation-the orbits are created based on each other- after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second in Mercury orbit before the space creation- and its speed be 300000 km/s in Pluto orbit after the space creation as a result for the consumption of the energy in the space creation- 

In Pluto orbit- The light had NO energy to build any more orbits –because- any additional space creation will consume more energy and that will decrease the light speed to be less than 300000 km/s (the known speed of light) – and – No known light moves by speed less than 300000 km/s – means- If the speed is decreased to be less than 300000 km/s (the known speed of light) that would change the light beam energy nature into another type of energy which means the light beam will be perished for that the light couldn’t create any more orbits and the light had to return to its origin point (Mercury orbit) passing through all built orbits- this motion didn’t cost any energy because the orbits are created already- this analysis tells us- the light with  known speed 300000 km/s can NOT create any space and the space creation needs the speed 1.16 million km per sec

Paper Argument Proof

The light beam with speed 1.16 million km per second didn’t create Neptune orbit – because Neptune original orbit was Pluto current orbit (5906 mkm)-Pluto had collided with Neptune and pushed Neptune out of its orbit- understandable – Pluto could NOT push Neptune out of its orbit because Neptune Mass is 7000 times Pluto Mass- but Pluto was carrying by very strong wave of energy and the wave pushed Neptune out of its orbit- it’s similar to a small boat is carrying by strong wave of water and the wave pushed a great ship from its place and enabled the small boat to occupy this ship place- this story details is written in the paper abstract-

The important news here is- Because Neptune had to leave its original orbit 5906 mkm- Neptune had to create a new orbit for itself (4495 mkm)- but no longer light beam its speed 1.16 mkm per second is found because the energy is consumed already as explained before- so- How can Neptune build its new orbit (4495 mkm)?  Neptune used Jupiter motion in place of the light beam motion to build the orbit- because – Jupiter moves– in 24.6 h (Mars rotation period) a distance= 1.16 million km

Shortly- there’s a rate of time tells (one second of the light clock =24.6 hours of Jupiter clock) for that Jupiter motion can be used in place of the motion of the light beam its speed 1.16 million km per second-

That’s why I use Neptune orbit analysis as a proof for my theory tells (the planets orbits are created by the energy of light beam its speed 1.16 million km per second) 

Shortly– The speed 1.16 million km per second is The Necessary Requirement For The Space Creation- for that- the space is created by light motion with speed 1.16 million km per second and when this light beam with speed 1.16 million km per second is no longer found and it was necessary to use alternative player to create the space- the process used Jupiter motion as alternative to the light beam motion because Jupiter moves 1.16 million km per 24.6 hours- means- Jupiter motion velocity can be equivalent to the speed of light 1.16 million km per second-

Here Neptune orbit provides a decisive proof for the theory- in fact- the data proves decisively that (the space can be created Only by a motion with speed1.16 mkm/s)      

NOTICE

Please note– Jupiter didn’t provide the energy to build Neptune orbit- the energy is provided by Pluto- means-Neptune captured the energy from Pluto and stored it inside its orbit (this fact will be explained later)–the idea is- while the energy was available Neptune could Not Create its orbit because the space creation technical process needs the speed 1.16 million km per second- that’s why Neptune had to use Jupiter motion to build the orbit - means without Jupiter motion the orbit can Not be created even if the required energy is available because the space creation technical process needs the speed 1.16 million km per second- we know the energy is provided by Pluto because Neptune orbit is created reflected on the other planets orbits- this fact is used as a proof for the theory and will be explained in details with the (4th Proof) 

The Argument Proof Credibility

The paper provides many deceive proves for the fact tells (The Space Creation Needs A Motion By Speed 1.16 Million Km Per Second) – in following I refer to five proves only

1st Proof

The first proof is a table of data proves the light motion by speed 1.16 million km per second is the method by which all planets orbits are created- this motion created the planets orbits depending on each other- that proves one motion only caused to create all planets obits because the orbits are created depending on each other- (this fact is proved also by my planet orbital distance equation)  

This table is very important one because it shows the planets orbits are created depending on each other by using one motion by speed 1.16 million km per sec- means each orbit is created depending on this same speed

ALSO

The previous table also produces periods of time- let’s define these periods- 

(for the inner planets)- each planet orbit produces the period of its previous neighbor- and -(for the outer planets)– each planet orbit produces its own orbital period- that explains why (Planet orbit defines its velocity–as Kepler stated)- because the orbit creation includes the definition of the revolution period of time- and by that- this planet velocity is defined also with the orbit creation

2nd Proof – Neptune Distances Table

In this table I compare between Jupiter and Neptune distances- because- Jupiter orbit and its distances with all planets are created by a motion with speed 1.16 million km per sec–But Neptune orbit and its distances with all planets are created by a motion typical to the motion created Jupiter distances but in Neptune distances the used motion speed is 1.1318 mkm per day (Jupiter velocity per solar day)- that proves the light speed 1.16 mkm/s created Jupiter orbit and distances but Jupiter velocity (1.1318 mkm per day) created Neptune orbit and distances while Jupiter motion depended on a rate of time enabled its velocity it to be equivalent to the speed of light 1.16 mkm per sec

These proves are the cornerstone for the theory tells (Space is created by speed 1.16 million km per second) –means- the analysis for any orbit or distance data proves the space is created by a motion with speed 1.16 mkm per sec whether this motion is done by light beam or by a planet- the cornerstone is the speed 1.16 mkm per sec because by this speed the space is created regardless this motion is done by a light beam or a planet-  Shortly – The Space creation necessary requirement is the using of a motion by speed 1.16 million km per second (This Conclusion Is Produced Depending On The Data Analysis For All Planets Orbits And Distances In The Solar System)

3rd Proof – Neptune Orbit Is Reflected On The Other Planets Orbits

As we have seen all planets orbits are created by light beam motion with speed 1.16 million km per sec and this light moved from Mercury orbit toward Pluto orbit –and we know this light didn’t create Neptune orbit

AND

Neptune orbit is created by energy moved from Pluto toward Venus-means the energy is sent from Pluto orbit toward Venus orbit by that the energy is sent to Neptune supposing Neptune will send it to Uranus to Saturn to Jupiter till reach to Venus-

BUT

Neptune captured the energy inside its orbit and didn’t send it to Uranus- and Neptune used this energy to build its orbit-

We see clearly the two energies move in the opposite direction to each other- means- Pluto energy moved in the opposite direction to the light beam energy motion

For that reason Neptune orbit is created reflected on the other planets orbits- that also tell us the space properties depends on the energy motion direction by which this space is created

But – Why did Pluto send the energy to Venus? This detailed answered is written later but let’s refer to a summarized idea only

Planet motion produces energy (½ mv^2) and this energy creates waves in the space- means- the space is similar to the sea water – and planet motion is similar to a ship motion in the sea- the ship motion creates waves in the sea- and planet motion creates waves in the space- and each planet waves move by its planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by (47.4 km/s)-

All waves move toward Pluto orbit (Perpendicular On The Revolution Direction)- and in Pluto orbit these waves are unified into one unified wave moves by velocity 205.8 km/s (the planets velocities total)- this unified wave is reflected toward Venus orbit

This is the energy captured by Neptune and used it to build its orbit- this fact is explained in details in my second theory-  

4th Proof – Planet Diameter Table 

This table proves there’s a connection between each planet diameter and its orbit based on the known speed of light 300000 km/s which proves that each planet is created in its orbit

5th Proof – Neptune Original Orbit Was 5906 mkm

The data proves decisively Neptune original orbit was 5906 mkm (Pluto current orbit) the proves are many and crucial because Neptune is created in that orbit (5906 mkm) for that my planet diameter equation for Neptune diameter shows the diameter is created in that orbit (5906 mkm) depending on its inclination (17.2 degrees) and many other similar data proves decisively Neptune original orbit was 5906 mkm  

Notice

The proves and discussions for my first theory tells (The Space is Created By Light Motion with Speed 1.16 Million Km Per Second) is found in Item No. (**)

The Paper Contents

The paper provides 8 theories which are

(1st Theory)

The Solar System Space Is Created Of One Energy Provided By One Light Beam Moves By Speed 1.16 million km per second (explained before)

(2nd Theory)

The Gravitational Waves Are Created By The Planets Motions Energies And Not By The Gravitational Field- Moreover There’s No Gravitational Field- And The Sun Has No Massive Gravity And No Planet Moves By The Sun Gravity (Newton is wrong)

Also- The gravitational waves are reflected three times in the solar system- the waves reflection cause effects on the planets data and cause to square the wave velocity

Shortly

The space is similar to the sea of water and any motion energy in space creates waves- based on that- Planet motion produces energy (½ mv^2) and this energy creates waves in the space- and each planet waves move by its planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by (47.4 km/s)- all waves move toward Pluto orbit (Perpendicular On The Revolution Direction)- and in Pluto orbit these waves are unified into one unified wave moves by velocity 205.8 km/s (the planets velocities total)- this unified wave is the gravitational wave- means- the gravitational waves are produced by the planets motions energies total

(3rd Theory)

The Sun Is Not Doing Nuclear Fusion To Produce Its Rays- Instead- The Sun Rays Are Produced By The Gravitational Waves Motions Energies-Let’s Explain Shortly- This Is Extraordinary: Gravity Can Create Light, All on Its Own

This new article tells the gravitational waves can move by speed of light and can produce a light beam- I claim The Sun Rays are produced based on this method by the gravitational waves motions and not by the sun nuclear fusion process- means- The sun rays are created by the gravitational waves and the gravitational waves are produced by the planets motions- means- The Sun Is Created By The Planets Motions 

Shortly- the planets were found and revolving in their orbits before the sun creation and the planets motions energies total is stored and accumulated (as waves in space) and when this energy be sufficient to produce light beam the sun rays are created from this energy- shortly- the sun  is a phenomenon created by the planets motions

(4th Theory)

The Planets Motions Use Different Rates Of Time 

Let’s asks (How Can The Planets Small Motions Energies Be Used To Produce The Sun Rays?)- The Planets Motions Use Different Rates Of Time - let’s give example

(One Second Of The Sun Clock= 1461 Seconds Of The Unified Wave Clock) 

We remember, the planets motions energies waves are unified into one unified wave and this wave revolves around the sun and moves by (205.8 km/s)

The rate of time tells (1 s of the sun clock = 1461 s of this unified wave clock)

(the unified wave clock = any planet clock)

by this rate of time- the unified wave moves by speed of light relative to the sun- because- the unified wave (205.8 km/s) moves in 1461 seconds a distance= 300000 km but the sun clock sees one second only and for that the unified wave moves by speed of light relative to the sun - shortly- because the planets motions use different rates of time, the planets motions energies can be accumulated during a period of time to be massive amount of energy by which the sun rays can be created- the rates of time use is discussed in full details and proves in Item No. (*)

(5th Theory)

Planet (matter) is created as intersection point between two energies- means- one energy is insufficient to produce the matter- also the matter is created in pairs and no single matter can be created (as electron and positron are created from Gamma ray)

Also- Planet is created in its orbit (from this orbit energy) and for that- Planet creation data is belonged to this orbit in which this planet is created- even if a planet left its original orbit this planet creation data will refer to its original orbit because it depends on this orbit energy

Also-the fact tells (Matter Is Created In Pairs) disproves the physicist vision searching the building unit- while the physicist divided the matter and found the particles and the particle is divided into Molecules and the Molecule is divided into atoms and the atom is divided into nucleus and electron moves around and the nucleus is divided into proton and Neutron- and the proton is divided into quarks …etc 

The physicist is searching for the building unit- in fact – no building unit- because the matter is created in pairs (electron and positron also male and female)- means- the creation is done for integration which is removed by the physicist vision (because the integration tells the motion is found before the matter creation but the physicist supposed the matter is found regardless and before the motion)

(6th Theory)

Mars, Neptune and Pluto are three migrant planets- they had left their original orbits (Mars original orbit was between Mercury and Venus- Pluto was the Mercury moon and Neptune original orbit was Pluto current orbit 5906 million km)

Also- Neptune and Mars had to create new orbits for themselves – where Pluto occupied the orbit 5906 mkm in place of Neptune  

(7th Theory)

Neptune orbit is created reflected to the other planets orbits and for that Neptune orbit (4495 million km) caused problems for the solar system motion  

(8th Theory)

The Earth Moon Creates An Angle In Its Motion

The moon daily displacement =88000 km and during 29.53 days (the moon day period) the displacements total be = 2.598 million km = 2π x 413600 km

The data tells us the moon orbital apogee radius should be 413600 km and also it tells, because the moon daily displacement (88000 km) is so long, the moon should revolve around the Earth through this apogee orbit its radius (413600 km) only and can’t revolve around the Earth through any more near orbit… Not Facts

The moon orbital apogee radius =406000 km only and the moon revolves around the Earth through near orbits and can reach to perigee radius (363000 km). 

 

How Can The Moon Do That? the intelligent moon creates an angle (θ) between its motion direction and its orbit horizontal level by that the real displacement (L) through the orbit be less than (88000 km) because it be (L = 88000 km cos θ), as a result the total displacements be less than (2.598 million km) and that makes the moon orbital apogee radius to be decreased from 413600 km to 406000 km.

We should pay attention for the angle (θ), because this angle controls the moon motion features – where- with the angle (θ) increasing the real displacement (L) be shorter and the moon can revolve around the Earth through more near orbits – but –with the angle (θ) deceasing the real displacement (L) be longer and that pushes the moon far from the Earth to more far orbits.

The moon orbital motion Equation depends on this angle (θ) it tells θ1 = θ0 +1.7

where (θ1) = today angle and (θ0) =yesterday angle

1.7 degrees be used as the moon daily motion degrees for the equation

NOTICE

As a result for the angle (θ) using- the moon orbital radiuses be defined depending on Pythagorean rule- this is proved in following 

(363000 km)2 + (86000 km)2 = (373000 km)2

(373000 km)2 + (86000 km)2 = (384000 km)2

(384000 km)2 + (86000 km)2 = (392000 km)2

(392000 km)2 + (86000 km)2 = (406000 km)2      (error 1%)

363000 km, 373000 km, 384000 km and 406000 km are the moon orbital radiuses in perigee, total solar eclipse, orbital distance and apogee respectively


Paper Objective

The Paper Proves The Following Facts

  1. The Gravitational Waves Are Produced By The Planets Motions Energies And Not By The Gravitational Field- Moreover- (The Sun Doesn’t Produce A Gravitational Field)  
  2. Planet Is A Geometrical Point Created By A Moving Energy And Moves With This Energy Motion- mean- the energy is similar to the blood in a creature body and planet is similar to a muscle in this creature- also-the planets are similar to the puppets theater because the planets motions depend on the energy motion from which these planets are created- these examples explain the energy motion effects on the planets data  
  3. The gravitational waves reflection causes effects on the planets creation and motion data because the reflection defines the energy motion direction.
  4. The gravitational waves reflection causes to square the wave velocity- means- if a gravitational wave velocity is (v) and this wave is reflected- its velocity after the reflection will be (v^2)

Paper Objective Proof Method

The gravitational waves are reflected three times in the solar system– from Neptune to Saturn- and- from Uranus to Jupiter– and- from Venus to Mars –these reflections cause to effect on the planets data- AND -The paper compares between the effects of these three reflections on the planets data and by this data comparison the paper proves the facts of its objective.  

Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition

Paper Hypothesis

The Sun Is Not Doing Nuclear Fusion To Produce Its Rays- Instead- The Sun Rays Are Produced By The Gravitational Waves Motions Energies- And The Gravitational Waves Are Produced By The Planets Motions Energies- Means- The Sun Rays Are Created By The Planets Motions Energies Total- Shortly- The Sun Is A Phenomenon Created After All Planets Creation And Motion Because The Sun Is Created By The Planets Motions Energies. 

That explains why the sun corona temperature is 5 million Kelvin but the sun surface temperature is 5800 Kelvin- because the energy is not produced from the sun body but the energy comes from out of the sun body for that the energy out of the sun is so greater than the energy inside the sun (the energy comes from the gravitational waves which are produced by the planets motions energies total)   

Planet Creation And Nature Definition

  • The Matter Creation has 2 basic features which are (1st feature) the matter is an intersection point between two energies- means- the matter creation depends on two energies where (one energy is not enough to cause the matter creation) AND (2nd feature) the matter is created in pairs and no single matter can be created (as electron and positron are produced from Gamma ray 1.2 Mev) and also (the creation system male and female proves the matter is created in pairs)

These Same Features Are Used For Planet Creation

  • Planet Is An Intersection Point Between Two Energies- This is similar to two ropes or cables are connected together by one knot (or joint)- the knot is connected with both ropes and each rope motion effect on its motion- this Knot is the planet -This picture makes the planets typical to The Puppets Theater- because their motions depend on the motions of the energies from which the planets are created.
  • Also- the planets are created in pairs and no single planet can be created– planet velocity definition and its diameter creation both prove this fact
  • Planet Nature Definition aims to prove (Planet is created based on a coherence of light- means- the matter generally is created based on a coherence of light)- Planet Nature definition is written in page No. (21) and its proves are in item No.  (VI)

The Solar System Description Refutation-

(The Sun Is The Planets Motions Result But The Description Supposes The Sun Is The Planets Motions Reason) and (The Matter Is Created Depending On Its Motion But The Description Supposes The Matter Is Created Independently From Any Motion)

The Paper Abstract Contents

I-  Major Problems In The Physics Book

II- The Gravitational Waves Creation, Motion And Reflection

III- The Gravitational Waves Reflection Effects On The Planets Data (The Data Comparison)

IV-  The Paper Hypothesis Proof (The Sun Rays Creation Theory)

V- The Planets Motions Use Different Rates Of Time 

VI- The Proof Of Planet Nature Definition (Matter Nature Analysis)

VII -The Physicist Wrong Vision Proves

VIII-The Proves For My Theory

(There’s A Light Beam Moves By Speed 1.16 Million Km Per Second)

IX- The Solar System Description Refutation

X -The Refutations Of Many Theories In The Physics Book 

XI- The Space Creation Needs A Motion By Speed 1.16 Million Km Per Second (The Proves Discussion)

XII- Can Two Planets Diameters Be Equal?

Paper Definitions Are In Page No. 383

Questions And Answers Are In Page No.**

An article Mars Will Collide With The Earth And Push The Atmosphere Gases Into It 381

The Paper Hypothesis Explanation

The Sun Rays Creation Process

This Is Extraordinary: Gravity Can Create Light, All on Its Own

This new article tells the gravitational waves can move by speed of light and can produce a light beam- I claim The Sun Rays are produced based on this method by the gravitational waves motions and not by the sun nuclear fusion process- also –No star rays is produced by the nuclear fusion process but all rays are created by the gravitational waves motions energies as the article states.  

Here we have four questions to answer

  1. How can the gravitational waves be produced by the planets motions energies?
  2. How can the gravitational waves move by speed of light?
  3. How can the gravitational waves motions produce a light beam?
  4. Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

1st Question

How Can The Gravitational Waves Be Produced By The Planets Motions Energies?

Planet motion produces energy (½ mv^2) but where’s this motion energy? Planet can NOT store its motion energy inside its body because It would raise its temperature- and no planet temperature is raised by its motion- logically- planet motion energy is stored in the space in moving waves –Means- planet motion in space is similar to a fish swimming in the sea- the fish swimming creates waves in the sea and similar to that - planet motion energy creates waves in the space- and - fish swims because it hits the water by its body and that creates waves in the water- and these waves move by a velocity equal the fish velocity because of the reaction force- similar to that- Planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal this planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by equal velocity (47.4 km/s)

Shortly- the planets move and their motions create waves in the space and each wave moves by velocity equal its planet velocity

AND the planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)

AND  in Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity= 205.8 km/s where The 9 planets velocities total=176 km/s but I add the Earth moon velocity (29.8 km/s) that makes the total to be 205.8 km/s – I add the moon velocity because the energy is stored finally in the moon orbit-

Note- The moon and the Earth revolve around the sun together for that the moon velocity is considered equal the Earth velocity relative to (the sun) –

NOW the unified wave moves by (205.8 km/s) is the gravitational wave-

The scientists discovered these waves in the space and they called them (gravitational waves) supposing these waves are produced by the sun gravitational field- BUT Planet motion energy must be stored in the space as moving waves – as proved by the previous analysis -means- even if There’s NO Gravitational field at all there’s a strong reason to find waves in the space because these waves are created by the planets motions energies

Note- I refute the sun gravitational field theory- and prove the sun has no massive gravity and also No Planet Moves By The Sun Gravity (Newton Is Wrong)

The Conclusion

The Unified Wave Its Velocity 205.8 Km/S Is The Gravitational Wave

Notice - the new article still believes that the gravitational waves are produced by the gravitational field- I refuse this idea and prove the gravitational waves are produced by the planets motions energies but I need the article because it tells the waves can move by speed of light and can produce the light beam where I suppose the sun rays are created by this method 

The Answer Of The Questions No. (2) And No. (3) 

2ndQuestion   How Can The Gravitational Waves Move By Speed Of Light? AND

3rdQuestion How Can The Gravitational Waves Motions Produce A Light Beam?

What Do We Have?

We have One unified wave moves by velocity 205.8 km/s

What Do We Need?

We need to accelerate the unified wave to move by speed of light (C=300000 km/s) and this wave should produce (A Light Beam)

We know the light beam is produced from (C^2= Squared Speed Of Light)

Technically- How To Solve This Problem?

We Need To Square The Wave Velocity

Let’s see my hypothesis (The Gravitational Wave Reflection Causes To Square The Gravitational Wave Velocity) –

Let’s see if this hypothesis can solve the problem

(a)

(205.8)^2 x 7.1 = 300000 km/s = C = (speed of light)

Where

205.8 km/s= the velocity of the unified wave (the gravitational wave)

7.1 is Lorentz length contraction effect rate for speed (0.99 C)

Let’s discuss the equation

The unified wave moves by (205.8 km/s)– and this wave is reflected- the wave reflection causes to square its velocity – for that the velocity (205.8 km/s) is squared and be (205.8 km/s)^2= 42354 km/s

Means the wave before reflection moves by (205.8 km/s) and after reflection the wave moves by (42354 km/s)

But Lorentz length contraction effect rate causes to increase the distance 42354 km to be (42354 x 7.1 = 300000 km)– means- the speed 42354 km/s is accelerated to be 300000 km/s = C=speed of light by Lorentz length contraction effect – we understand the rate 7.1 causes to contract the distances but here the rate increases the distances because the wave reflection causes to reflect the geometrical effects.

Conclusion No. (1)

The Wave Reflection Causes To accelerate the unified wave from (205.8 km/s) to move by speed of light (C=300000 km/s)

(b)

Now we have a gravitational wave moves by speed of light (C=300000 km/s)

This wave is reflected one more time

The gravitational wave reflection causes to square its speed by that – the wave speed was = speed of light (C=300000 km/s) before the reflection and after the reflection this speed will be (C^2=Squared Speed Of Light)

The light beam is produced from this value (C^2=Squared Speed Of Light)

Now we know how the unified wave (205.8 km/s) can be accelerated to move by speed of light (C=300000 km/s) and how this wave can produce a light beam

Conclusion No. (2)

The Gravitational Wave Reflection Causes To Square The Wave Velocity

This is the main useful result from the wave reflection- because without the squaring of the wave velocity no acceleration can be done for the wave and by that the gravitational wave can’t move by speed of light Nor produce any light beam

Notice (1)

The waves are reflected three times in the solar system and the abstract provides strong proves for these reflections and more proves are found in the paper- the waves reflection causes basic changes in planets data and I suppose – the waves reflection causes also to square the waves velocity

Notice (2)

The rate 7.1 is produced by Lorentz length contraction effect as a result for motion by speed (.99C= 297000 km/s)- I proved this fact in (Item no. 5-6 Can Relativistic Effects Be Found In The Solar System?)

THE SUN POINT CREATION

The sun point of space has geometrical features enable to produce the sun rays and that means – the sun rays can be created only in the sun corona and far from the sun NO light beam can be created – let’s see the sun geometrical features in following

(i)

The Sun Point Is A Stationary Point Its Velocity 1 km/s = Zero Approximately

This is important feature – Because

All motions are done relative to the sun point of space – for example- Pluto velocity is 4.7 km/s –means- Pluto moves by 4.7 km/s relative to the sun point of space – Shortly- the whole solar system is in motion (space and planets are in motion) but the sun point is stationary (static point moves by velocity 1 km/s = Zero approximately) Means- the solar system is similar to a sea of water and the sun is similar to a vortex or whirlpool found on the sea page – the vortex doesn’t move with the sea waves -Shortly- the sun point of space is the stationary point in the solar system and all motions are done relative to the sun point of space-

Example – Venus moves by 35 km/s that means Venus moves by 35 km/s relative to the sun point of space – also we know Venus motion produces energy and this energy creates waves in the space and these waves move by velocity 35 km/s – means- these waves move by 35 km/s relative to the sun point of space-

(ii)

Why Is It Necessary For The Sun Point To Be Stationary Point? Because

1- The Gravitational Wave (Unified Wave) Moves By Speed Of Light Relative To The Sun

2- The Gravitational Wave Can NOT Move By Speed Greater Than Speed Of light

3- The Wave Reflection Causes To Square The Different Speed Between The Gravitational Wave Speed And The Sun Point Motion Speed

4- If The Different Speed Is Less Than Speed Of Light (C=300000 Km/S) The Speed Squaring Process Will Never Produce The Value (C^2= Squared Speed Of Light) – means- No Light Beam Can Be Created

Now we see the necessity to make the sun point as stationary point moves by  (Zero approximately =1 km/s) – because – if the sun point moves by any higher speed than (1 km/s) the different speed will be less than speed of light and the squared value will be less than (C^2) and No light beam can be created

Now let’s ask- while the space is in motion as the sea of water – how can this stationary point be created? let’s answer in following

(iii)

The planets were created before the sun creation and the planets revolve around a point in space (any point in space) the revolution creates two velocities on both sides of the revolution- the two velocities are equal in value opposite in direction- the total be Zero- means- the revolution motion creates a stationary point in the revolution center-

By That -the sun point of space is created as a stationary point- and the sun point is the only stationary point in the solar system- for that all motions are done relative to the sun point of space-

4th Question

Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays? the question is logical because

Planet motion energy (½ mv^2) is so small energy and the sun rays energy is massive energy -for that- It’s Logical Question To Know How Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

(1)

The secret is the rates of time using-

The planets motions use different rates of time- by that- the planets motions energies can be accumulated during long period of time to produce massive energy sufficient to produce the sun rays – let’s give examples

Example No. (1)

(One Solar Day Of The Sun Clock = 365.25 Solar Days Of The Earth Clock)

By this rate of time– The Earth motion energy for one complete year can be used by the sun in one solar day – in fact- the solar planets motions energies total during one complete year (365.25 solar days) is accumulated and stored in one energy and be used by the sun motion on one solar day that causes to accumulate massive energy to be used (notice 1461 days = 365+365+365+366) 

Example No. (2)

(One Second Of The Sun Clock=1461Seconds Of The Gravitational Wave Clock)

We remember the unified wave (the gravitational wave) moves by 205.8 km/s -And – the gravitational wave moves in 1461 seconds a distance = 300000 km -BUT the Sun clock doesn’t see this period 1461 seconds but sees only the period (ONE SECOND) – means-

The distance 300000 km is passed in (ONE SECOND)only for the sun clockThat causes the gravitational wave to move by speed of light (C=300000 km/s) relative to The Sun – (the rate of time using and effect is explained in details in item no V)
Planet Nature Definitio
n

In this analysis I suppose- Planet is created based on a coherence of light- here- I define planet creation as example for the matter creation generally- and- I prove planet is created by coherence of light- means- the matter is created by coherence of light. 

I want to say -

The main idea tells- Planet is created based on two energies interaction (or two light beams coherence)– one source of energy can NOT create any matter (Nor Any Planet)

Planet Nature Analysis

Let’s Discuss Planet Nature Features in following

(1ST FEATURE)

Planet Is An Intersection Point Between Two Energies- Imagine we have one energy moves in (x-axis direction) and have also another energy moves in (y-axis direction)- the two energies meet each other in One Point which is (an intersection point) – this point is A Planet

This is similar to two ropes or cables or strings are connected together by one knot (or joint)- the knot is connected with both ropes and each rope motion effect on this knot motion direction-

This explanation is typical to The Puppets Theater-the puppets are connected with strings and these strings define these puppets motions direction-shortly- Planet motion depends on the motions of the energies by which this planet is created-simply Planet is an intersection point between two energies and these energies motions effect on this planet motion Direction 

Notice- The data doesn’t show any effect of planet mass on its motion. 

Shortly– Theprevious explanation tells Planet is created based on two energies- one energy is NOT enough to create a planet (the matter) 

(2ND FEATURE)

The Matter Is Created In Pairs And No Single Matter Can Be Created -AND

Planet Creation And Motion Are Defined By Another Planet Motion

  • As in the experiment- (Gamma ray 1.2 Mev can produce electron and positron)- that proves the matter is created in pairs and no single matter can be created- also the creation system (male and female) supports this same fact- I want to say- all matters are created similar to the electron and positron from Gamma ray- simply- the matter is created in pairs- for that- Planets also are created in pairs and no single planet can be created- Planet velocity and diameters analysis prove this fact clearly- the proves discussion are found in item no. (III)  
  • This feature also proves the matter is created based on two energies- also in the Gamma ray experiment because we need two energies– the first energy is Gamma ray 1.2 Mev from which electron and positron can be produced– the second energy is the used energy to produce electron and positron from Gamma ray- means-the method by which Gamma ray 1.2 Mev can produce electron and positron- please note the principle idea tells (the matter is created in pairs and no single matter can be created-AND- the matter creation needs two energies because one energy is not enough to create the matter) 
  • Please note- Feature no.(1) tells, planet is an intersection point (a knot) between two energies- but Feature no. (2) tells matter is created in pairs and no single matter can be created– that means- these intersection points (knots) are created in pairs and can’t be created individually-BUT Why?? because the matter creation depends on the energy reflection- the reflection causes to create the matter is pairs- this fact is explained in feature No. (5) 

(3RD FEATURE)

Planet Diameter Is Created As A Function In Its Rotation Period

This fact is proved by my planet diameter equation

Please note-my planet diameter equation proves Planet diameter is created based on two motions because the equation uses two planets velocities (v1/v2) that proves two motions are required to produce planet diameter which supports our principle tells (Planet matter is created depending on two energies because one energy is not enough to produce the matter)

(4TH FEATURE)

I have two examples explain the matter nature

(1st Example) the matter is similar to creature muscles- shortly- even if the muscle is very strong as a rock- we understand this muscle is found depending on the blood motion-and any change in the blood motion can effect on the muscle dimensions and ability- similar to that the matter is created depending on the motion of the energies Based on which this matter is created-

(2nd Example)–If the space is similar to the sea of water- the matter is similar to a whirlpool (vortex) found on the sea page- we understand the whirlpool (vortex) is created by the sea water but it has a distinguish picture from the sea waves and it moves by a different velocity from the sea waves- that explains how the moving energy can effect on the matter creation data- for example- we have a whirlpool (vortex) its diameter is 2 meters- why does this diameter equal= 2 meters? The diameter is created depending on the water velocity, pressure, amount and motion angle and many other features of (the moving water)- the moving water creates this whirlpool with diameter 2 meters and as long as the water motion is not changed this diameter will not be changed also-

Notice we understand the whirlpool (vortex) is found because at least two streams of water meet each other- means- one stream is not enough to create a whirlpool (vortex)– similar to that- one energy is not enough to cause the matter creation but two energies are required to cause the matter creation- because the matter is an intersection point between these two energies- 

(5TH FEATURE)

Why should The Matter be Created In Pairs And No Single Matter Can Be Created? Let’s answer -The matter creation needs two energies because the matter is an intersection point between these two energies- means- the matter creation (and planet creation) needs two energies-

In the solar system one of these two energies is A Reflected Energy-

let’s explain that

  1. The solar planets matters and their distances are created from one energy and this one energy is provided by one light beam moves by speed = 1.16 million km per second- The light built the solar system starting its motion from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each other (as proved by my planet orbital distance equation) after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second in Mercury orbit before the space creation- and its speed be 300000 km/s in Pluto orbit after the space creation as result for the energy consumption in the space creation- 
  2. In Pluto orbit- The light had no energy to build any more orbits -for that- the light returned to its origin point (Mercury orbit) for that the light is reflected with speed (C=300000 km/s) from Pluto orbit to Mercury orbit passing through all built orbits– no energy is required in this motion for that the light beam moves with speed of light (C=300000 km/s) in Mercury orbit.
  3. This explanation tells us- there are 2 energies in each orbit which are the (1st energy) is the orbit energy by which the orbit is created (depends on the original speed 1.16 million km per second)- and the (2nd energy) is the reflected energy (moves by the known speed of light 300000 km/s)

The Solar System Coherence Of Light

Here I claim planet creation is done by the coherence of light-

  1. The previous explanation shows the reflected energy (the light beam moves by the known speed of light C=300000 km/s) is reflected from Pluto to Mercury and passed through all orbits while each orbit is built by energy and this energy is provided by the original light beam speed (1.16 million km per second)- means- the orbit energy is the energy of the original light beam its speed (1.16 million km per second) and the reflected energy is the energy moves by the known speed of light (C=300000 km/s)- shortly- The coherence of light is done between these two light beams- one of them moves by the original light beam speed (1.16 million km per second) and the other moves by the known speed of light (C=300000 km/s)- the coherence of light is done between these two light beams  
  2. The planets are created based on this coherence of light – I have Three Proves for this fact –let’s see them in following

(First Proof)

The planets velocities are defined based on the speed (1.16 million km per second)- this is proved by the rule (v1v2=322) as explained - let’s remember this explanation

322 = 47.4 km/s (Mercury velocities)    x 6.8 km/s  (Uranus velocities)               

322 = 35 km/s  (Venus velocity)            x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)     x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)            x 13.1 km/s (Jupiter velocity)                        

Venus (35 km/s) moves a distance  1.16 million km in 4.7 x 2 hours and

Pluto (4.7 km/s) moves a distance 1.16 million km in 35 x 2 hours -And

Earth (29.8 km/s) moves a distance  1.16 million km in 5.4 x 2 hours and

Neptune (5.4 km/s) moves a distance 1.16 million km in 29.8 x 2 hours

Shortly the planets velocities are defined complementary one another based on The Original Light Beam Speed 1.16 million km per second-

Means the planets velocities are defined as function in this original speed 1.16 million km per second- as proved by the data- this data analysis proves the effect of the original speed of light (1.16million km per second) on the planets velocities definition 

(Second Proof)

The planets velocities total is defined based on the known speed of light (C=300000 km/s) –let’s remember this fact in following

(205.8)^2 x 7.1 = 300000 km/s = C = (Speed Of Light)

Where

205.8 km/s= 9 the planets velocities total + the Earth moon velocity (29.8 km/s)

(the moon and the Earth revolve together for that their velocities are considered equal)

7.1 is Lorentz length contraction effect rate for speed (0.99 C)

Let’s discuss the equation

The planets motions energies create waves in the space and these waves move by their planets velocities and these waves move toward Pluto orbit and in Pluto Orbit these waves are unified together into one unified wave moves by the planets velocities total – means- This unified wave moves by (205.8 km/s)–and then this unified wave is reflected- the wave reflection causes to square the wave velocity– for that the velocity (205.8 km/s) is squared and be (205.8 km/s)^2= 42354 km/s – means- the wave velocity was (205.8 km/s) before its reflection and after the reflection the wave velocity be (42354 km/s) -

-BUT- Lorentz length contraction effect rate causes to increase the distance 42354 km to be (42354 x 7.1 = 300000 km) – means- the speed 42354 km/s is accelerated to be 300000 km/s = C=speed of light by Lorentz length contraction effect – we understand the rate 7.1 causes to contract the distances but here the rate increases the distances because the wave reflection causes to reflect the geometrical effects

This data shows- the planets velocities total is LIMIT to the known speed of light (C=300000 km/s) because the energy reflection effects are obligatory- means- the planets velocities can NOT be greater than (205.8 km/s) because that would cause the final speed to  be greater than speed of light (C=300000km/s) which is impossible and that tells the planets velocities are defined by The Limit which is (the known speed of light C=300000 km/s)

The two proves show the planets velocities are defined based on two limits – the original speed (1.16 million km per second) based on which the planets velocities are defined and the known speed of light (C=300000km/s) which is The Limit for the planets velocities total– this analysis proves my theory tells (The Planets Are Created Depending On The Coherence Of Light Is Done Between The Original Light Beam Its Speed 1.16 Million Km Per Second And The Reflected Energy Which Moves By The Known Speed Of Light (C=300000 km/s))

(Third Proof)

Young coherence of light produces the interference (bright fringes and dark fringes)- let’s suppose– we see bright fringes as planets- and if the fringe breadth is comparable with planet diameter- we will find that- the solar planets distribution is typical to the interference of Young- because- the greatest diameter planet “Jupiter” is found in the middle and the other planets diameters are decreased gradually on both sides typical to the fringes distribution in Young interference- please note- I have proved Mars original orbit was between Mercury and Venus and Mars had migrated to its current orbit by that the inner planets original order was (Mercury-Mars- Venus- The Earth) the diameters are decreased gradually from the Earth to Mercury typical to Young Interference (Also the outer planets diameters are decreased gradually from Jupiter to Pluto)  

The Matter Is Created In Pairs

Now we know each orbit has two energies- (1st energy) the orbit energy by which the orbit is created (2nd energy) the reflected energy which is passed through all orbits- by that- NOW one energy is a reflected energy and the reflection caused the matter to be created in pairs- why??

The energy reflection causes to create complementary values- imagine a light beam is reflected on some mirror- here–we have the original light beam and the reflected light beam- the two light beams are similar in all data but in opposite directions- that tells the energy reflection causes to create the data reflected on each other (and complementary one another)- and the complementary data cause to create the matters in pairs and no single matter can be created-

Shortly -because the energy is reflected in the solar system the matter is created in pairs by the energy reflection effect where No single matter can be created     

(6TH FEATURE)

How can planet matter be created by two energies? By what method this creation can be done? There are three methods can be used

(First Method) Can Planet Be Created As A Wave?

We know the particle has double nature and behaves as a wave-

Let’s suppose planet is created as a wave? How can the wave be created?

We need two motions perpendicular on each other- means- we need two energies perpendicular on each other- means- by two energies motions a wave can be created and this wave will be a planet - Just we need to suppose that the two energies in each orbit are perpendicular on each other and that will cause to create the planet as a wave 

(Second Method) The Energy Reflection

As explained the energy reflection causes to create the values in pairs (reflected on each other and complementary one another) because the original values produce reflected values and that cause the values to be created in pairs-and that cause the matter to be created in pairs- shortly- the energy reflection is the reason to create the matter in pairs- that causes planets data to be created in pairs complementary one another- (as proved by planet velocity definition by the rule v1v2=constant= 322) 

Also planet diameter follows this same rule (R1R2=Constant)- because the planets are created in pairs and the matter generally is created in pairs (as electron and positron from Gamma ray 1.2 Mev)

Shortly- The Creation In Pairs Is Done Basically Because Of The Energy Reflection 

(Third Method) The Coherence Of Light

As explained before Young coherence of light produces the interference which can be comparable with the solar system because the bright fringes distribution is typical to the solar planets distribution if we suppose the fringe breadth is comparable with planet diameter

Notice - we understand, the matter is created in pairs because of the energy reflection and if the planets are created by the coherence of light that tells the coherence of light must contain reflection of energy which is a fact- because- the coherence of light contains reflection of energy and this reflection is seen in the fringes distribution because the fringes breath is decreased gradually on both sides means each side is reflected on the other and that shows there’s a reflection of energy found in the coherence of light-  

NOTICE The Proves Discussion for Planet Nature Definition is found in Item (VI)

First Item - Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition 

1stProblem The Physicist wrong Vision Contradicts The Nature System 

The Physicist Vision

The physicist supposes there’s (a unit of building)- by that- the physicist sees the matter (mass) as a wall and this wall is consisted of bricks (small similar units) and the physicist searches for this (unit of building)–

For that the physicist divided the matter and found the particles and then the particle is divided into Molecules and the Molecule is divided into atoms and the atom is divided into nucleus and electron moves around and the nucleus is divided into proton and Neutron- and the proton is divided into quarks …etc

The physicist searches for the building unit- for that he divides anything to reach to this building unit- 

The Nature System Vision

The Nature designer aims to create INTEGRATION- as the marriage– male and female- For that- the matter is created complementary one another-means- The Matter Is Created In Pairs (as Gamma ray 1.2 Mev produces electron and positron)

No building unit- AND

I want to show how the physicist causes fatal error for the research method while the physicist divides the elements (from matter to particle to molecule to atom to proton to quarks …etc) this division from out into inner till reach to very small unit which the physicist considered the building unit – that causes to destroy the geometrical design of the integration process- Shortly- the physicist sees a universe (never be created by the designer)- while the designer created the integration is a goal and created tools to perform this integration the physicist destroyed the integration tools while he searched for the building unit which is not found at all.

NOTICE

Another point shows the physicist wrong vision is (The Planet Motion)

While the solar planets move as gears in one machine and all planets motions are unified into one unified general motion- means- all planets motions are unified and produce one result only (one unified motion)- the physicist supposes each planet motion is independent-by that- in place of one machine of gears moves and produces one unified motion (one result) the physicist told us each planet motion is independent and No unification is found for the planets motions –here – one more time the physicist sees very different picture from the real one- in place of one hand has five fingers the physicist sees five independent moving fingers

2ndProblem  Planet Motion Energy Definition

Let’s remember this question where’s Planet Motion Energy?

We agreed planet motion produces energy (½ mv^2) and this energy must be stored in the space as moving waves because planet can NOT store its motion energy inside its body otherwise this planet temperature would be raised- that tells- the space has moving waves produced by planet motion energy

Also –we agreed- planet motion energy creates waves in the space and these waves move by velocity equal this planet velocity-

Shortly- for example- Mercury (47.4 km/s) moves in the space and its motion energy produces waves in the space and these waves move by velocity (47.4 km/s) –this analysis creates 3 difficulties for the physics book let’s see them

First Difficulty

This analysis tells the space has moving waves are produced by planets motions energies– But- the scientists discovered these waves and they told these waves are produced by the gravitational field- and they called them (gravitational waves)- I prove the sun doesn’t produce a gravitational field and has no massive gravity and no planet moves by the sun gravity – But- here we need to answer (from what source these waves are produced?) because planet motion energy analysis forces us to accept that these waves are produced by the planets motions energies

Here – we need to answer (from what source these waves are produced?)

I prove the gravitational waves are produced by the planets motions energies and not by any gravitational field.

I provided two major proves

(1st proof) I proves there’s no gravitational field and the sun has no massive gravity and no planet moves by the sun gravity

(2nd proof) the gravitational waves reflection proves the waves are produced by the planets motions energies because the waves reflection causes effects on the planets data

Second Difficulty

Now we know planet motion energy is stored in the space as moving waves (the gravitational waves)- But- the planets move since long period of time means the planets motions should cause to store massive motion energy in space during this long period- Now -where’s this stored massive energy? also the energy can NOT be stored in space forever- so what’s happening for this stored massive energy? I prove the sun rays are created from this stored massive energy and not from the sun nuclear fusion process- this is my research hypothesis – in all cases we should know how this stored massive energy be used because this massive energy can cause risk for the solar system stability.

Third Difficulty

Newton Mass gravity definition is disproved by planet motion energy

Because

Suppose the moon moves by the Earth mass gravity and the moon motion produces energy (½ mv^2) now let’s ask- From What Source The Moon Motion Energy Is Provided? What’s the moon motion reason? The mass gravity- means- the mass should provide the motion energy- means – if The moon moves by the Earth gravity that necessitates to decrease the masses of the Earth and the moon by the motion energy- here’s the problem- Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass-  this decrease is done because of the motion energy

The analysis tells us–the physicist supposes planet motion produces NO energy this is the only one solution for the problems created by the physicist neglect to observe planet motion energy-

3rdProblem Mass Gravity Force Analysis

The Refutation Of The Sun Gravitational Field

The Sun Doesn’t Produce A Gravitational Field Nor Has Massive Gravity – let’s prove that in following

(i)

The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time- 

(ii)

No Planet Moves By The Sun Gravity–Newton is wrong- because- Planet moves by the force caused its creation- means- planet creation and motion is done by one force only- otherwise this planet would be broken if two forces have effects on it-

Suppose planet is created (by any force) and the sun gravity attracted this planet and forced it to revolve around the sun by the sun gravity (as Newton imagined) that would force this planet to move against its internal structure and that will cause this planet to be broken-

Imagine a human is forced to walk on his hands in place of his legs- this human will be dead by this motion-

That’s why the planet creation and motion is done by one force only- Newton mistake is that he didn’t know how the planet is created- and he considered - the creation force is a historical force has no effect on the current motion- Shortly-the sun didn’t cause to create any planet and the sun doesn’t cause any planet to move

(iii)

We agreed that, mass gravity force can NOT cause any motion- again Newton is wrong- because –any motion will produce energy- suppose the moon moves by the Earth mass gravity- the moon motion produces energy- and – from what source this energy is provided? From the masses of the Earth and the moon –here’s the problem  

Where Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass

BUT Mass gravity is a fact - the mass gravity creates a bond between two masses (The Earth and the moon are bond by their masses gravity ) if some outer force causes the Earth to move the moon will move with the Earth and in this case the outer force will provide the motion energy for the Earth and the moon.

(iv)

The planets order contradicts the gravitation equation- for example- Jupiter the greatest mass is not the most near planet to the sun- when we asked the physicist told us this problem is done by (the planets initial conditions)- all these are wrong- planet orbital distance does NOT depend on the sun mass nor on this planet mass- planet orbital distance depends on its neighbor planet orbital distance – my equation proves this fact- let’s see it

Planet orbital distance equation (my 1st equation)

d^2= 4do (d-do)

where d=planet orbital distance

do= its neighbor orbital distance

Example (1) Venus orbital distance (108.2)^2 = 4 x 57.9 x (50.3)                             

d= 108.2 million km = Venus Orbital Distance       d0= 57.9 million km  = Mercury Orbital Distance

50.3million km=The Distance Between Venus And Mercury  Venus Depends On Mercury

Example (2) Saturn orbital distance (1433)^2= 4 x 778.6 x 655

d= 1433 million km    = Saturn Orbital Distance     d0= 778.6 million km  = Jupiter Orbital Distance

655million km=The Distance Between Saturn And Jupiter Saturn Depends On Jupiter

All planets orbital distances are defined based on their previous neighbor planets orbital distances- the equation is correct and discussed in item no. (III)- Shortly- planet mass has no any effect on this planet orbital distance definition.

Notice

Planet orbital distance definition depends on its neighbor orbital distance this fact is proved by many different methods my equation is one method only of them, all these methods don’t use any planet mass- all planets orbits are defined based on their neighbor planets orbits (item No. III has more proves)

(v)

Also-Newton told-planet motion depends on its mass- means-planet velocity depends on its mass- this also is wrong - I define planet velocity (my 5th equation)- planet velocity is defined by many rules all of them don’t use any planet mass- at all Planet mass has no rule in this planet velocity definition.

The Conclusion

The Sun Doesn’t Produce Any Gravitational Field

4th Problem The Matter Creation And Its Nature Definition

In following we compare between the physics book theory about the matter creation and my theory about it- the discussion contains Two points

I- The Physics Book Theory About The Creation of the Matter (Mass)

  1. The Matter Is Created Independently From Any Outer Motion – means- even if the matter motion is stopped the matter is still found and never be perished (the motion here means the outer motion and not the atoms motions)
  2. The Matter Is Motionless By Nature
  3. The Matter Needs Mass Gravity Force To Cause Its Motion
  4. The Matter Data And Dimensions Are Not Changed By Its Motion
  5. The big bang theory tells planet is created by random creation- for example- Jupiter diameter is created by unknown value and Jupiter is collided many times in its history and these collisions caused Jupiter diameter (and mass) to be decreased- based on that– Jupiter diameter value (142984 km) is found by random process and without any geometrical reason behind- by that- the big bang theory prevent us to use any planet data to discover the creation and motion rules of this planet.
  6. Note – The physicist doesn’t use planet data in forming a theory to explain this planet motion-for example- Jupiter diameter is 142984 km and the physicist has a theory explains Jupiter motion but if Jupiter diameter is changed into 180000 km the theory will have no change because the physicist doesn’t consider Jupiter diameter is a player in its motion- that’s why the big bang theory is wrong because it supposes the change in diameter and mass doesn’t cause a change in motion 
  7. Shortly- the physics book doesn’t tell how the matter is created nor what’s the matter nature- we remember Einstein problem in physics- he told (All researches in particle electromagnetic properties can’t predict this particle behavior in the daily life physics) that shows two different branches of the physics one for the electromagnetism and the other for the mass gravity physics

II- My Theory About The Creation of the matter (mass) –

The Matter Main Features Are: 

  1. The Matter Is Created In Pairs  Means- No Single Matter Is Created -This conclusion depends on Gamma ray experiment -From Gamma ray (1.2 Mev) electron and positron are created- by this experiment- the matter is created in pairs from electromagnetic waves- the produced pair particles motions depend on each other (or related to each other) (notice the creation system is male and female–two complementary matters-that tells the source of energy must be electromagnetic wave)
  2. The matter is created depending on its motion- means- the motion is found before the matter creation- this conclusion depends on my planet diameter equation because planet diameter is created depending on this planet velocity (for example Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)- means–Planet motion is defined before its creation -later explained
  3. Lorentz transformation proves Matter dimensions are effected by high speed motion- also- Lorentz transformation proves the matter and space are created from the same energy for that particle length and distance both are contracted by the same one equation (Lorentz length contraction effect)
  4. The Matter Is Created Depending On Light Motion –

The Discussion Proves These Features Strongly

The Matter Creation Depends On 5 Main Facts  Which Are

  1. Gamma Ray Can Produce Electron And Positron
  2. Lorentz Transformation
  3. My Planet Diameter Equation
  4. The Coherence Of Light (Young Interference) 
  5. Planet Diameter Creation Depends On This Planet Orbit

(Item No. i) Gamma Ray Can Produce Electron And Positron    From Gamma ray (1.2Mev) one electron and one positron are created- I prove the matter is created by this method- means- the matter is created in pairs and no single matter is created

(Item No. ii) Lorentz Transformation

Lorentz transformation tells

If a particle moves by high speed motion (near to speed of light), this particle length would be contracted and its mass would be increased and its time would be dilated

I accept this meaning clearly and find this meaning supports my theory strongly BUT Many physics Books tell the following

(NO Real Change Is Done For Any Particle Data Moves By High Speed Motion But All Changes Are Illusions Of Measurements)-

Means- while a particle is moving by high speed motion and the experiments results show contraction in its length and increasing in its mass and dilation in its time – these changes are just illusions in measurements and the particle itself has no change in any data - tenth of books tell this meaning clearly and with confirmation and the physicist killed Lorentz work and made Lorentz transformation measures illusions and not facts- regardless the empirical proves which supports Lorentz transformation 

I refuse these books idea because

  1. The Physics Is The Measurements Science And What’s Measured Is The Fact
  2. If no real changes are done how the problem of Michelson and Morelly experiment is solved?- also- Why the synchronous events in one frame can’t be synchronous in another (as Einstein stated) where no change is found for any data- the distances are Not contracted nor the time is dilated nor the mass is increased why the events can NOT be synchronous in any frame?  
  3. If the particle own data is measured correctly while it moves by my motion velocity and these measurements are suffered from illusions because the particle moves by high speed motion relative to my motion that means (I’m the universe reference point)
  4. We notice- Lorentz length contraction equation can’t distinguish between particle length and a distance, both can be contracted by the same one equation- that supports my theory tells (Matter And Space Are Created From The Same Energy)–
  5. My planet diameter equation proves planet diameter is created depending on this planet motion and also proves the matter and space are created from the same one energy which supports Lorentz transformation 

NOTICE  

The major importance of Lorentz transformation is

  1. The transformation proves there’s a connection between particle dimensions and its  motion means the motion has effect on particle dimensions definition and by that the matter (mass) can’t be independent because its existence depends on a motion- shortly (The Matter Existence Depends On Its Motion
  2. The matter and space are created from the same energy- because- particle length and the distance both are contracted by the same equation (Lorentz length contraction effect) shortly (Matter And Space Are Created From The Same One Energy) (This theory is proved by my planet diameter equation)

(Item No. iii) My Planet Diameter Equation

My Planet Diameter Equation (v1/v2)= (s/r)= I

v = Planet Velocity                          

r = Planet Diameter

I= Planet Orbital Inclination   

s= Planet Rotation Periods Number In Its Orbital Period

v2, s, r and I are belonged to one planet and v1 is belonged to another planet

The planet (v1) is defined by test the minimum error 

Earth Equation uses Neptune velocity                        

Mars Equation uses Pluto velocity

Jupiter Equation uses the Earth moon velocity      

Saturn Equation uses Mars velocity

Uranus Equation uses Neptune velocity (As Earth)

Neptune Equation uses Saturn velocity

Pluto Equation uses the Earth moon velocity (As Jupiter)

Example  Neptune Equation (89143 /49528) = 9.7/ 5.4 =1.8                  

89143                   = Neptune rotation periods number in Neptune orbital period

49528 km   = Neptune diameter            

9.7 km/s      = Saturn velocity

5.4 km/s      = Neptune velocity             

1.8 degrees= Neptune Orbital Inclination

59800 days = Neptune orbital period (and Neptune rotation period =16.1 hours)

Discussion

(1)

The Equation Concept  Planet diameter should be a function in its orbital distance –otherwise- this planet would be broken by its motion- BUT- the designer can’t create a function has only 2 variables (Planet diameter and its orbital distance)- because– If this planet changes its orbit (orbital distance) its diameter would be broken also because the diameter is a direct function in the orbital distance without any other variables -As A Result- the designer created planet diameter as a function in this planet rotation period and the planet rotation period is created as a function in this planet velocity and the planet velocity is created as a function in this planet orbital distance- by that- the function between Planet diameter and its orbital distance is created but also it contains many variables (rotation period, orbital period and velocity)- by that- if  the Planet changes its orbital distance- this planet orbital period, and velocity and rotation period would be changed but its diameter will be saved

(2)

Matter Definition Based On My Planet Diameter Equation

My equation tells, Planet diameter is created depending on its velocity- for example Neptune diameter is 49528 km because it velocity is 5.4 km/s where the velocity is used in the diameter definition equation- means- Planet motion is defined before this planet creation- how can that be possible? let’s answer in following

  • The original energy was in motion and planet matter is created from this moving original energy and planet matter dimensions are defined by this original energy motion features- after Planet creation, the planet moves with this original energy motion means the planet moves this same motion based on which the planet data and dimensions are created that’s why Planet data is in full harmony with its motion features- that explains how planet diameter is created based on its velocity
  • Shortly- the matter is similar to a muscle in a creature- the muscle dimensions depend on the blood motion- similar to that- the matter dimensions depend on this energy motion from which this matter is created-
  • Also space is similar to the sea of water- and the matter is similar to a whirlpool (vortex) is found on the sea page- the matter creates for itself a distinguished picture different from the space picture and the matter moves by a different velocity from the space motion velocity- as the whirlpool (vortex) on the sea page- it’s created by the sea water but it has a distinguish picture from the sea waves and it moves by a different velocity from the sea waves- that explains how the moving energy can effect on the matter creation data- for example- we have a whirlpool (vortex) its diameter is 2 meters- why does this diameter equal= 2 meters? The diameter is created depends on the water motion velocity, pressure, amount and motion angle and many other features of (the moving water)- the moving water creates this whirlpool with diameter 2 meters and as long as the water motion is not changed this diameter will not be changed also- (notice- The Gravitational Waves Prove The Space Has Motion And Not Static)

NOTICE   Also (No Planet Moves By The Sun Gravity) Newton is wrong, because planet moves by the energy from which this planet is created- as explained here – means– The Matter Is Not Motionless By Nature- The Matter moves with the energy from which this matter is created-

(3)

Matter Existence Depends On Its Motion

Shortly-if the motion is stopped the matter will be perished- again the matter is similar to a muscle in a creature body- if the blood motion is stopped the muscle will be perished- this is the fact- Based on that- Neptune velocity is 5.4 km/s if Neptune stops its motion Neptune diameter and matter will be perished-

The fact I prove is (The Matter Creation Depends On Its Motion) – Lorentz transformation and my planet diameter equation supports this fact strongly 

DEEP DISCUSSION

(4)

The Matter Is Created In Pair And No Single Matter Is Created

Planet velocity is defined based on the rule (v1v2=constant= 322) let’s prove that

322 = 47.4 km/s (Mercury velocities)         x 6.8 km/s  (Uranus velocities)                            

322 = 35 km/s  (Venus velocity)                 x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)                    x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)                x 13.1 km/s (Jupiter velocity)                        

322 = (17.9 km/s)^2 (Ceres velocity)                   (Max error 2%)

The idea is understandable – let’s summarize it in following

(i)

The planets velocities are created complementary one another based on the rule (v1v2=constant= 322) and

(ii)

Planet data is created depending on its velocity- means- planet velocity is the first data in this planet creation and based on the velocity all other data is created- as we see in the planet diameter equation, planet diameter and all creation data is created depending on this planet velocity- means- based on (v1/v2) but planet orbital distance is defined based on  (v1/v2)^2 and planet orbital period is defined based on (v1/v2)^3

Based on this system planet data is created but we know that planet orbital distance is defined before planet creation and based on the orbit, planet velocity is defined and then all data is defined based on the planet velocity-

(iii)

Now the idea is clear- let’s summarize it

The planets velocities are created complementary one another based on the rule (v1v2=322) and planet diameter is created depending on its velocity for that reason planet diameter is created complementary to another planet diameter- let’s prove that

341.7 million km = Jupiter diameter 142984 km          x Pluto diameter 2390 km

341.7 million km = Jupiter radius 71492 km       x Mercury diameter 4879 km (2%)

341.7 million km  = Saturn diameter 120536 km x 4 Mars diameter 6792 km (4%)

341.7 million km = Uranus diameter 51118 km  x Earth radius 6378 km (5%)

341.7 million km = Neptune diameter 49528 km x 2 The Moon diameter 3475 km

Clearly we see the planets diameters are complementary one another- because the matter is created in pairs and no single matter is created

Notice (1)

Suppose the physicist can create a type of single matter which has no complementary can that disprove my theory tells (The Matter Is Created In Pair And No Single Matter Is Created?) NO NEVER

Because- the matter is created from the original energy and the energy uses a system depends on matters in pairs complementary one another-  means any type of matter can’t be used by the original energy will be neglected and useless because the energy uses matters in pairs  

(Item No. v) The Coherence Of Light (Young Interference)

I provide proves tell Gamma Ray and Young experiments are used in the solar planets creation – let’s remember these experiments

(1st Experiment) Gamma ray (1.2 Mev) can produce electron and positron

(2nd Experiment) the coherence of light experiment (Young Interference)

Let’s provide the proves for the using of these two experiments in the planets creation

Gamma Ray Experiment

There are two facts prove this experiment concept is used in the planets creation

First Fact Planet creation data is defined based on its velocity- this fact is proved by my planet diameter equation because planet diameter is created depending on this planet velocity as explained before (Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)-means- Planet velocity is the first data in this planet creation process and based on this velocity all planet creation and motion data is created

Second Fact Planet velocity is complementary one another, which is proved by the rule (v1v2= 322 = constant)- that shows the planets data must be complementary one another as I have proved in the diameters values analysis

Shortly – The planets data are complementary one another (similar to the electron and positron are created from Gamma ray)

The Coherence of light Experiment (Young Interference)

There are two facts prove this experiment concept using in the solar system creation

1st Fact

The planets order is typical for Young interference- if we consider planet diameter is equivalent to the fringe breadth by that the planets order be typical for Young interference where the greatest fringe is in the middle (the greatest planet Jupiter) and the fringes breadth is deceased gradually on both sides

(I Proved Mars Original Orbit Was Between Mercury And Venus- so the original inner planets order was Mercury – Mars – Venus – The Earth) which shows gradual decreasing in diameters- the outer planets diameters also is decreased gradually      

2nd Fact

There’s a coherence of light in the solar system- what does that mean?

Means- while planet orbit has energy of a light beam- another light beam enters this orbit by that there are two light beams in the same orbit- these two light beams create coherence of light- the planets orbits creation explain this fact in details- but here I want to prove this fact by simple direct proof before the planets orbits creation discussion –let’s write this proof here

We have seen that the planets velocities are complementary one another by the rule (v1v2=constant=322) and planet all data is created depending on its velocity- by that the planets diameters also follow this rule where (R1R2= constant) as I have proved in my planet diameter equation

Now let’s ask – can the planets orbits complementary one another? NO

So- how this rule (v1v2=constant= 322) is found?

By the energy reflection- means- the energy is reflected in the solar system and this reflection of energy causes the velocities to be reflected on one another and that produced the rule (v1v2=constant= 322)

We note the planets can’t be reflected on each other because the planets are connected with their orbits- and the energy reflection needs freedom in motion- means- this reflection of the planets velocities are done by effect of the energy reflection- please note- the energy reflection is a proved fact in the solar system- this fact is proved by hundreds of the planets data because the energy reflection cause effects on the planets data- shortly- the planets data is created by effects of the energy reflection-

Here we see the coherence of light is created because the orbits have energy where the space is energy and (Another energy is reflected and moved through all orbits and caused to create the planets data) by that each orbit has two energies together- I prove both energies are light beams-for that the two light beams create a coherence of light

I want to say- there are two facts prove the solar system has coherence of light which are the reflection of energy and the planets order

The planets orbits creation explain this theory in details I discuss it in item no. (**)

NOTICE

Please Note – I proved Mars original orbit was between Mercury and Venus and Mars is migrated to its current orbit behind the Earth- by that the inner planets original order was (Mercury – Mars – Venus – The Earth) here we see planets diameters are decreased gradually from the Earth to Mercury where Jupiter was the planet beside the Earth- means – the planets diameters are decreased gradually from Jupiter to Mercury- and the outer planets – the planets diameters also are decreased gradually- as I explained – if we compare planet diameter with fringe- the planets order be typical to Young interference – but – the order is reflected each other –let’s see that

The inner planets (Mercury – Mars – Venus – The Earth)- the order tells greater diameter necessitates longer orbital distance – but

The outer planets (Jupiter– Saturn– Uranus– Neptune –Pluto)- the order tells greater diameter necessitates shorter distance

Here we see the orders are reflected one another- but in Young interference there’s no reflection- I want to say- the planets orders are reflected because of the sun position- if the sun is not found no reflection will be found- that means- the reflection of energy caused to create the sun in the solar system because the sun creation causes the planets order to be reflected one another- my paper proves the sun is created after all planets creation and motion – and the sun is created by the reflected energy 

(Item No. vi) Planet Diameter Creation Depends On This Planet Orbit

The solar planets matters and their distances are created from one energy and this one energy is provided by one light beam and this light beam moves by speed = 1.16 million km per second (The speed is proved strongly and decisively)

The light (its speed 1.16 million km per second) built the solar system orbits starting from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each other (this fact is proved by my planet orbital distance equation) after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second before the space creation (In Mercury Orbit) and its speed becomes 300000 km/s after the space creation (in Pluto orbit) as result for the energy consumption in the space creation- 

In Pluto orbit - the light could Not move any further to build any more orbits because any additional space creation will consume more energy and that will decrease the light speed to be less than 300000 km/s (the known speed of light) – and – No known light moves by speed less than 300000 km/s – means- the light had no energy to move any further after Pluto orbit- for that- the light returns to its origin point (Mercury orbit) for that the light is reflected with speed (300000 km/s) from Pluto orbit to Mercury orbit passing through the built orbits– no energy is required in this motion for that the light beam moves with speed of light (300000 km/s) till Mercury orbit.

Please note- the light (300000 km/s) is reflected from Pluto to Mercury

The reflection of the light beam (300000 km/s) Caused To Create The Solar Planets

Comments

  • The light (1.16 million km per second) created the orbits with energy means the created orbits have energies- and each planet orbit energy is less than its previous neighbor orbit because the planets velocities are decreased gradually- almost the energy is less by rate 80% because the velocities are rated with (0.8)   
  • Each planet diameter is created based on its orbit energy- the planet is similar to a tree planted in a ground and the planet orbit is this ground- that’s why each planet diameter depends on this planet velocity and orbital inclination- please note Mars diameter equation proves this fact because Mars original orbit was between Mercury and Venus and Mars diameter is created based on this orbit energy and Mars had migrated from its original orbit to its current one behind the Earth but Mars diameter equation still shows Mars original orbital inclination (5.1degrees) while Mars current orbital inclination is 1.9 degrees- Mars diameter is created based on this inclination (5.1 deg) for that this inclination is seen in Mars diameter equation frequently (please review my planet diameter equation)    
  • The Occurrence Of The Coherence Of Light - The light beam (300000 km/s) is reflected and passed through all created orbits- that shows there two light beams are found in the same area (in any orbit)- because in each orbit there’s this orbit energy which is found with the orbit creation by the light (1.16 million km per second) for that we say (Space Is Energy) because any orbit has energy found with its creation- and also the reflected light beam (300000 km/s) passed through all orbits- by that- in any orbit there are two different light beams (two different energies) and these light beams create A Coherence together- 
  • The Amazing Coherence Of Light There’s a major interesting point here-the light beam (300000 km/s) created a coherence with the light 1.16 million km per second! BUT HOW?? because the light 1.16 million km per second is consumed and its energy is used for the space creation and the rest energy is this light beam moves by known speed of light (300000 km/s)!! how can the light beam (300000 km/s) meet the original light beam the 1.16 million km per second to create this coherence of light?
  • Please note- the speed 1.16 million km per second is the major used speed in the solar system data- means- the speed 1.16 million km per second is the secret by which the solar system data can be understood because all data is created as function in this speed-I prove that in the next pages- but this information is written to explain that the light 1.16 million km per second is consumed but its energy still works and causes continuous effect- BUT HOW??   

Let’s write the answer

  • The light (300000 km/s) is reflected to move from Pluto to Mercury (while the original light 1.16 million km per second moved from Mercury to Pluto) means the light (300000 km/s) moved in opposite direction for the motion of the original light 1.16 million km per second- MEANS- the light (300000km/s) moved in the opposite direction of space to reach to Mercury- BUT NOT ONLY- in fact- the light (300000 km/s) moved also in the opposite direction OF TIME and moved into its own past – and in past – this light beam (300000 km/s) met the original light beam 1.16 million km per second – and in past – the two light beams created the coherence of light and then this coherence of light results have effects on our present time-
  • Shortly- the coherence of light in the solar system proves the light beam (300000 km/s) moved on the time-axis and this is an empirical proof for the time-axis motion where the light can move simply on the time axis
  • Notice – this motion can help us to create the time machine- because- if the light can move into the past that means we may use this motion and take photos of the past events and this will be our time machine which can go into the past and make photos and videos for the past events – even the events since thousands of years we can see in videos or in photos – this motion of light can give us a great option to create our machine of time      
  • Notice  the original light beam 1.16 million km per second can not move into the future to meet the light beam (300000 km/s) because in future the original light 1.16 million km per second is NOT found because its energy is consumed in the space creation- but- the light beam (300000km/s) can move into the past because in the past the light beam (300000 km/s) was part in the original light beam 1.16 million km per second and by that the two light beams be found in the same time  
  • Notice – we can not travel ourselves into the past- because planet diameter is created depending on its velocity- as proved by my planet diameter equation- means- the matter is created depending on its motion velocity- and the velocity is a motion in defined direction- the light is free in motion and doesn’t forced to move in any direction for that the light has this option to move on the time axis but the matter is created depending on a motion in defined direction (no freedom in motion) for that the matter can’t move on the time axis because the motion force the matter to move in a defined direction – the matter moved just to the future– and the matter can’t move into the past-  
  • Planet Creation Machine Please note–we see the coherence of light is done by the two light beams 300000 km/s and 1.16 million km per second (because the light beam 300000 km/s can reach to the light 1.16 million km per second by moving into its past)- shortly – here we have 2 light beams in any orbit- and these two light beams cause two motions – we can imagine these two motions are perpendicular on each other – this perpendicular motions create a wave and planet is created as a wave (Particle is a wave also)- that explains how the planets are created 
  • Please note-  The reflection of energy is very effective in the solar planets data because the reflection of energy caused the planets to be created- the matter can’t be created by the energy of any orbit alone but the reflection of energy adds second energy inside each orbit- by that- two energies are found in any orbit (two light beams) by these two light beams the light coherence is created and also the planets are created as waves-that explains why the planets data prove the reflection of energy because the planets are created by this energy reflection- as when we plant a tree we need a ground and we need seeds to be put in this ground- two players- the planets are created by two energies (two light beams coherence) and for that the planets velocities are defined based on the two speeds (300000 km/s) and (1.16 million km per second) as planet velocity definition proves.
  • Please note  the Matter Is Created In Pairs (as electron and positron from Gamma rays 1.2 Mev) – this is the main system of creation but -In planets creation the rule is used with some complex method- the complementary is found for the planets velocities and the planets data is created depending on these velocities- the same concept but the method is more complex- this similar to the creature creation- the cell reproduction is done by split the cell into two new cells- but in higher creatures the reproduction use more complex methods but the cell method is still the base of these complex methods  
  • Please note  the previous analysis tries to conclude how the planet matter is created – I put all available facts to reach to this conclusion- the matter real mechanism may be still not clear but many provided facts help to reach to this mechanism- also- we know the main concept behind the matter creation which is (The Matter Is Created In Pairs And Not Single Matter Is Created)
  • This Concept Is Proved Strongly And Clearly By The Gamma Rays Experiment And The Planets Data

 (Item No. vii) The Proves Of The Light Speed 1.16 million km per second

THE SPEED PROVES

In following I prove the speed 1.16 million km per second is found

The paper provides many powerful proves – but - here I refer to 4 proves only

(1st Proof)

Planet Velocity Analysis proves the speed 1.16 million km per second

Data

322 = 47.4 km/s (Mercury velocities)  x 6.8 km/s  (Uranus velocities)                         

322 = 35 km/s  (Venus velocity)       x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)          x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)       x 13.1 km/s (Jupiter velocity)                        

322 = (17.9 km/s)^2 (Ceres velocity)                               (Max error 2%)

Discussion

This is one rule used to define planet velocity- we know this rule (v1v2 = constant =322) – other rules are discussed in planet velocity definition- here we ask only

Why the constant is 322?? Because 1160000 seconds = 3600 x 322 hours

Means – for example

Mercury (47.4 km/s) moves in 6.8 hours a distance 1.16 million km – and

Uranus (6.8 km/s) moves in 47.4 hours a distance 1.16 million km-

Means- the light moves 1.16 million km but we see it as 1160000 seconds and based on this period the constant 322 hours is defined and based on this constant the planets velocities are defined- means- the planets velocities are defined as functions in the speed 1.16 million km per second

(2nd Proof) the planets orbital circumferences total is defined by light speed 1.16 million km per second- let’s prove that 

100733 million km = 86400 seconds x 1160000 km/s

100733 million km = The Planets Orbital Circumferences Total

86400 seconds       = The solar day

Means- light its speed 1.16 million km per second passes in a solar day a distance = 100733 million km = The Planets Orbital Circumferences Total

The planets data analysis proves that the solar day is the major period of time in the solar system- that because- all planets rotation periods are defined based on it- the paper proves this fact strongly

 (3rd Proof)

The planets orbits and orbital distances are created from the energy of the light beam its speed is 1.16 million km per second- for that- this speed is registered in the distances data – let’s prove that in following

Example

778.6 million km (Jupiter orbital distance) = 1160000 km/s x 671 seconds

721 million km (Jupiter Mercury distance) = 1160000 km/s x 629 seconds

Where

671 million km = Jupiter Venus Distance

629 million km = Jupiter Earth Distance

This example tells that

The light (its speed 1.16 million km per second) created the distances based on each other- means

The light uses 671 million km (Jupiter Venus Distance) as a period of time 671 seconds to pass the distance 778.6 million km (Jupiter Orbital Distance)   

Also -the light uses 629 million km (Jupiter Earth Distance) as a period of time 629 seconds to pass the distance 721 million km (Jupiter Mercury Distance)   

By this method the light (1.16 million km per second) creates the distances based on each other- means – the distances be created in one network and by one design

the previous data is example for so many other distances let’s see them in following

(778.6 / 671)= (721/629) = (629/551)= (2x551/940)= (4900/4188) = (5906/5127)= (5127/4437) = (4345/3717)= 1.16

Where

778.6 million km = Jupiter Orbital Distance 

721 million km    = Jupiter Mercury Distance 

671 million km    = Jupiter Venus Distance 

629 million km    = Jupiter Earth Distance 

551 million km    = Jupiter Mars Distance 

940 million km    = Earth Orbital Circumference

4188 million km  = 2 x 2094  million km (Jupiter Uranus Distance)

4900 million km  = Jupiter Orbital Circumference

5906 million km  = Pluto Orbital Distance

5127 million km  = Pluto Jupiter Distance

4437 million km  = Mercury Neptune Distance

4345 million km  = The Earth Neptune Distance

3717 million km  = Jupiter Neptune Distance

The paper provides so many other powerful proves for the speed 1.16 million km

Notice

 (1.16/0.3) x 2π = 24.3

The equation tells, because the solar system is created by light beam its speed 1.16million km per second with its other speed 300000 km/s

For that - the space is created in curved lines (2π) and the time is created based on the solar day (24 hours)- that explains why the planets orbital circumferences total depends on the solar day period

(4th Proof)

300000 = (205.8)^2 x 7.1 where

The 9 planets velocities total 176 km/s and I add the Earth moon velocity 29.8 km/s the total be 205.8 km/s - the unified wave velocity (205.8 km/s)

7.1 is Lorentz length contraction effect produced by speed 99% of speed of light-

Shortly- the reflection of energy causes to square the wave velocity for that the unified wave velocity (205.8 km/s) is squared by the energy reflection

Now (205.8 km/s)^2 = 42354

The rate 7.1 causes to increase the distance from (42354 km) to (42354 x 7.1= 300000 km)- note-although 7.1 is Lorentz length contraction rate but it increases the distances in place of the contraction effect because the reflection of energy causes to reflect the geometrical effects-

shortly the equation (300000=(205.8)^ x 7.1) proves the planets velocities are defined as function in the known speed of light (300000 km/s)   

that proves the planets velocities are defined based on the two speeds of light –the known speed of light 300000 km/s and the original speed of light 1.16 million km per second.

NOTICE

Lorentz length contraction effect for a velocity 99% of speed of light (297000 km/s) is (7.1) as seen in the equation but the solar system uses this rate with modification

(7.1/100)+ 1 = 1.0725

And this final rate (1.0725) controls 40% of all planets data (distances, periods, axial tilts and other data)- this effect is a proof for the motion by high velocity because this rate (1.0725) controls 40% of all data in the solar system and no explanation except Lorentz length contraction effect- more proves are in (Item No. 5-6 Can Relativistic Effects Be Found In The Solar System?) (CONT)

Gerges Francis Tawdrous +201022532292

Physics Department-  Physics & Mathematics  Faculty 

Peoples’ Friendship university of Russia – Moscow  

Curriculum Vitae                 https://www.academia.edu/s/b88b0ecb7c

E-mail                            mrwaheid@gmail.com, mrwaheid1@yahoo.com

                                      gergesgerges@yandex.ru               

ORCID                          https://orcid.org/0000-0002-1041-7147

Facebook                       https://www.facebook.com/gergis.tawadrous

VK                                 https://vk.com/id696655587

Tumblr                           https://www.tumblr.com/blog/itsgerges 

Researcherid                       https://publons.com/researcher/3510834/gerges-tawadrous/

Google                                        https://scholar.google.com/citations?user=2Y4ZdTUAAAAJ&hl=en

Livejournal                     https://gerges2022.livejournal.com/profile

Pocket                                                                    https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar

box                                        https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv

Academia                       https://rudn.academia.edu/GergesTawadrous

List of publications        http://vixra.org/author/gerges_francis_tawdrous

Slideshare                            https://www.slideshare.net/Gergesfrancis

Text
itsgerges
itsgerges


Best Regards

 Can Neptune Orbit Be Reflected On The Other Planets Orbits?

or

or

or

Why Should We Study Neptune Orbit?

I Try To Prove Neptune Orbit Is Reflected On The Other Planets Orbits-

The planets orbits follow rules but Neptune orbit follows these same rules by using a reflected behavior (the meaning  of “A Reflected Orbit”)- more explanations later-   

If I prove Neptune orbit is reflected on the other planets orbits- that can prove the space properties depend on the motion direction of the energy from which this space is created-that can help to answer (How Is The Space Created?) and (What’s the space nature?)– because- we will have a part of space reflected on the other part of space and that can help to know the space nature and features- for that Neptune Orbit is a treasure of knowledge. 

Paper Question

Pluto orbital distance is divided into 4 parts, 3 are equal and one is different–namely Saturn orbital distance= Saturn Uranus distance= Pluto Neptune Distance= 1433 mkm but Neptune Uranus distance=1622 mkm–Why Are Not The Four Distances Equal?

These distances distribution shows interesting fact

Pluto Orbital Distance = 5906 mkm = 1433 (π + 1)

Pluto Saturn Distance  = 4470 mkm = 1433 (π)

Pluto Uranus Distance = 3035 mkm = 1433 (π - 1)

Pluto Neptune Distance=1433 mkm BUT Neptune Uranus Distance =1622 mkm=1433 (π-2)

If Pluto Neptune Distance is (A) and Neptune Uranus Distance is (B)-

The data shows the distance (A) is found in place of the distance (B) and vice versa- this conclusion depends on the used rule because the designer used (π + 1) between Pluto and the Sun and used (π) between Pluto and Saturn and used (π - 1) between Pluto and Uranus- that pushes us to expect to use (π - 2) between Pluto and Neptune- BUT- not fact – the distance (π -2) is used between Neptune and Uranus- we have to conclude that (the distance A is reflected on the distance B)

This is one example shows Neptune orbit reflected behavior with the used rules- the important news is that- Neptune orbit uses reflected behavior with many other rules - that’s why I can’t consider this behavior as (pure coincidence)- and I searched for the geometrical reason behind- and I found that Neptune orbit is reflected on the other planets orbits-

The main idea is– the planets orbits are created from one energy moved from Mercury orbit to Pluto orbit BUT Neptune Orbit is created from another energy moved from Pluto to Mercury- means- the two energies moved in the opposite direction to each other that’s why Neptune orbit is created reflected on the other planets orbits

Neptune Orbit Study Useful Results

There are two major results are produced by this study which are   

First Result

The study proves- The planets orbits are created from one energy and this energy is provided by one light beam and this light beam moves by speed 1.16 million km per second- shortly- the space creation needs the speed 1.16 million km  per second- and the light with known speed (300000 km/s) can NOT create any part of space-the study explained the reason- that proves the speed 1.16 million km  per second is A Fact 

Second Result

Neptune Orbit is created by energy moved from Pluto to Mercury while all other orbits are created by energy moved from Mercury to Pluto for that Neptune orbit is reflected on the other planets orbits – that prove the energy motion direction has effect on the space properties if this space is created from this energy.

How Can We Analyze Neptune Orbit?

We should start our study by two major subjects which are

(1) The Solar System Creation Theory

(2) The Solar System History

By these two subjects we will know how the planets orbits are created and why Neptune orbit is reflected on the other planets orbits- I put these two subjects after my Research 8 conclusions and the detailed study of Neptune orbit is found in item No.(XI)

My Research Conclusions - My Research produced the following 8 Conclusions

(1st Conclusion)

Any Motion In Space Produces Energy And Any Motion Energy Creates Waves In The Space– for that- Planet motion produces energy (½ mv^2) and this energy creates waves in the space- and each planet waves move by its planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by (47.4 km/s)- all waves move toward Pluto orbit (Perpendicular On The Revolution Direction)- and in Pluto orbit these waves are unified into one unified wave moves by velocity 205.8 km/s (the planets velocities total)- this unified wave is the gravitational wave- means- the gravitational waves are produced by the planets motions energies total and not by the gravitational field- Moreover- There’s No Gravitational Field- ALSO - The Sun Has No Massive Gravity AND No Planet Moves By The Sun Gravity (Newton Is Wrong)

(2nd Conclusion)

The Sun Is Not Doing Nuclear Fusion To Produce Its Rays- Instead- The Sun Rays Are Produced By The Gravitational Waves Motions Energies- And- The Gravitational Waves Are Produced By The Planets Motions Energies - Means- The Sun Rays Are Created By The Planets Motions Energies Total- The Sun Is A Phenomenon

Let’s Explain Shortly- This Is Extraordinary: Gravity Can Create Light, All on Its Own

This new article tells the gravitational waves can move by speed of light and can produce a light beam- I claim The Sun Rays are produced based on this method by the gravitational waves motions and not by the sun nuclear fusion process- the sun is a phenomenon created based on the planets motions and the sun life and death depends on a cycle – means- after this sun death another sun will be produced for the solar system because the sun is produced by the planets motions and the sun is the outlet for the planets motions energies total

This is my paper major hypothesis- the paper proves basically this fact by decisive proves

(3rd Conclusion)

The Planets Motions Use Different Rates Of Time 

Let’s asks (How Can The Planets Small Motions Energies Be Used To Produce The Sun Rays?)- The Planets Motions Use Different Rates Of Time - let’s give example

(One Second Of The Sun Clock= 1461 Seconds Of The Unified Wave Clock) 

We remember, the planets motions energies waves are unified into one unified wave and this wave revolves around the sun and moves by (205.8 km/s)

The rate of time tells (1 s of the sun clock = 1461 s of this unified wave clock)

(the unified wave clock = any planet clock)

by this rate of time- the unified wave moves by speed of light relative to the sun- because- the unified wave (205.8 km/s) moves in 1461 seconds a distance= 300000 km but the sun clock sees one second only and for that the unified wave moves by speed of light relative to the sun  

shortly- because the planets motions use different rates of time, the planets motions energies can be accumulated during a period of time to be massive amount of energy by which the sun rays can be created- the rates of time use is discussed in full details and proves in Item No. (*)

(4th Conclusion)

Planet is a geometrical point created by energy and the created planet moves with this energy from which this planet is created- means- Matter and space are created from the same energy but the matter created for itself a distinguished picture different from the space and moves by different velocity from the space motion- based on that- if the space is similar to the sea of water – the matter is similar to a whirlpool or vortex found on the sea page- this new definition of matter is proved by my planet diameter equation – and based on this definition

Planet (matter) is created in this planet original orbit- means- the orbits are created before any planet creation- and Planet is created in its orbit- Planet is similar to a tree planted in some ground and the orbit is this ground- for that- Planet Creation data is created depending on this orbit data and this planet creation data is belonged to this orbit data and that means even if the planet is migrated and left its original orbit – this planet creation data will be still belonged to its original orbit- that help us to know if any planet changed its orbit in the history – let’s prove this definition in following 

My Planet Diameter Equation (v1/v2)= (s/r)= I

v = Planet Velocity  and r = Planet Diameter and I= Planet Orbital Inclination   

s= Planet Rotation Periods Number In Its Orbital Period

v2, s, r and I are belonged to one planet and v1 is belonged to another planet

The planet (v1) is defined by test the minimum error 

Earth Equation uses Neptune velocity and  Mars Equation uses Pluto velocity

Jupiter Equation uses the Earth moon velocity and Saturn Equation uses Mars velocity

Uranus Equation uses Neptune velocity and Neptune Equation uses Saturn velocity

Pluto Equation uses the Earth moon velocity (As Jupiter)

Example  Neptune Equation (89143 /49528) = 9.7/ 5.4 =1.8                  

89143                   = Neptune rotation periods number in Neptune orbital period

49528 km   = Neptune diameter and 9.7 km/s = Saturn velocity

5.4 km/s      = Neptune velocity  and 1.8 degrees= Neptune Orbital Inclination

59800 days = Neptune orbital period (and Neptune rotation period =16.1 hours)

Shortly- my planet diameter equation proves planet diameter is created depending on its velocity- and when a planet left its orbit, its velocity is changed because Kepler stated (Planet orbit defines its velocity)- for that the migrant planet made changes for its motion data to be suitable for its new orbit and by that the analysis for this planet data show the inconsistency between its creation data and its motion data (because this planet diameter is not changed after its migration)- and by that we can discover this planet is a migrant one and we can conclude this planet original orbit   

(5th Conclusion)

Mars original orbit was between Mercury and Venus with orbital distance 84 mkm and Pluto was The Mercury moon revolved around Mercury- the two planets are migrated from their original orbits- Mars had collided with Venus and The Earth before to reach to its current orbit (228 mkm) and Mars is the planet caused the Earth moon creation- (Giant impact hypothesis is wrong)–AND- Mars Collision with Venus and The Earth is a cyclic accident means it’s an accident repeated one time each 8211 years– I prove that in page No.***)

ALSO Pluto is migrated and flight to the end of the solar system design (the orbital distance 5906 mkm)–in that time Neptune original orbit was 5906 mkm – means- Pluto current orbit was Neptune original orbit- But Pluto had collided with Neptune and pushed Neptune out of its orbit and Pluto occupied its orbit- of course Pluto can’t support this collision but Pluto was carrying by strong wave of energy- this wave pushed Neptune out of its orbit

The paper proves this fact and analyzes Pluto orbital inclination 17.2 degrees because it was Neptune orbital inclination and Neptune creation data depended on it and after Pluto occupied the orbit 5906 mkm Pluto motion depends also on this inclination 17.2 deg for that this inclination caused deep interaction between Neptune and Pluto

(6th Conclusion)

Neptune had to create a new orbit for itself (with orbital distance 4495 million km) – and this new orbit caused to redistribute all planets orbits- the planets orbits redistribution is done under Uranus effect to save the one geometrical design based on which the solar planets orbits were created –the planets orbits redistribution was complex because Neptune Orbit Is Reflected On The Other Planets Orbits

Notice

Neptune orbit is created reflected on all other planets orbits- this is happened because all planets orbits are created from one energy and this energy moved from Mercury orbit to Pluto orbit – BUT- Neptune orbit is created from another energy and this last energy moved from Pluto orbit toward Mercury and Venus orbits- clearly the two energies were moving in the opposite directions for each other that caused Neptune orbit to be reflected on all planets orbits-

(7th Conclusion)

The Earth Moon Creates An Angle In Its Motion

The moon daily displacement =88000 km and during 29.53 days (the moon day period) the displacements total be = 2.598 million km = 2π x 413600 km

The data tells us the moon orbital apogee radius should be 413600 km and also it tells, because the moon daily displacement (88000 km) is so long, the moon should revolve around the Earth through this apogee orbit its radius (413600 km) only and can’t revolve around the Earth through any more near orbit… Not Facts

The moon orbital apogee radius =406000 km only and the moon revolves around the Earth through near orbits and can reach to perigee radius (363000 km). 

 

How Can The Moon Do That? the intelligent moon creates an angle (θ) between its motion direction and its orbit horizontal level by that the real displacement (L) through the orbit be less than (88000 km) because it be (L = 88000 km cos θ), as a result the total displacements be less than (2.598 million km) and that makes the moon orbital apogee radius to be decreased from 413600 km to 406000 km.

We should pay attention for the angle (θ), because this angle controls the moon motion features – where- with the angle (θ) increasing the real displacement (L) be shorter and the moon can revolve around the Earth through more near orbits – but –with the angle (θ) deceasing the real displacement (L) be longer and that pushes the moon far from the Earth to more far orbits.

The moon orbital motion Equation depends on this angle (θ) it tells θ1 = θ0 +1.7

where (θ1) = today angle and (θ0) =yesterday angle

1.7 degrees be used as the moon daily motion degrees for the equation

 

NOTICE

As a result for the angle (θ) using- the moon orbital radiuses be defined depending on Pythagorean rule- this is proved in following 

(363000 km)2 + (86000 km)2 = (373000 km)2

(373000 km)2 + (86000 km)2 = (384000 km)2

(384000 km)2 + (86000 km)2 = (392000 km)2

(392000 km)2 + (86000 km)2 = (406000 km)2      (error 1%)

363000 km, 373000 km, 384000 km and 406000 km are the moon orbital radiuses in perigee, total solar eclipse, orbital distance and apogee respectively

8th Conclusion)

The solar planets and their orbits are created from one energy and this energy is provided by one light beam and this light beam moves by a speed =1.16 million km per second-

Shortly

The universe max speed is NOT the known speed of light (C=300000 km/s) (Einstein is Wrong) BUT the max speed is the speed of the original light beam its speed is 1.16 million km per second- from this light beam energy all planets orbits are created (Except Neptune)-

let’s refer to the solar system creation theory in following 

(1) The Solar System Creation Theory

  1. The solar planets matters and their distances are created from one energy and this one energy is provided by one light beam moves by speed = 1.16 million km per second- The light built the solar system starting its motion from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each other (as proved by my planet orbital distance equation) after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second in Mercury orbit before the space creation- and its speed be 300000 km/s in Pluto orbit after the space creation as result for the energy consumption in the space creation- 

2.  In Pluto orbit- The light had no energy to build any more orbits -for that- the light returned to its origin point (Mercury orbit) for that the light is reflected with speed (C=300000 km/s) from Pluto orbit to Mercury orbit passing through all built orbits– No energy is required in this motion for that the light beam moves with speed of light (C=300000 km/s) in Mercury orbit- Please note- the light (300000 km/s) is reflected from Pluto to Mercury -the reflection of the light beam (300000 km/s) Caused To Create The Solar Planets – because

3.  Planet Is An Intersection Point Between Two Energies- This is similar to two ropes or cables are connected together by one knot (or joint)- the knot is connected with both ropes and each rope motion effect on its motion- this Knot is the planet -This picture makes the planets typical to The Puppets Theater- because their motions depend on the motions of the energies from which these planets are created- means- one energy is insufficient to create the matter- matter creation needs tow energies and for that each  planet is created as the intersection point between two energies

4.  We understand- the reflected light beam (300000 km/s) is passed through all orbits while each orbit is created by energy is provided by the original light beam its speed 1.16 mkm/s by that in each orbit there were two energies which are – the orbit energy and the reflected energy and these two energies are connected together and their intersection point is a planet

5.  That gives a new definition for planet- shortly Planet is created of the energy in its orbit –the space is energy- if the space is similar to the sea of water the planet is similar to a whirlpool (vortex) found on the sea page- the whirlpool is created by the sea water but it’s different from the sea waves picture and move by different velocity from the sea waves motions- this explanation is very important – let’s explain why

6.  The explanation tells- Planet is created in its orbit- means- planet is similar to a tree planted in some ground and this ground is its orbit- for that reason- planet creation data depends on its orbit data- because the planet is created based on this data- the orbit is found before the planet creation and the planet is created depending on this orbit energy and for that planet creation data is belonged to its orbit data – this is important because it tells planet creation data refers to the orbit in which this planet is created and if a planet changed its orbit during the history we will discover that by this planet creation data analysis

7.  The important fact is (Planet is created depending on its orbit energy and by that Planet creation data will refer always to the orbit in which this planet is created)

8.  By that- we know that Neptune original orbit was Pluto current orbit (5906 mkm) AND we know Pluto original orbit was Mercury orbit (57.9 mkm) because Pluto was The Mercury Moon revolved around Mercury – AND we know Mars original orbit was between Mercury and Venus with orbital distance = 84 mkm – these conclusions are proved strongly by these planets creation data analysis- but – how had these planets migrated? Let’s answer with the next fact

(2) The Solar System History

Pluto was The Mercury moon revolves around Mercury.

Mars original orbit was between Mercury and Venus with orbital distance =84 mkm

And there was a planet with orbital distance =71 million km (called it Planet H)

based on that –the  inner planets order was (Mercury with its Moon Pluto in 58 mkm – Planet H in 71 mkm - Mars in 84 mkm –Venus in 108 mkm –The Earth without its Moon in 150 mkm)

The Events

Mars had collided with The Planet (H) and Mars had caused to break this planet- means- The Planet (H) is broken by the collision with Mars and this planet is dead

Mars motion is reacted by the collision and for that Mars had migrated from its original orbit (with orbital distance 84 million km) and moved to its current orbit (228 million km) and through this motion Mars had collided with Venus and then with The Earth and Mars is The planet caused The Earth Moon Creation –this fact is proved by my theory (Mars Migration Theory)

Pluto was the Mercury moon its size was equal Mercury size (diameter 4879 km) but its Mass was (double the current mass= 2 x 0.0146 x10^24 kg) means very small mass for that Pluto is effected greatly by Mars collision and Pluto had flight to the end of the solar system design means to the point with orbital distance 5906 million km

In that time Neptune orbital distance was 5906 million km- means- Pluto Current Orbit Is Neptune Original Orbit

Pluto was flying along the distance from Mercury to the point 5906 million km and Pluto had collided with Neptune and pushed Neptune out of its orbit and Pluto occupied this orbit and pushed Neptune out of the orbit and out of Pluto Motion effect for that Pluto eccentricity distance = Pluto Neptune Distance =1410 million km

BUT –

Pluto Mass is 0.0146 while Neptune Mass is 102 means Neptune Mass =6939 Pluto Mass!! How can Pluto small mass push Neptune great Mass? let’s answer

Pluto was The Mercury Moon and Migrated from its original orbit because of the collision is done by Mars with the planet (H)- Now –Pluto was carrying by very strong wave of energy- this strong wave pushed Pluto to move so far distance from its original orbit with Mercury to the End of the solar system –means- the point 5906 mkm- this motion through so long distance is done by very strong wave of energy- this strong energy wave pushed Neptune out of its orbit- means- Pluto didn’t push Neptune but the strong wave which carried Pluto to pass this long distance- this wave pushed Neptune out of its orbit –

We can imagine a small boat is carried by very strong wave of water in the sea- the wave pushed this boat strongly and caused the boat to be collided with a great ship and the ship is moved away far from the boat because of the strong wave effect.

Similar to that- Pluto was carried by very strong wave of energy- this wave caused the collision between Pluto and Neptune and this wave pushed Neptune out of its orbit- Also Pluto body is broken in this collision and Pluto diameter was 4879 km (equal Mercury diameter) but it’s broken by the collision and be 2390 km only – where Pluto moon size is almost equal Pluto size – Pluto moons can be created by the collision debris.       

A Question  Why Did Not Pluto Collide With Any Other Planet Before To Reach Neptune? The collision between the wave carried Pluto with Neptune is not done by some chance of meeting-

The strong wave carried Pluto to the end point of the solar system- but –the wave could NOT go out of the solar system design-means- the point 5906 million km worked as a wall and the energy could not pass this point (5906 mkm)- as a result –the wave had to revolve around the sun with the planets revolution by that the wave revolved through the same trajectory of Neptune revolution around the sun –that’s why the wave met Neptune and pushed it out of its orbit- we know this collision is done before the sun creation but we know also the planets were found before the sun creation and the planets were revolving around a point in space and the sun is created on this point of space –means- the revolution trajectory is not changed- 

Please note- the collision between Pluto and Neptune pushed Neptune toward Uranus to be more near to the sun that shows the collision is done in the other side- means- the wave came from the upper side (too close to the point 5906 mkm) and pushed Neptune to be more near to Uranus that shows the wave motion direction

Notice- Neptune had to create a new orbit for itself- means – Neptune current orbit 4495 million km is created after the collision between Neptune and Pluto- and this orbit creation necessitated to redistribute all planets orbits to create general harmony of their motions- the planets redistribution is done by Uranus Motion Effect- the proves discussion proves the major role of Uranus motion and effect on the solar system to create the general harmony of all planets motions 

Notice- Neptune caused negative effects on the solar system- let’s refer to them

(1) Neptune motion caused to create relativistic effects in the solar system because while the gravitational waves move by speed of light (300000 km/s) Neptune caused to decrease this speed with 1% which caused the gravitational waves to move by 99% of speed of light and this speed created the relativistic effects specially Lorentz length contraction effect with rates (7.1 and 1.0725)

Lorentz length contraction has very negative effect on the planets motions because the planets motions energies are found in distances form and Lorentz length contraction prevent these energies to be unified into one energy because Lorentz length contraction contracted the distances and prevent their unification

(2) Neptune motion forces the gravitational waves to be reflected a third time where two reflections only were sufficient if Neptune Motion is not found but because of Neptune motion negative effect the waves have to be reflected a third time

AND

Neptune Orbit Is Reflected On The Other Planets Orbits- But-Although The Orbit Is Reflected Neptune Has To Revolve Around The Sun In The Same Direction With All Planets To Save Its Diameter

What does mean (Neptune Orbit Is Reflected On The Other Planets Orbits?)

It’s means- all planets orbits are built of one energy- and this energy moved from Mercury to Pluto BUT Neptune orbit is created of energy and this energy moved from Pluto to Mercury (the  opposite direction) –more explanations are found in the detaile discussions

NOTICE

The detailed study of Neptune orbit can answer the following questions

  1. From What Type Of Energy The Space Is Created?
  2. What amount of energy is required to create a distance = 1 kilometer?
  3. What’s the energy motion direction effect on the distance properties if this energy created this distance?
  4. Can Space is created only by the light beam its speed 1.16 million km per second? why Can’t the known speed of light 300000 km/s create space? 
  5. What’s the space nature and properties?
  6. If the light deals with the space and time exchangeable- can the space nature be equivalent to the time nature? What’s required energy to create one second which can be used as one kilometer?
  7. The planets data give us this rate (one kilometer of a planet diameter equal= one million km of space) can we explain how this rate is defined?

Neptune orbit detailed study is in item no. (XI)

Paper Objective

The Paper Proves The Following Facts

  1. The Gravitational Waves Are Produced By The Planets Motions Energies And Not By The Gravitational Field- Moreover- (The Sun Doesn’t Produce A Gravitational Field)  
  2. Planet Is A Geometrical Point Created By A Moving Energy And Moves With This Energy Motion- mean- the energy is similar to the blood in a creature body and planet is similar to a muscle in this creature- also-the planets are similar to the puppets theater because the planets motions depend on the energy motion from which these planets are created- these examples explain the energy motion effects on the planets data  
  3. The gravitational waves reflection causes effects on the planets creation and motion data because the reflection defines the energy motion direction.
  4. The gravitational waves reflection causes to square the wave velocity- means- if a gravitational wave velocity is (v) and this wave is reflected- its velocity after the reflection will be (v^2)

Paper Objective Proof Method

The gravitational waves are reflected three times in the solar system– from Neptune to Saturn- and- from Uranus to Jupiter– and- from Venus to Mars –these reflections cause to effect on the planets data- AND -The paper compares between the effects of these three reflections on the planets data and by this data comparison the paper proves the facts of its objective.  

Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition

Paper Hypothesis

The Sun Is Not Doing Nuclear Fusion To Produce Its Rays- Instead- The Sun Rays Are Produced By The Gravitational Waves Motions Energies- And The Gravitational Waves Are Produced By The Planets Motions Energies- Means- The Sun Rays Are Created By The Planets Motions Energies Total- Shortly- The Sun Is A Phenomenon Created After All Planets Creation And Motion Because The Sun Is Created By The Planets Motions Energies. 

That explains why the sun corona temperature is 5 million Kelvin but the sun surface temperature is 5800 Kelvin- because the energy is not produced from the sun body but the energy comes from out of the sun body for that the energy out of the sun is so greater than the energy inside the sun (the energy comes from the gravitational waves which are produced by the planets motions energies total)   

Planet Creation And Nature Definition

  • The Matter Creation has 2 basic features which are (1st feature) the matter is an intersection point between two energies- means- the matter creation depends on two energies where (one energy is not enough to cause the matter creation) AND (2nd feature) the matter is created in pairs and no single matter can be created (as electron and positron are produced from Gamma ray 1.2 Mev) and also (the creation system male and female proves the matter is created in pairs)

These Same Features Are Used For Planet Creation

  • Planet Is An Intersection Point Between Two Energies- This is similar to two ropes or cables are connected together by one knot (or joint)- the knot is connected with both ropes and each rope motion effect on its motion- this Knot is the planet -This picture makes the planets typical to The Puppets Theater- because their motions depend on the motions of the energies from which the planets are created.
  • Also- the planets are created in pairs and no single planet can be created– planet velocity definition and its diameter creation both prove this fact
  • Planet Nature Definition aims to prove (Planet is created based on a coherence of light- means- the matter generally is created based on a coherence of light)- Planet Nature definition is written in page No. (21) and its proves are in item No.  (VI)

The Solar System Description Refutation-

(The Sun Is The Planets Motions Result But The Description Supposes The Sun Is The Planets Motions Reason) and (The Matter Is Created Depending On Its Motion But The Description Supposes The Matter Is Created Independently From Any Motion)

The Paper Abstract Contents

I-  Major Problems In The Physics Book

II- The Gravitational Waves Creation, Motion And Reflection

III- The Gravitational Waves Reflection Effects On The Planets Data (The Data Comparison)

IV-  The Paper Hypothesis Proof (The Sun Rays Creation Theory)

V- The Planets Motions Use Different Rates Of Time 

VI- The Proof Of Planet Nature Definition (Matter Nature Analysis)

VII -The Physicist Wrong Vision Proves

VIII-The Proves For My Theory

(There’s A Light Beam Moves By Speed 1.16 Million Km Per Second)

IX- The Solar System Description Refutation

X -The Refutations Of Many Theories In The Physics Book 

XI-The Solar System History And Neptune Orbit Creation

XII- The Paper Major Question Answer

Paper Definitions Are In Page No. 329

Questions And Answers Are In Page No.361

An article Mars Will Collide With The Earth And Push The Atmosphere Gases Into It 381

The Paper Hypothesis Explanation

The Sun Rays Creation Process

This Is Extraordinary: Gravity Can Create Light, All on Its Own

This new article tells the gravitational waves can move by speed of light and can produce a light beam- I claim The Sun Rays are produced based on this method by the gravitational waves motions and not by the sun nuclear fusion process- also –No star rays is produced by the nuclear fusion process but all rays are created by the gravitational waves motions energies as the article states.  

Here we have four questions to answer

  1. How can the gravitational waves be produced by the planets motions energies?
  2. How can the gravitational waves move by speed of light?
  3. How can the gravitational waves motions produce a light beam?
  4. Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

1st Question

How Can The Gravitational Waves Be Produced By The Planets Motions Energies?

Planet motion produces energy (½ mv^2) but where’s this motion energy? Planet can NOT store its motion energy inside its body because It would raise its temperature- and no planet temperature is raised by its motion- logically- planet motion energy is stored in the space in moving waves –Means- planet motion in space is similar to a fish swimming in the sea- the fish swimming creates waves in the sea and similar to that - planet motion energy creates waves in the space- and - fish swims because it hits the water by its body and that creates waves in the water- and these waves move by a velocity equal the fish velocity because of the reaction force- similar to that- Planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal this planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by equal velocity (47.4 km/s)

Shortly- the planets move and their motions create waves in the space and each wave moves by velocity equal its planet velocity

AND the planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)

AND  in Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity= 205.8 km/s where The 9 planets velocities total=176 km/s but I add the Earth moon velocity (29.8 km/s) that makes the total to be 205.8 km/s – I add the moon velocity because the energy is stored finally in the moon orbit-

Note- The moon and the Earth revolve around the sun together for that the moon velocity is considered equal the Earth velocity relative to (the sun) –

NOW the unified wave moves by (205.8 km/s) is the gravitational wave-

The scientists discovered these waves in the space and they called them (gravitational waves) supposing these waves are produced by the sun gravitational field- BUT Planet motion energy must be stored in the space as moving waves – as proved by the previous analysis -means- even if There’s NO Gravitational field at all there’s a strong reason to find waves in the space because these waves are created by the planets motions energies

Note- I refute the sun gravitational field theory- and prove the sun has no massive gravity and also No Planet Moves By The Sun Gravity (Newton Is Wrong)

The Conclusion

The Unified Wave Its Velocity 205.8 Km/S Is The Gravitational Wave

Notice - the new article still believes that the gravitational waves are produced by the gravitational field- I refuse this idea and prove the gravitational waves are produced by the planets motions energies but I need the article because it tells the waves can move by speed of light and can produce the light beam where I suppose the sun rays are created by this method 

The Answer Of The Questions No. (2) And No. (3) 

2ndQuestion   How Can The Gravitational Waves Move By Speed Of Light? AND

3rdQuestion How Can The Gravitational Waves Motions Produce A Light Beam?

What Do We Have?

We have One unified wave moves by velocity 205.8 km/s

What Do We Need?

We need to accelerate the unified wave to move by speed of light (C=300000 km/s) and this wave should produce (A Light Beam)

We know the light beam is produced from (C^2= Squared Speed Of Light)

Technically- How To Solve This Problem?

We Need To Square The Wave Velocity

Let’s see my hypothesis (The Gravitational Wave Reflection Causes To Square The Gravitational Wave Velocity) –

Let’s see if this hypothesis can solve the problem

(a)

(205.8)^2 x 7.1 = 300000 km/s = C = (speed of light)

Where

205.8 km/s= the velocity of the unified wave (the gravitational wave)

7.1 is Lorentz length contraction effect rate for speed (0.99 C)

Let’s discuss the equation

The unified wave moves by (205.8 km/s)– and this wave is reflected- the wave reflection causes to square its velocity – for that the velocity (205.8 km/s) is squared and be (205.8 km/s)^2= 42354 km/s

Means the wave before reflection moves by (205.8 km/s) and after reflection the wave moves by (42354 km/s)

But Lorentz length contraction effect rate causes to increase the distance 42354 km to be (42354 x 7.1 = 300000 km)– means- the speed 42354 km/s is accelerated to be 300000 km/s = C=speed of light by Lorentz length contraction effect – we understand the rate 7.1 causes to contract the distances but here the rate increases the distances because the wave reflection causes to reflect the geometrical effects.

Conclusion No. (1)

The Wave Reflection Causes To accelerate the unified wave from (205.8 km/s) to move by speed of light (C=300000 km/s)

(b)

Now we have a gravitational wave moves by speed of light (C=300000 km/s)

This wave is reflected one more time

The gravitational wave reflection causes to square its speed by that – the wave speed was = speed of light (C=300000 km/s) before the reflection and after the reflection this speed will be (C^2=Squared Speed Of Light)

The light beam is produced from this value (C^2=Squared Speed Of Light)

Now we know how the unified wave (205.8 km/s) can be accelerated to move by speed of light (C=300000 km/s) and how this wave can produce a light beam

Conclusion No. (2)

The Gravitational Wave Reflection Causes To Square The Wave Velocity

This is the main useful result from the wave reflection- because without the squaring of the wave velocity no acceleration can be done for the wave and by that the gravitational wave can’t move by speed of light Nor produce any light beam

Notice (1)

The waves are reflected three times in the solar system and the abstract provides strong proves for these reflections and more proves are found in the paper- the waves reflection causes basic changes in planets data and I suppose – the waves reflection causes also to square the waves velocity

Notice (2)

The rate 7.1 is produced by Lorentz length contraction effect as a result for motion by speed (.99C= 297000 km/s)- I proved this fact in (Item no. 5-6 Can Relativistic Effects Be Found In The Solar System?)

THE SUN POINT CREATION

The sun point of space has geometrical features enable to produce the sun rays and that means – the sun rays can be created only in the sun corona and far from the sun NO light beam can be created – let’s see the sun geometrical features in following

(i)

The Sun Point Is A Stationary Point Its Velocity 1 km/s = Zero Approximately

This is important feature – Because

All motions are done relative to the sun point of space – for example- Pluto velocity is 4.7 km/s –means- Pluto moves by 4.7 km/s relative to the sun point of space – Shortly- the whole solar system is in motion (space and planets are in motion) but the sun point is stationary (static point moves by velocity 1 km/s = Zero approximately) Means- the solar system is similar to a sea of water and the sun is similar to a vortex or whirlpool found on the sea page – the vortex doesn’t move with the sea waves -Shortly- the sun point of space is the stationary point in the solar system and all motions are done relative to the sun point of space-

Example – Venus moves by 35 km/s that means Venus moves by 35 km/s relative to the sun point of space – also we know Venus motion produces energy and this energy creates waves in the space and these waves move by velocity 35 km/s – means- these waves move by 35 km/s relative to the sun point of space-

(ii)

Why Is It Necessary For The Sun Point To Be Stationary Point? Because

1- The Gravitational Wave (Unified Wave) Moves By Speed Of Light Relative To The Sun

2- The Gravitational Wave Can NOT Move By Speed Greater Than Speed Of light

3- The Wave Reflection Causes To Square The Different Speed Between The Gravitational Wave Speed And The Sun Point Motion Speed

4- If The Different Speed Is Less Than Speed Of Light (C=300000 Km/S) The Speed Squaring Process Will Never Produce The Value (C^2= Squared Speed Of Light) – means- No Light Beam Can Be Created

Now we see the necessity to make the sun point as stationary point moves by  (Zero approximately =1 km/s) – because – if the sun point moves by any higher speed than (1 km/s) the different speed will be less than speed of light and the squared value will be less than (C^2) and No light beam can be created

Now let’s ask- while the space is in motion as the sea of water – how can this stationary point be created? let’s answer in following

(iii)

The planets were created before the sun creation and the planets revolve around a point in space (any point in space) the revolution creates two velocities on both sides of the revolution- the two velocities are equal in value opposite in direction- the total be Zero- means- the revolution motion creates a stationary point in the revolution center-

By That -the sun point of space is created as a stationary point- and the sun point is the only stationary point in the solar system- for that all motions are done relative to the sun point of space-

4th Question

Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays? the question is logical because

Planet motion energy (½ mv^2) is so small energy and the sun rays energy is massive energy -for that- It’s Logical Question To Know How Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

(1)

The secret is the rates of time using-

The planets motions use different rates of time- by that- the planets motions energies can be accumulated during long period of time to produce massive energy sufficient to produce the sun rays – let’s give examples

Example No. (1)

(One Solar Day Of The Sun Clock = 365.25 Solar Days Of The Earth Clock)

By this rate of time– The Earth motion energy for one complete year can be used by the sun in one solar day – in fact- the solar planets motions energies total during one complete year (365.25 solar days) is accumulated and stored in one energy and be used by the sun motion on one solar day that causes to accumulate massive energy to be used (notice 1461 days = 365+365+365+366) 

Example No. (2)

(One Second Of The Sun Clock=1461Seconds Of The Gravitational Wave Clock)

We remember the unified wave (the gravitational wave) moves by 205.8 km/s -And – the gravitational wave moves in 1461 seconds a distance = 300000 km -BUT the Sun clock doesn’t see this period 1461 seconds but sees only the period (ONE SECOND) – means-

The distance 300000 km is passed in (ONE SECOND)only for the sun clockThat causes the gravitational wave to move by speed of light (C=300000 km/s) relative to The Sun – (the rate of time using and effect is explained in details in item no V)
Planet Nature Definitio
n

In this analysis I suppose- Planet is created based on a coherence of light- here- I define planet creation as example for the matter creation generally- and- I prove planet is created by coherence of light- means- the matter is created by coherence of light. 

I want to say -

The main idea tells- Planet is created based on two energies interaction (or two light beams coherence)– one source of energy can NOT create any matter (Nor Any Planet)

Planet Nature Analysis

Let’s Discuss Planet Nature Features in following

(1ST FEATURE)

Planet Is An Intersection Point Between Two Energies- Imagine we have one energy moves in (x-axis direction) and have also another energy moves in (y-axis direction)- the two energies meet each other in One Point which is (an intersection point) – this point is A Planet

This is similar to two ropes or cables or strings are connected together by one knot (or joint)- the knot is connected with both ropes and each rope motion effect on this knot motion direction-

This explanation is typical to The Puppets Theater-the puppets are connected with strings and these strings define these puppets motions direction-shortly- Planet motion depends on the motions of the energies by which this planet is created-simply Planet is an intersection point between two energies and these energies motions effect on this planet motion Direction 

Notice- The data doesn’t show any effect of planet mass on its motion. 

Shortly– Theprevious explanation tells Planet is created based on two energies- one energy is NOT enough to create a planet (the matter) 

(2ND FEATURE)

The Matter Is Created In Pairs And No Single Matter Can Be Created -AND

Planet Creation And Motion Are Defined By Another Planet Motion

  • As in the experiment- (Gamma ray 1.2 Mev can produce electron and positron)- that proves the matter is created in pairs and no single matter can be created- also the creation system (male and female) supports this same fact- I want to say- all matters are created similar to the electron and positron from Gamma ray- simply- the matter is created in pairs- for that- Planets also are created in pairs and no single planet can be created- Planet velocity and diameters analysis prove this fact clearly- the proves discussion are found in item no. (III)  
  • This feature also proves the matter is created based on two energies- also in the Gamma ray experiment because we need two energies– the first energy is Gamma ray 1.2 Mev from which electron and positron can be produced– the second energy is the used energy to produce electron and positron from Gamma ray- means-the method by which Gamma ray 1.2 Mev can produce electron and positron- please note the principle idea tells (the matter is created in pairs and no single matter can be created-AND- the matter creation needs two energies because one energy is not enough to create the matter) 
  • Please note- Feature no.(1) tells, planet is an intersection point (a knot) between two energies- but Feature no. (2) tells matter is created in pairs and no single matter can be created– that means- these intersection points (knots) are created in pairs and can’t be created individually-BUT Why?? because the matter creation depends on the energy reflection- the reflection causes to create the matter is pairs- this fact is explained in feature No. (5) 

(3RD FEATURE)

Planet Diameter Is Created As A Function In Its Rotation Period

This fact is proved by my planet diameter equation

Please note-my planet diameter equation proves Planet diameter is created based on two motions because the equation uses two planets velocities (v1/v2) that proves two motions are required to produce planet diameter which supports our principle tells (Planet matter is created depending on two energies because one energy is not enough to produce the matter)

(4TH FEATURE)

I have two examples explain the matter nature

(1st Example) the matter is similar to creature muscles- shortly- even if the muscle is very strong as a rock- we understand this muscle is found depending on the blood motion-and any change in the blood motion can effect on the muscle dimensions and ability- similar to that the matter is created depending on the motion of the energies Based on which this matter is created-

(2nd Example)–If the space is similar to the sea of water- the matter is similar to a whirlpool (vortex) found on the sea page- we understand the whirlpool (vortex) is created by the sea water but it has a distinguish picture from the sea waves and it moves by a different velocity from the sea waves- that explains how the moving energy can effect on the matter creation data- for example- we have a whirlpool (vortex) its diameter is 2 meters- why does this diameter equal= 2 meters? The diameter is created depending on the water velocity, pressure, amount and motion angle and many other features of (the moving water)- the moving water creates this whirlpool with diameter 2 meters and as long as the water motion is not changed this diameter will not be changed also-

Notice we understand the whirlpool (vortex) is found because at least two streams of water meet each other- means- one stream is not enough to create a whirlpool (vortex)– similar to that- one energy is not enough to cause the matter creation but two energies are required to cause the matter creation- because the matter is an intersection point between these two energies- 

(5TH FEATURE)

Why should The Matter be Created In Pairs And No Single Matter Can Be Created? Let’s answer -The matter creation needs two energies because the matter is an intersection point between these two energies- means- the matter creation (and planet creation) needs two energies-

In the solar system one of these two energies is A Reflected Energy-

let’s explain that

  1. The solar planets matters and their distances are created from one energy and this one energy is provided by one light beam moves by speed = 1.16 million km per second- The light built the solar system starting its motion from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each other (as proved by my planet orbital distance equation) after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second in Mercury orbit before the space creation- and its speed be 300000 km/s in Pluto orbit after the space creation as result for the energy consumption in the space creation- 
  2. In Pluto orbit- The light had no energy to build any more orbits -for that- the light returned to its origin point (Mercury orbit) for that the light is reflected with speed (C=300000 km/s) from Pluto orbit to Mercury orbit passing through all built orbits– no energy is required in this motion for that the light beam moves with speed of light (C=300000 km/s) in Mercury orbit.
  3. This explanation tells us- there are 2 energies in each orbit which are the (1st energy) is the orbit energy by which the orbit is created (depends on the original speed 1.16 million km per second)- and the (2nd energy) is the reflected energy (moves by the known speed of light 300000 km/s)

The Solar System Coherence Of Light

Here I claim planet creation is done by the coherence of light-

  1. The previous explanation shows the reflected energy (the light beam moves by the known speed of light C=300000 km/s) is reflected from Pluto to Mercury and passed through all orbits while each orbit is built by energy and this energy is provided by the original light beam speed (1.16 million km per second)- means- the orbit energy is the energy of the original light beam its speed (1.16 million km per second) and the reflected energy is the energy moves by the known speed of light (C=300000 km/s)- shortly- The coherence of light is done between these two light beams- one of them moves by the original light beam speed (1.16 million km per second) and the other moves by the known speed of light (C=300000 km/s)- the coherence of light is done between these two light beams  
  2. The planets are created based on this coherence of light – I have Three Proves for this fact –let’s see them in following

(First Proof)

The planets velocities are defined based on the speed (1.16 million km per second)- this is proved by the rule (v1v2=322) as explained - let’s remember this explanation

322 = 47.4 km/s (Mercury velocities)    x 6.8 km/s  (Uranus velocities)               

322 = 35 km/s  (Venus velocity)            x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)     x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)            x 13.1 km/s (Jupiter velocity)                        

Venus (35 km/s) moves a distance  1.16 million km in 4.7 x 2 hours and

Pluto (4.7 km/s) moves a distance 1.16 million km in 35 x 2 hours -And

Earth (29.8 km/s) moves a distance  1.16 million km in 5.4 x 2 hours and

Neptune (5.4 km/s) moves a distance 1.16 million km in 29.8 x 2 hours

Shortly the planets velocities are defined complementary one another based on The Original Light Beam Speed 1.16 million km per second-

Means the planets velocities are defined as function in this original speed 1.16 million km per second- as proved by the data- this data analysis proves the effect of the original speed of light (1.16million km per second) on the planets velocities definition 

(Second Proof)

The planets velocities total is defined based on the known speed of light (C=300000 km/s) –let’s remember this fact in following

(205.8)^2 x 7.1 = 300000 km/s = C = (Speed Of Light)

Where

205.8 km/s= 9 the planets velocities total + the Earth moon velocity (29.8 km/s)

(the moon and the Earth revolve together for that their velocities are considered equal)

7.1 is Lorentz length contraction effect rate for speed (0.99 C)

Let’s discuss the equation

The planets motions energies create waves in the space and these waves move by their planets velocities and these waves move toward Pluto orbit and in Pluto Orbit these waves are unified together into one unified wave moves by the planets velocities total – means- This unified wave moves by (205.8 km/s)–and then this unified wave is reflected- the wave reflection causes to square the wave velocity– for that the velocity (205.8 km/s) is squared and be (205.8 km/s)^2= 42354 km/s – means- the wave velocity was (205.8 km/s) before its reflection and after the reflection the wave velocity be (42354 km/s) -

-BUT- Lorentz length contraction effect rate causes to increase the distance 42354 km to be (42354 x 7.1 = 300000 km) – means- the speed 42354 km/s is accelerated to be 300000 km/s = C=speed of light by Lorentz length contraction effect – we understand the rate 7.1 causes to contract the distances but here the rate increases the distances because the wave reflection causes to reflect the geometrical effects

This data shows- the planets velocities total is LIMIT to the known speed of light (C=300000 km/s) because the energy reflection effects are obligatory- means- the planets velocities can NOT be greater than (205.8 km/s) because that would cause the final speed to  be greater than speed of light (C=300000km/s) which is impossible and that tells the planets velocities are defined by The Limit which is (the known speed of light C=300000 km/s)

The two proves show the planets velocities are defined based on two limits – the original speed (1.16 million km per second) based on which the planets velocities are defined and the known speed of light (C=300000km/s) which is The Limit for the planets velocities total– this analysis proves my theory tells (The Planets Are Created Depending On The Coherence Of Light Is Done Between The Original Light Beam Its Speed 1.16 Million Km Per Second And The Reflected Energy Which Moves By The Known Speed Of Light (C=300000 km/s))

(Third Proof)

Young coherence of light produces the interference (bright fringes and dark fringes)- let’s suppose– we see bright fringes as planets- and if the fringe breadth is comparable with planet diameter- we will find that- the solar planets distribution is typical to the interference of Young- because- the greatest diameter planet “Jupiter” is found in the middle and the other planets diameters are decreased gradually on both sides typical to the fringes distribution in Young interference- please note- I have proved Mars original orbit was between Mercury and Venus and Mars had migrated to its current orbit by that the inner planets original order was (Mercury-Mars- Venus- The Earth) the diameters are decreased gradually from the Earth to Mercury typical to Young Interference (Also the outer planets diameters are decreased gradually from Jupiter to Pluto)  

The Matter Is Created In Pairs

Now we know each orbit has two energies- (1st energy) the orbit energy by which the orbit is created (2nd energy) the reflected energy which is passed through all orbits- by that- NOW one energy is a reflected energy and the reflection caused the matter to be created in pairs- why??

The energy reflection causes to create complementary values- imagine a light beam is reflected on some mirror- here–we have the original light beam and the reflected light beam- the two light beams are similar in all data but in opposite directions- that tells the energy reflection causes to create the data reflected on each other (and complementary one another)- and the complementary data cause to create the matters in pairs and no single matter can be created-

Shortly -because the energy is reflected in the solar system the matter is created in pairs by the energy reflection effect where No single matter can be created     

(6TH FEATURE)

How can planet matter be created by two energies? By what method this creation can be done? There are three methods can be used

(First Method) Can Planet Be Created As A Wave?

We know the particle has double nature and behaves as a wave-

Let’s suppose planet is created as a wave? How can the wave be created?

We need two motions perpendicular on each other- means- we need two energies perpendicular on each other- means- by two energies motions a wave can be created and this wave will be a planet - Just we need to suppose that the two energies in each orbit are perpendicular on each other and that will cause to create the planet as a wave 

(Second Method) The Energy Reflection

As explained the energy reflection causes to create the values in pairs (reflected on each other and complementary one another) because the original values produce reflected values and that cause the values to be created in pairs-and that cause the matter to be created in pairs- shortly- the energy reflection is the reason to create the matter in pairs- that causes planets data to be created in pairs complementary one another- (as proved by planet velocity definition by the rule v1v2=constant= 322) 

Also planet diameter follows this same rule (R1R2=Constant)- because the planets are created in pairs and the matter generally is created in pairs (as electron and positron from Gamma ray 1.2 Mev)

Shortly- The Creation In Pairs Is Done Basically Because Of The Energy Reflection 

(Third Method) The Coherence Of Light

As explained before Young coherence of light produces the interference which can be comparable with the solar system because the bright fringes distribution is typical to the solar planets distribution if we suppose the fringe breadth is comparable with planet diameter

Notice - we understand, the matter is created in pairs because of the energy reflection and if the planets are created by the coherence of light that tells the coherence of light must contain reflection of energy which is a fact- because- the coherence of light contains reflection of energy and this reflection is seen in the fringes distribution because the fringes breath is decreased gradually on both sides means each side is reflected on the other and that shows there’s a reflection of energy found in the coherence of light-  

NOTICE The Proves Discussion for Planet Nature Definition is found in Item (VI)

First Item - Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition 

1stProblem The Physicist wrong Vision Contradicts The Nature System 

The Physicist Vision

The physicist supposes there’s (a unit of building)- by that- the physicist sees the matter (mass) as a wall and this wall is consisted of bricks (small similar units) and the physicist searches for this (unit of building)–

For that the physicist divided the matter and found the particles and then the particle is divided into Molecules and the Molecule is divided into atoms and the atom is divided into nucleus and electron moves around and the nucleus is divided into proton and Neutron- and the proton is divided into quarks …etc

The physicist searches for the building unit- for that he divides anything to reach to this building unit- 

The Nature System Vision

The Nature designer aims to create INTEGRATION- as the marriage– male and female- For that- the matter is created complementary one another-means- The Matter Is Created In Pairs (as Gamma ray 1.2 Mev produces electron and positron)

No building unit- AND

I want to show how the physicist causes fatal error for the research method while the physicist divides the elements (from matter to particle to molecule to atom to proton to quarks …etc) this division from out into inner till reach to very small unit which the physicist considered the building unit – that causes to destroy the geometrical design of the integration process- Shortly- the physicist sees a universe (never be created by the designer)- while the designer created the integration is a goal and created tools to perform this integration the physicist destroyed the integration tools while he searched for the building unit which is not found at all.

NOTICE

Another point shows the physicist wrong vision is (The Planet Motion)

While the solar planets move as gears in one machine and all planets motions are unified into one unified general motion- means- all planets motions are unified and produce one result only (one unified motion)- the physicist supposes each planet motion is independent-by that- in place of one machine of gears moves and produces one unified motion (one result) the physicist told us each planet motion is independent and No unification is found for the planets motions –here – one more time the physicist sees very different picture from the real one- in place of one hand has five fingers the physicist sees five independent moving fingers

2ndProblem  Planet Motion Energy Definition

Let’s remember this question where’s Planet Motion Energy?

We agreed planet motion produces energy (½ mv^2) and this energy must be stored in the space as moving waves because planet can NOT store its motion energy inside its body otherwise this planet temperature would be raised- that tells- the space has moving waves produced by planet motion energy

Also –we agreed- planet motion energy creates waves in the space and these waves move by velocity equal this planet velocity-

Shortly- for example- Mercury (47.4 km/s) moves in the space and its motion energy produces waves in the space and these waves move by velocity (47.4 km/s) –this analysis creates 3 difficulties for the physics book let’s see them

First Difficulty

This analysis tells the space has moving waves are produced by planets motions energies– But- the scientists discovered these waves and they told these waves are produced by the gravitational field- and they called them (gravitational waves)- I prove the sun doesn’t produce a gravitational field and has no massive gravity and no planet moves by the sun gravity – But- here we need to answer (from what source these waves are produced?) because planet motion energy analysis forces us to accept that these waves are produced by the planets motions energies

Here – we need to answer (from what source these waves are produced?)

I prove the gravitational waves are produced by the planets motions energies and not by any gravitational field.

I provided two major proves

(1st proof) I proves there’s no gravitational field and the sun has no massive gravity and no planet moves by the sun gravity

(2nd proof) the gravitational waves reflection proves the waves are produced by the planets motions energies because the waves reflection causes effects on the planets data

Second Difficulty

Now we know planet motion energy is stored in the space as moving waves (the gravitational waves)- But- the planets move since long period of time means the planets motions should cause to store massive motion energy in space during this long period- Now -where’s this stored massive energy? also the energy can NOT be stored in space forever- so what’s happening for this stored massive energy? I prove the sun rays are created from this stored massive energy and not from the sun nuclear fusion process- this is my research hypothesis – in all cases we should know how this stored massive energy be used because this massive energy can cause risk for the solar system stability.

Third Difficulty

Newton Mass gravity definition is disproved by planet motion energy

Because

Suppose the moon moves by the Earth mass gravity and the moon motion produces energy (½ mv^2) now let’s ask- From What Source The Moon Motion Energy Is Provided? What’s the moon motion reason? The mass gravity- means- the mass should provide the motion energy- means – if The moon moves by the Earth gravity that necessitates to decrease the masses of the Earth and the moon by the motion energy- here’s the problem- Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass-  this decrease is done because of the motion energy

The analysis tells us–the physicist supposes planet motion produces NO energy this is the only one solution for the problems created by the physicist neglect to observe planet motion energy-

3rdProblem Mass Gravity Force Analysis

The Refutation Of The Sun Gravitational Field

The Sun Doesn’t Produce A Gravitational Field Nor Has Massive Gravity – let’s prove that in following

(i)

The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time- 

(ii)

No Planet Moves By The Sun Gravity–Newton is wrong- because- Planet moves by the force caused its creation- means- planet creation and motion is done by one force only- otherwise this planet would be broken if two forces have effects on it-

Suppose planet is created (by any force) and the sun gravity attracted this planet and forced it to revolve around the sun by the sun gravity (as Newton imagined) that would force this planet to move against its internal structure and that will cause this planet to be broken-

Imagine a human is forced to walk on his hands in place of his legs- this human will be dead by this motion-

That’s why the planet creation and motion is done by one force only- Newton mistake is that he didn’t know how the planet is created- and he considered - the creation force is a historical force has no effect on the current motion- Shortly-the sun didn’t cause to create any planet and the sun doesn’t cause any planet to move

(iii)

We agreed that, mass gravity force can NOT cause any motion- again Newton is wrong- because –any motion will produce energy- suppose the moon moves by the Earth mass gravity- the moon motion produces energy- and – from what source this energy is provided? From the masses of the Earth and the moon –here’s the problem  

Where Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass

BUT Mass gravity is a fact - the mass gravity creates a bond between two masses (The Earth and the moon are bond by their masses gravity ) if some outer force causes the Earth to move the moon will move with the Earth and in this case the outer force will provide the motion energy for the Earth and the moon.

(iv)

The planets order contradicts the gravitation equation- for example- Jupiter the greatest mass is not the most near planet to the sun- when we asked the physicist told us this problem is done by (the planets initial conditions)- all these are wrong- planet orbital distance does NOT depend on the sun mass nor on this planet mass- planet orbital distance depends on its neighbor planet orbital distance – my equation proves this fact- let’s see it

Planet orbital distance equation (my 1st equation)

d^2= 4do (d-do)

where d=planet orbital distance

do= its neighbor orbital distance

Example (1) Venus orbital distance (108.2)^2 = 4 x 57.9 x (50.3)                             

d= 108.2 million km = Venus Orbital Distance       d0= 57.9 million km  = Mercury Orbital Distance

50.3million km=The Distance Between Venus And Mercury  Venus Depends On Mercury

Example (2) Saturn orbital distance (1433)^2= 4 x 778.6 x 655

d= 1433 million km    = Saturn Orbital Distance     d0= 778.6 million km  = Jupiter Orbital Distance

655million km=The Distance Between Saturn And Jupiter Saturn Depends On Jupiter

All planets orbital distances are defined based on their previous neighbor planets orbital distances- the equation is correct and discussed in item no. (III)- Shortly- planet mass has no any effect on this planet orbital distance definition.

Notice

Planet orbital distance definition depends on its neighbor orbital distance this fact is proved by many different methods my equation is one method only of them, all these methods don’t use any planet mass- all planets orbits are defined based on their neighbor planets orbits (item No. III has more proves)

(v)

Also-Newton told-planet motion depends on its mass- means-planet velocity depends on its mass- this also is wrong - I define planet velocity (my 5th equation)- planet velocity is defined by many rules all of them don’t use any planet mass- at all Planet mass has no rule in this planet velocity definition.

The Conclusion

The Sun Doesn’t Produce Any Gravitational Field

4th Problem The Matter Creation And Its Nature Definition

In following we compare between the physics book theory about the matter creation and my theory about it- the discussion contains Two points

I- The Physics Book Theory About The Creation of the Matter (Mass)

  1. The Matter Is Created Independently From Any Outer Motion – means- even if the matter motion is stopped the matter is still found and never be perished (the motion here means the outer motion and not the atoms motions)
  2. The Matter Is Motionless By Nature
  3. The Matter Needs Mass Gravity Force To Cause Its Motion
  4. The Matter Data And Dimensions Are Not Changed By Its Motion
  5. The big bang theory tells planet is created by random creation- for example- Jupiter diameter is created by unknown value and Jupiter is collided many times in its history and these collisions caused Jupiter diameter (and mass) to be decreased- based on that– Jupiter diameter value (142984 km) is found by random process and without any geometrical reason behind- by that- the big bang theory prevent us to use any planet data to discover the creation and motion rules of this planet.
  6. Note – The physicist doesn’t use planet data in forming a theory to explain this planet motion-for example- Jupiter diameter is 142984 km and the physicist has a theory explains Jupiter motion but if Jupiter diameter is changed into 180000 km the theory will have no change because the physicist doesn’t consider Jupiter diameter is a player in its motion- that’s why the big bang theory is wrong because it supposes the change in diameter and mass doesn’t cause a change in motion 
  7. Shortly- the physics book doesn’t tell how the matter is created nor what’s the matter nature- we remember Einstein problem in physics- he told (All researches in particle electromagnetic properties can’t predict this particle behavior in the daily life physics) that shows two different branches of the physics one for the electromagnetism and the other for the mass gravity physics

II- My Theory About The Creation of the matter (mass) –

The Matter Main Features Are: 

  1. The Matter Is Created In Pairs  Means- No Single Matter Is Created -This conclusion depends on Gamma ray experiment -From Gamma ray (1.2 Mev) electron and positron are created- by this experiment- the matter is created in pairs from electromagnetic waves- the produced pair particles motions depend on each other (or related to each other) (notice the creation system is male and female–two complementary matters-that tells the source of energy must be electromagnetic wave)
  2. The matter is created depending on its motion- means- the motion is found before the matter creation- this conclusion depends on my planet diameter equation because planet diameter is created depending on this planet velocity (for example Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)- means–Planet motion is defined before its creation -later explained
  3. Lorentz transformation proves Matter dimensions are effected by high speed motion- also- Lorentz transformation proves the matter and space are created from the same energy for that particle length and distance both are contracted by the same one equation (Lorentz length contraction effect)
  4. The Matter Is Created Depending On Light Motion –

The Discussion Proves These Features Strongly

The Matter Creation Depends On 5 Main Facts  Which Are

  1. Gamma Ray Can Produce Electron And Positron
  2. Lorentz Transformation
  3. My Planet Diameter Equation
  4. The Coherence Of Light (Young Interference) 
  5. Planet Diameter Creation Depends On This Planet Orbit

(Item No. i) Gamma Ray Can Produce Electron And Positron    From Gamma ray (1.2Mev) one electron and one positron are created- I prove the matter is created by this method- means- the matter is created in pairs and no single matter is created

(Item No. ii) Lorentz Transformation

Lorentz transformation tells

If a particle moves by high speed motion (near to speed of light), this particle length would be contracted and its mass would be increased and its time would be dilated

I accept this meaning clearly and find this meaning supports my theory strongly BUT Many physics Books tell the following

(NO Real Change Is Done For Any Particle Data Moves By High Speed Motion But All Changes Are Illusions Of Measurements)-

Means- while a particle is moving by high speed motion and the experiments results show contraction in its length and increasing in its mass and dilation in its time – these changes are just illusions in measurements and the particle itself has no change in any data - tenth of books tell this meaning clearly and with confirmation and the physicist killed Lorentz work and made Lorentz transformation measures illusions and not facts- regardless the empirical proves which supports Lorentz transformation 

I refuse these books idea because

  1. The Physics Is The Measurements Science And What’s Measured Is The Fact
  2. If no real changes are done how the problem of Michelson and Morelly experiment is solved?- also- Why the synchronous events in one frame can’t be synchronous in another (as Einstein stated) where no change is found for any data- the distances are Not contracted nor the time is dilated nor the mass is increased why the events can NOT be synchronous in any frame?  
  3. If the particle own data is measured correctly while it moves by my motion velocity and these measurements are suffered from illusions because the particle moves by high speed motion relative to my motion that means (I’m the universe reference point)
  4. We notice- Lorentz length contraction equation can’t distinguish between particle length and a distance, both can be contracted by the same one equation- that supports my theory tells (Matter And Space Are Created From The Same Energy)–
  5. My planet diameter equation proves planet diameter is created depending on this planet motion and also proves the matter and space are created from the same one energy which supports Lorentz transformation 

NOTICE  

The major importance of Lorentz transformation is

  1. The transformation proves there’s a connection between particle dimensions and its  motion means the motion has effect on particle dimensions definition and by that the matter (mass) can’t be independent because its existence depends on a motion- shortly (The Matter Existence Depends On Its Motion
  2. The matter and space are created from the same energy- because- particle length and the distance both are contracted by the same equation (Lorentz length contraction effect) shortly (Matter And Space Are Created From The Same One Energy) (This theory is proved by my planet diameter equation)

(Item No. iii) My Planet Diameter Equation

My Planet Diameter Equation (v1/v2)= (s/r)= I

v = Planet Velocity                          

r = Planet Diameter

I= Planet Orbital Inclination   

s= Planet Rotation Periods Number In Its Orbital Period

v2, s, r and I are belonged to one planet and v1 is belonged to another planet

The planet (v1) is defined by test the minimum error 

Earth Equation uses Neptune velocity                        

Mars Equation uses Pluto velocity

Jupiter Equation uses the Earth moon velocity      

Saturn Equation uses Mars velocity

Uranus Equation uses Neptune velocity (As Earth)

Neptune Equation uses Saturn velocity

Pluto Equation uses the Earth moon velocity (As Jupiter)

Example  Neptune Equation (89143 /49528) = 9.7/ 5.4 =1.8                  

89143                   = Neptune rotation periods number in Neptune orbital period

49528 km   = Neptune diameter            

9.7 km/s      = Saturn velocity

5.4 km/s      = Neptune velocity             

1.8 degrees= Neptune Orbital Inclination

59800 days = Neptune orbital period (and Neptune rotation period =16.1 hours)

Discussion

(1)

The Equation Concept  Planet diameter should be a function in its orbital distance –otherwise- this planet would be broken by its motion- BUT- the designer can’t create a function has only 2 variables (Planet diameter and its orbital distance)- because– If this planet changes its orbit (orbital distance) its diameter would be broken also because the diameter is a direct function in the orbital distance without any other variables -As A Result- the designer created planet diameter as a function in this planet rotation period and the planet rotation period is created as a function in this planet velocity and the planet velocity is created as a function in this planet orbital distance- by that- the function between Planet diameter and its orbital distance is created but also it contains many variables (rotation period, orbital period and velocity)- by that- if  the Planet changes its orbital distance- this planet orbital period, and velocity and rotation period would be changed but its diameter will be saved

(2)

Matter Definition Based On My Planet Diameter Equation

My equation tells, Planet diameter is created depending on its velocity- for example Neptune diameter is 49528 km because it velocity is 5.4 km/s where the velocity is used in the diameter definition equation- means- Planet motion is defined before this planet creation- how can that be possible? let’s answer in following

  • The original energy was in motion and planet matter is created from this moving original energy and planet matter dimensions are defined by this original energy motion features- after Planet creation, the planet moves with this original energy motion means the planet moves this same motion based on which the planet data and dimensions are created that’s why Planet data is in full harmony with its motion features- that explains how planet diameter is created based on its velocity
  • Shortly- the matter is similar to a muscle in a creature- the muscle dimensions depend on the blood motion- similar to that- the matter dimensions depend on this energy motion from which this matter is created-
  • Also space is similar to the sea of water- and the matter is similar to a whirlpool (vortex) is found on the sea page- the matter creates for itself a distinguished picture different from the space picture and the matter moves by a different velocity from the space motion velocity- as the whirlpool (vortex) on the sea page- it’s created by the sea water but it has a distinguish picture from the sea waves and it moves by a different velocity from the sea waves- that explains how the moving energy can effect on the matter creation data- for example- we have a whirlpool (vortex) its diameter is 2 meters- why does this diameter equal= 2 meters? The diameter is created depends on the water motion velocity, pressure, amount and motion angle and many other features of (the moving water)- the moving water creates this whirlpool with diameter 2 meters and as long as the water motion is not changed this diameter will not be changed also- (notice- The Gravitational Waves Prove The Space Has Motion And Not Static)

NOTICE   Also (No Planet Moves By The Sun Gravity) Newton is wrong, because planet moves by the energy from which this planet is created- as explained here – means– The Matter Is Not Motionless By Nature- The Matter moves with the energy from which this matter is created-

(3)

Matter Existence Depends On Its Motion

Shortly-if the motion is stopped the matter will be perished- again the matter is similar to a muscle in a creature body- if the blood motion is stopped the muscle will be perished- this is the fact- Based on that- Neptune velocity is 5.4 km/s if Neptune stops its motion Neptune diameter and matter will be perished-

The fact I prove is (The Matter Creation Depends On Its Motion) – Lorentz transformation and my planet diameter equation supports this fact strongly 

DEEP DISCUSSION

(4)

The Matter Is Created In Pair And No Single Matter Is Created

Planet velocity is defined based on the rule (v1v2=constant= 322) let’s prove that

322 = 47.4 km/s (Mercury velocities)         x 6.8 km/s  (Uranus velocities)                            

322 = 35 km/s  (Venus velocity)                 x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)                    x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)                x 13.1 km/s (Jupiter velocity)                        

322 = (17.9 km/s)^2 (Ceres velocity)                   (Max error 2%)

The idea is understandable – let’s summarize it in following

(i)

The planets velocities are created complementary one another based on the rule (v1v2=constant= 322) and

(ii)

Planet data is created depending on its velocity- means- planet velocity is the first data in this planet creation and based on the velocity all other data is created- as we see in the planet diameter equation, planet diameter and all creation data is created depending on this planet velocity- means- based on (v1/v2) but planet orbital distance is defined based on  (v1/v2)^2 and planet orbital period is defined based on (v1/v2)^3

Based on this system planet data is created but we know that planet orbital distance is defined before planet creation and based on the orbit, planet velocity is defined and then all data is defined based on the planet velocity-

(iii)

Now the idea is clear- let’s summarize it

The planets velocities are created complementary one another based on the rule (v1v2=322) and planet diameter is created depending on its velocity for that reason planet diameter is created complementary to another planet diameter- let’s prove that

341.7 million km = Jupiter diameter 142984 km          x Pluto diameter 2390 km

341.7 million km = Jupiter radius 71492 km       x Mercury diameter 4879 km (2%)

341.7 million km  = Saturn diameter 120536 km x 4 Mars diameter 6792 km (4%)

341.7 million km = Uranus diameter 51118 km  x Earth radius 6378 km (5%)

341.7 million km = Neptune diameter 49528 km x 2 The Moon diameter 3475 km

Clearly we see the planets diameters are complementary one another- because the matter is created in pairs and no single matter is created

Notice (1)

Suppose the physicist can create a type of single matter which has no complementary can that disprove my theory tells (The Matter Is Created In Pair And No Single Matter Is Created?) NO NEVER

Because- the matter is created from the original energy and the energy uses a system depends on matters in pairs complementary one another-  means any type of matter can’t be used by the original energy will be neglected and useless because the energy uses matters in pairs  

(Item No. v) The Coherence Of Light (Young Interference)

I provide proves tell Gamma Ray and Young experiments are used in the solar planets creation – let’s remember these experiments

(1st Experiment) Gamma ray (1.2 Mev) can produce electron and positron

(2nd Experiment) the coherence of light experiment (Young Interference)

Let’s provide the proves for the using of these two experiments in the planets creation

Gamma Ray Experiment

There are two facts prove this experiment concept is used in the planets creation

First Fact Planet creation data is defined based on its velocity- this fact is proved by my planet diameter equation because planet diameter is created depending on this planet velocity as explained before (Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)-means- Planet velocity is the first data in this planet creation process and based on this velocity all planet creation and motion data is created

Second Fact Planet velocity is complementary one another, which is proved by the rule (v1v2= 322 = constant)- that shows the planets data must be complementary one another as I have proved in the diameters values analysis

Shortly – The planets data are complementary one another (similar to the electron and positron are created from Gamma ray)

The Coherence of light Experiment (Young Interference)

There are two facts prove this experiment concept using in the solar system creation

1st Fact

The planets order is typical for Young interference- if we consider planet diameter is equivalent to the fringe breadth by that the planets order be typical for Young interference where the greatest fringe is in the middle (the greatest planet Jupiter) and the fringes breadth is deceased gradually on both sides

(I Proved Mars Original Orbit Was Between Mercury And Venus- so the original inner planets order was Mercury – Mars – Venus – The Earth) which shows gradual decreasing in diameters- the outer planets diameters also is decreased gradually      

2nd Fact

There’s a coherence of light in the solar system- what does that mean?

Means- while planet orbit has energy of a light beam- another light beam enters this orbit by that there are two light beams in the same orbit- these two light beams create coherence of light- the planets orbits creation explain this fact in details- but here I want to prove this fact by simple direct proof before the planets orbits creation discussion –let’s write this proof here

We have seen that the planets velocities are complementary one another by the rule (v1v2=constant=322) and planet all data is created depending on its velocity- by that the planets diameters also follow this rule where (R1R2= constant) as I have proved in my planet diameter equation

Now let’s ask – can the planets orbits complementary one another? NO

So- how this rule (v1v2=constant= 322) is found?

By the energy reflection- means- the energy is reflected in the solar system and this reflection of energy causes the velocities to be reflected on one another and that produced the rule (v1v2=constant= 322)

We note the planets can’t be reflected on each other because the planets are connected with their orbits- and the energy reflection needs freedom in motion- means- this reflection of the planets velocities are done by effect of the energy reflection- please note- the energy reflection is a proved fact in the solar system- this fact is proved by hundreds of the planets data because the energy reflection cause effects on the planets data- shortly- the planets data is created by effects of the energy reflection-

Here we see the coherence of light is created because the orbits have energy where the space is energy and (Another energy is reflected and moved through all orbits and caused to create the planets data) by that each orbit has two energies together- I prove both energies are light beams-for that the two light beams create a coherence of light

I want to say- there are two facts prove the solar system has coherence of light which are the reflection of energy and the planets order

The planets orbits creation explain this theory in details I discuss it in item no. (**)

NOTICE

Please Note – I proved Mars original orbit was between Mercury and Venus and Mars is migrated to its current orbit behind the Earth- by that the inner planets original order was (Mercury – Mars – Venus – The Earth) here we see planets diameters are decreased gradually from the Earth to Mercury where Jupiter was the planet beside the Earth- means – the planets diameters are decreased gradually from Jupiter to Mercury- and the outer planets – the planets diameters also are decreased gradually- as I explained – if we compare planet diameter with fringe- the planets order be typical to Young interference – but – the order is reflected each other –let’s see that

The inner planets (Mercury – Mars – Venus – The Earth)- the order tells greater diameter necessitates longer orbital distance – but

The outer planets (Jupiter– Saturn– Uranus– Neptune –Pluto)- the order tells greater diameter necessitates shorter distance

Here we see the orders are reflected one another- but in Young interference there’s no reflection- I want to say- the planets orders are reflected because of the sun position- if the sun is not found no reflection will be found- that means- the reflection of energy caused to create the sun in the solar system because the sun creation causes the planets order to be reflected one another- my paper proves the sun is created after all planets creation and motion – and the sun is created by the reflected energy 

(Item No. vi) Planet Diameter Creation Depends On This Planet Orbit

The solar planets matters and their distances are created from one energy and this one energy is provided by one light beam and this light beam moves by speed = 1.16 million km per second (The speed is proved strongly and decisively)

The light (its speed 1.16 million km per second) built the solar system orbits starting from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each other (this fact is proved by my planet orbital distance equation) after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second before the space creation (In Mercury Orbit) and its speed becomes 300000 km/s after the space creation (in Pluto orbit) as result for the energy consumption in the space creation- 

In Pluto orbit - the light could Not move any further to build any more orbits because any additional space creation will consume more energy and that will decrease the light speed to be less than 300000 km/s (the known speed of light) – and – No known light moves by speed less than 300000 km/s – means- the light had no energy to move any further after Pluto orbit- for that- the light returns to its origin point (Mercury orbit) for that the light is reflected with speed (300000 km/s) from Pluto orbit to Mercury orbit passing through the built orbits– no energy is required in this motion for that the light beam moves with speed of light (300000 km/s) till Mercury orbit.

Please note- the light (300000 km/s) is reflected from Pluto to Mercury

The reflection of the light beam (300000 km/s) Caused To Create The Solar Planets

Comments

  • The light (1.16 million km per second) created the orbits with energy means the created orbits have energies- and each planet orbit energy is less than its previous neighbor orbit because the planets velocities are decreased gradually- almost the energy is less by rate 80% because the velocities are rated with (0.8)   
  • Each planet diameter is created based on its orbit energy- the planet is similar to a tree planted in a ground and the planet orbit is this ground- that’s why each planet diameter depends on this planet velocity and orbital inclination- please note Mars diameter equation proves this fact because Mars original orbit was between Mercury and Venus and Mars diameter is created based on this orbit energy and Mars had migrated from its original orbit to its current one behind the Earth but Mars diameter equation still shows Mars original orbital inclination (5.1degrees) while Mars current orbital inclination is 1.9 degrees- Mars diameter is created based on this inclination (5.1 deg) for that this inclination is seen in Mars diameter equation frequently (please review my planet diameter equation)    
  • The Occurrence Of The Coherence Of Light - The light beam (300000 km/s) is reflected and passed through all created orbits- that shows there two light beams are found in the same area (in any orbit)- because in each orbit there’s this orbit energy which is found with the orbit creation by the light (1.16 million km per second) for that we say (Space Is Energy) because any orbit has energy found with its creation- and also the reflected light beam (300000 km/s) passed through all orbits- by that- in any orbit there are two different light beams (two different energies) and these light beams create A Coherence together- 
  • The Amazing Coherence Of Light There’s a major interesting point here-the light beam (300000 km/s) created a coherence with the light 1.16 million km per second! BUT HOW?? because the light 1.16 million km per second is consumed and its energy is used for the space creation and the rest energy is this light beam moves by known speed of light (300000 km/s)!! how can the light beam (300000 km/s) meet the original light beam the 1.16 million km per second to create this coherence of light?
  • Please note- the speed 1.16 million km per second is the major used speed in the solar system data- means- the speed 1.16 million km per second is the secret by which the solar system data can be understood because all data is created as function in this speed-I prove that in the next pages- but this information is written to explain that the light 1.16 million km per second is consumed but its energy still works and causes continuous effect- BUT HOW??   

Let’s write the answer

  • The light (300000 km/s) is reflected to move from Pluto to Mercury (while the original light 1.16 million km per second moved from Mercury to Pluto) means the light (300000 km/s) moved in opposite direction for the motion of the original light 1.16 million km per second- MEANS- the light (300000km/s) moved in the opposite direction of space to reach to Mercury- BUT NOT ONLY- in fact- the light (300000 km/s) moved also in the opposite direction OF TIME and moved into its own past – and in past – this light beam (300000 km/s) met the original light beam 1.16 million km per second – and in past – the two light beams created the coherence of light and then this coherence of light results have effects on our present time-
  • Shortly- the coherence of light in the solar system proves the light beam (300000 km/s) moved on the time-axis and this is an empirical proof for the time-axis motion where the light can move simply on the time axis
  • Notice – this motion can help us to create the time machine- because- if the light can move into the past that means we may use this motion and take photos of the past events and this will be our time machine which can go into the past and make photos and videos for the past events – even the events since thousands of years we can see in videos or in photos – this motion of light can give us a great option to create our machine of time      
  • Notice  the original light beam 1.16 million km per second can not move into the future to meet the light beam (300000 km/s) because in future the original light 1.16 million km per second is NOT found because its energy is consumed in the space creation- but- the light beam (300000km/s) can move into the past because in the past the light beam (300000 km/s) was part in the original light beam 1.16 million km per second and by that the two light beams be found in the same time  
  • Notice – we can not travel ourselves into the past- because planet diameter is created depending on its velocity- as proved by my planet diameter equation- means- the matter is created depending on its motion velocity- and the velocity is a motion in defined direction- the light is free in motion and doesn’t forced to move in any direction for that the light has this option to move on the time axis but the matter is created depending on a motion in defined direction (no freedom in motion) for that the matter can’t move on the time axis because the motion force the matter to move in a defined direction – the matter moved just to the future– and the matter can’t move into the past-  
  • Planet Creation Machine Please note–we see the coherence of light is done by the two light beams 300000 km/s and 1.16 million km per second (because the light beam 300000 km/s can reach to the light 1.16 million km per second by moving into its past)- shortly – here we have 2 light beams in any orbit- and these two light beams cause two motions – we can imagine these two motions are perpendicular on each other – this perpendicular motions create a wave and planet is created as a wave (Particle is a wave also)- that explains how the planets are created 
  • Please note-  The reflection of energy is very effective in the solar planets data because the reflection of energy caused the planets to be created- the matter can’t be created by the energy of any orbit alone but the reflection of energy adds second energy inside each orbit- by that- two energies are found in any orbit (two light beams) by these two light beams the light coherence is created and also the planets are created as waves-that explains why the planets data prove the reflection of energy because the planets are created by this energy reflection- as when we plant a tree we need a ground and we need seeds to be put in this ground- two players- the planets are created by two energies (two light beams coherence) and for that the planets velocities are defined based on the two speeds (300000 km/s) and (1.16 million km per second) as planet velocity definition proves (CONT) 

Gerges Francis Tawdrous +201022532292

Physics Department-  Physics & Mathematics  Faculty 

Peoples’ Friendship university of Russia – Moscow  

Curriculum Vitae                 https://www.academia.edu/s/b88b0ecb7c

E-mail                            mrwaheid@gmail.com, mrwaheid1@yahoo.com

                                      gergesgerges@yandex.ru               

ORCID                          https://orcid.org/0000-0002-1041-7147

Facebook                       https://www.facebook.com/gergis.tawadrous

VK                                 https://vk.com/id696655587

Tumblr                           https://www.tumblr.com/blog/itsgerges 

Researcherid                       https://publons.com/researcher/3510834/gerges-tawadrous/

Google                                        https://scholar.google.com/citations?user=2Y4ZdTUAAAAJ&hl=en

Livejournal                     https://gerges2022.livejournal.com/profile

Pocket                                                                    https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar

box                                        https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv

Academia                       https://rudn.academia.edu/GergesTawadrous

List of publications        http://vixra.org/author/gerges_francis_tawdrous

Slideshare                            https://www.slideshare.net/Gergesfrancis

Text
itsgerges
itsgerges


Best Regards

The Solar Planets Orbits Distribution Analysis (Revised)

or

or

or

Paper Question

What’s The Space? How Is A Distance Created? Can A Distance Be Reflected?

Pluto orbital distance shows interesting points of discussion – let’s see it

Pluto orbital distance 5906 million km is divided into four distances, three are equal and one is different- namely- Saturn orbital distance = Saturn Uranus distance= Pluto Neptune Distance = 1433 million km (Max error 1.5%)- the different distance is Uranus Neptune Distance 1622 million km- the question is (Why Are Not The Four Distances Equal?)- the answer is interesting one- let’s distribute these distances 

From Pluto to the Sun 5906 mkm = 1433 mkm x (π+1)

From Pluto to Saturn   4475 mkm = 1433 mkm x (π)

From Pluto to Uranus 3035 mkm  = 1433 mkm x (π-1)

BUT From Pluto to Neptune         = 1433 mkm only

BUT – Uranus Neptune Distance  = 1622 mkm =  1433 mkm x (π-2)

The used rule pushes us to expect that (Pluto Neptune Distance should be 1622 mkm) BUT for surprise (Uranus Neptune Distance is 1622 mkm) why? and how?

No way to escape from the conclusion tells (This Distance Is A Reflected One!)

Shortly- Why Is This Distance A Reflected One

Because Neptune Orbit Is Created Reflected On The Other Planets Orbits!! Why??

Because- all planets orbits are created from one energy and this energy moved in the direction from Mercury orbit to Pluto orbit- BUT- Neptune Orbit is created from energy moved in the opposite direction (From Pluto Orbit To Mercury Orbit)

Shortly- Neptune orbit is not created with all planets orbits but after them- the energy moved from Mercury orbit to Pluto orbit, creating all orbits depending on each other but NOT Neptune orbit- and then the energy is reflected from Pluto orbit to Mercury orbit and from this reflected energy Neptune orbit is created- that made Neptune orbit to be reflected on all planets orbits- Neptune orbit reflection is proved in the paper discussion- where the paper answers the question (why is Neptune orbit created after all planets orbits creation) (Item No. XI)

Paper discovery

Neptune Orbit Proves The Energy Is Reflected In The Solar System because Neptune Orbit Is Reflected On All Planets Orbits

My Research Conclusions - My Research produced the following 8 Conclusions

(1st Conclusion)

Any Motion In Space Produces Energy And Any Motion Energy Creates Waves In The Space– for that- Planet motion produces energy (½ mv^2) and this energy creates waves in the space- and each planet waves move by its planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by (47.4 km/s)- all waves move toward Pluto orbit (Perpendicular On The Revolution Direction)- and in Pluto orbit these waves are unified into one unified wave moves by velocity 205.8 km/s (the planets velocities total)- this unified wave is the gravitational wave- means- the gravitational waves are produced by the planets motions energies total and not by the gravitational field- Moreover- There’s No Gravitational Field- ALSO - The Sun Has No Massive Gravity AND No Planet Moves By The Sun Gravity (Newton Is Wrong)

(2nd Conclusion)

The Sun Is Not Doing Nuclear Fusion To Produce Its Rays- Instead- The Sun Rays Are Produced By The Gravitational Waves Motions Energies- And- The Gravitational Waves Are Produced By The Planets Motions Energies - Means- The Sun Rays Are Created By The Planets Motions Energies Total- The Sun Is A Phenomenon

Let’s Explain Shortly-

This Is Extraordinary: Gravity Can Create Light, All on Its Own

This new article tells the gravitational waves can move by speed of light and can produce a light beam- I claim The Sun Rays are produced based on this method by the gravitational waves motions and not by the sun nuclear fusion process- the sun is a phenomenon created based on the planets motions and the sun life and death depends on a cycle – means- after this sun death another sun will be produced for the solar system because the sun is produced by the planets motions and the sun is the outlet for the planets motions energies total

This is my paper major hypothesis- the paper proves this fact by decisive proves (the paper has more than 1400 pages all of them try to prove this fact basically) 

(3rd Conclusion)

The Planets Motions Use Different Rates Of Time 

Let’s asks (How Can The Planets Small Motions Energies Be Used To Produce The Sun Rays?)- The Planets Motions Use Different Rates Of Time - let’s give example

(One Second Of The Sun Clock= 1461 Seconds Of The Unified Wave Clock) 

We remember, the planets motions energies waves are unified into one unified wave and this wave revolves around the sun and moves by (205.8 km/s)

The rate of time tells (1 s of the sun clock = 1461 s of this unified wave clock)

(the unified wave clock = any planet clock)

by this rate of time- the unified wave moves by speed of light relative to the sun- because- the unified wave (205.8 km/s) moves in 1461 seconds a distance= 300000 km but the sun clock sees one second only and for that the unified wave moves by speed of light relative to the sun  

shortly- because the planets motions use different rates of time, the planets motions energies can be accumulated during a period of time to be massive amount of energy by which the sun rays can be created- the rates of time use is discussed in full details and proves in Item No. (V)

(4th Conclusion)

Planet is a geometrical point created by energy and the created planet moves with this energy from which this planet is created- means- Matter and space are created from the same energy but the matter created for itself a distinguished picture different from the space and moves by different velocity from the space motion- based on that- if the space is similar to the sea of water – the matter be similar to a whirlpool or vortex found on the sea page- this new definition of matter is proved by my planet diameter equation – and based on this definition

Planet (matter) is created in this planet original orbit- means- the orbits are created before any planet creation- and Planet is created in its orbit- Planet is similar to a tree planted in some ground and the orbit is this ground- for that- Planet Creation data is created depending on this orbit data and this planet creation data is belonged to this orbit data and that means even if the planet is migrated and left its original orbit – this planet creation data will be still belonged to its original orbit- that help us to know if any planet changed its orbit in the history – let’s prove this definition in following 

My Planet Diameter Equation (v1/v2)= (s/r)= I

v = Planet Velocity  and r = Planet Diameter and I= Planet Orbital Inclination   

s= Planet Rotation Periods Number In Its Orbital Period

v2, s, r and I are belonged to one planet and v1 is belonged to another planet

The planet (v1) is defined by test the minimum error 

Earth Equation uses Neptune velocity and  Mars Equation uses Pluto velocity

Jupiter Equation uses the Earth moon velocity and Saturn Equation uses Mars velocity

Uranus Equation uses Neptune velocity and Neptune Equation uses Saturn velocity

Pluto Equation uses the Earth moon velocity (As Jupiter)

Example  Neptune Equation (89143 /49528) = 9.7/ 5.4 =1.8                  

89143                   = Neptune rotation periods number in Neptune orbital period

49528 km   = Neptune diameter and 9.7 km/s = Saturn velocity

5.4 km/s      = Neptune velocity  and 1.8 degrees= Neptune Orbital Inclination

59800 days = Neptune orbital period (and Neptune rotation period =16.1 hours)

Shortly- my planet diameter equation proves planet diameter is created depending on its velocity- and when a planet leaves its orbit, its velocity is changed because Kepler stated (Planet orbit defines its velocity)- for that the migrant planet made changes for its motion data to be suitable for its new orbit and by that the analysis for this planet data show the inconsistency between its creation data and its motion data (because this planet diameter is not changed even after its migration)- and by that we can discover this planet is a migrant one and its original orbit   

(5th Conclusion)

Mars original orbit was between Mercury and Venus with orbital distance 84 mkm and Pluto was The Mercury moon revolves around Mercury- the two planets are migrated from their original orbits- Mars had collided with Venus and The Earth before to reach to its current orbit (228 mkm) and Mars is the planet caused the Earth moon creation- (Giant impact hypothesis is wrong)–AND- Mars Collision with Venus and The Earth is a cyclic accident means it’s an accident repeated one time each 8211 years– I prove that in page No.396)

ALSO Pluto is migrated and flight to the end of the solar system design (the orbital distance 5906 mkm)–in that time Neptune original orbit was 5906 mkm – means- Pluto current orbit was Neptune original orbit- But Pluto had collided with Neptune and pushed Neptune out of its orbit and Pluto occupied its orbit- of course Pluto can’t support this collision but Pluto was carrying by strong wave of energy- this wave pushed Neptune out of its orbit

The paper proves this fact and analyzes Pluto orbital inclination 17.2 degrees because it was Neptune orbital inclination and Neptune creation data depended on it and after Pluto occupied the orbit 5906 mkm Pluto motion depends also on this inclination 17.2 deg for that this inclination caused deep interaction between Neptune and Pluto

(6th Conclusion)

Neptune had to create a new orbit for itself (with orbital distance 4495 million km) – and this new orbit caused to redistribute all planets orbits- the planets orbits redistribution is done under Uranus effect to save the one geometrical design based on which the solar planets orbits were created –we understand the planets orbits redistribution process was a complex one basically because Neptune orbit is reflected on the other planets orbits (the conclusions No.4 & 5 are proved in page no. 288)

Notice - Neptune orbit is created reflected on all other planets orbits- this is happened because all planets orbits are created from one energy and this energy moved from Mercury orbit to Pluto orbit – BUT- Neptune orbit is created from another energy and this last energy moved from Pluto orbit toward Mercury and Venus orbits- clearly the two energies are moving in opposite directions that caused Neptune orbit to be created reflected on all planets orbits-

In fact Neptune orbit and motion caused serious problems for the solar system are

(1) Neptune Motion Caused To Create Relativistic Effects In The Solar System

(2) Neptune reflected Orbit forced the gravitational waves to be reflected three times to perform the required process while if Neptune is not found in the solar system the gravitational waves would reflect only two times to perform the required process- these ideas are discussed in details in the paper discussion

(7th Conclusion)

The Earth Moon Creates An Angle In Its Motion

The moon daily displacement =88000 km and during 29.53 days (the moon day period) the displacements total be = 2.598 million km = 2π x 413600 km

The data tells us the moon orbital apogee radius should be 413600 km and also it tells, because the moon daily displacement (88000 km) is so long, the moon should revolve around the Earth through this apogee orbit its radius (413600 km) only and can’t revolve around the Earth through any more near orbit… Not Facts

The moon orbital apogee radius =406000 km only and the moon revolves around the Earth through near orbits and can reach to perigee radius (363000 km). 

 

How Can The Moon Do That? the intelligent moon creates an angle (θ) between its motion direction and its orbit horizontal level by that the real displacement (L) through the orbit be less than (88000 km) because it be (L = 88000 km cos θ), as a result the total displacements be less than (2.598 million km) and that makes the moon orbital apogee radius to be decreased from 413600 km to 406000 km.

We should pay attention for the angle (θ), because this angle controls the moon motion features – where- with the angle (θ) increasing the real displacement (L) be shorter and the moon can revolve around the Earth through more near orbits – but –with the angle (θ) deceasing the real displacement (L) be longer and that pushes the moon far from the Earth to more far orbits.

The moon orbital motion Equation depends on this angle (θ) it tells θ1 = θ0 +1.7

where (θ1) = today angle and (θ0) =yesterday angle

1.7 degrees be used as the moon daily motion degrees for the equation

NOTICE

As a result for the angle (θ) using- the moon orbital radiuses be defined depending on Pythagorean rule- this is proved in following 

(363000 km)2 + (86000 km)2 = (373000 km)2

(373000 km)2 + (86000 km)2 = (384000 km)2

(384000 km)2 + (86000 km)2 = (392000 km)2

(392000 km)2 + (86000 km)2 = (406000 km)2      (error 1%)

363000 km, 373000 km, 384000 km and 406000 km are the moon orbital radiuses in perigee, total solar eclipse, orbital distance and apogee respectively

(8th Conclusion)

The solar planets and their orbits are created from one energy and this energy is provided by one light beam and this light beam moves by a speed =1.16 million km per second-

Shortly - The universe max speed is NOT the known speed of light (C=300000 km/s) (Einstein is Wrong) BUT the max speed is the speed of the original light beam its speed is 1.16 million km per second- from this light beam energy all planets orbits are created (Except Neptune)- let’s refer to the solar system creation theory in following 

The Solar System Creation Theory (A Summarized Idea)

  1. The solar planets matters and their distances are created from one energy and this one energy is provided by one light beam moves by speed = 1.16 million km per second- The light built the solar system starting its motion from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each other (as proved by my planet orbital distance equation) after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second in Mercury orbit before the space creation- and its speed be 300000 km/s in Pluto orbit after the space creation as result for the energy consumption in the space creation- 
  2. In Pluto orbit- The light had no energy to build any more orbits -for that- the light returned to its origin point (Mercury orbit) for that the light is reflected with speed (C=300000 km/s) from Pluto orbit to Mercury orbit passing through all built orbits– no energy is required in this motion for that the light beam moves with speed of light (C=300000 km/s) in Mercury orbit.
  3. From this reflected energy Neptune is created- means- it’s energy moves by the known speed of light and moves in the opposite direction for the original light beam 1.16 million km per second- that explains why Neptune orbit is reflected on the other planets orbits 

The speed 1.16 million km per second is proved by heavy and decisive proves in page NO. (49)

Paper Objective

The Paper Proves The Following Facts

  1. The Gravitational Waves Are Produced By The Planets Motions Energies And Not By The Gravitational Field- Moreover- (The Sun Doesn’t Produce A Gravitational Field)  
  2. Planet Is A Geometrical Point Created By A Moving Energy And Moves With This Energy Motion- mean- the energy is similar to the blood in a creature body and planet is similar to a muscle in this creature- also-the planets are similar to the puppets theater because the planets motions depend on the energy motion from which these planets are created- these examples explain the energy motion effects on the planets data  
  3. The gravitational waves reflection causes effects on the planets creation and motion data because the reflection defines the energy motion direction.
  4. The gravitational waves reflection causes to square the wave velocity- means- if a gravitational wave velocity is (v) and this wave is reflected- its velocity after the reflection will be (v^2)

Paper Objective Proof Method

The gravitational waves are reflected three times in the solar system– from Neptune to Saturn- and- from Uranus to Jupiter– and- from Venus to Mars –these reflections cause to effect on the planets data- AND -The paper compares between the effects of these three reflections on the planets data and by this data comparison the paper proves the facts of its objective.  

Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition

Paper Hypothesis

The Sun Is Not Doing Nuclear Fusion To Produce Its Rays- Instead- The Sun Rays Are Produced By The Gravitational Waves Motions Energies- And The Gravitational Waves Are Produced By The Planets Motions Energies- Means- The Sun Rays Are Created By The Planets Motions Energies Total- Shortly- The Sun Is A Phenomenon Created After All Planets Creation And Motion Because The Sun Is Created By The Planets Motions Energies. 

That explains why the sun corona temperature is 5 million Kelvin but the sun surface temperature is 5800 Kelvin- because the energy is not produced from the sun body but the energy comes from out of the sun body for that the energy out of the sun is so greater than the energy inside the sun (the energy comes from the gravitational waves which are produced by the planets motions energies total)   

Planet Creation And Nature Definition

  • The Matter Creation has 2 basic features which are (1st feature) the matter is an intersection point between two energies- means- the matter creation depends on two energies where (one energy is not enough to cause the matter creation) AND (2nd feature) the matter is created in pairs and no single matter can be created (as electron and positron are produced from Gamma ray 1.2 Mev) and also (the creation system male and female proves the matter is created in pairs)

These Same Features Are Used For Planet Creation

  • Planet Is An Intersection Point Between Two Energies- This is similar to two ropes or cables are connected together by one knot (or joint)- the knot is connected with both ropes and each rope motion effect on its motion- this Knot is the planet -This picture makes the planets typical to The Puppets Theater- because their motions depend on the motions of the energies from which the planets are created.
  • Also- the planets are created in pairs and no single planet can be created– planet velocity definition and its diameter creation both prove this fact
  • Planet Nature Definition aims to prove (Planet is created based on a coherence of light- means- the matter generally is created based on a coherence of light)- Planet Nature definition is written in page No. (21) and its proves are in item No.  (VI)

The Solar System Description Refutation-

(The Sun Is The Planets Motions Result But The Description Supposes The Sun Is The Planets Motions Reason) and (The Matter Is Created Depending On Its Motion But The Description Supposes The Matter Is Created Independently From Any Motion)

The Paper Abstract Contents

I-  Major Problems In The Physics Book

II- The Gravitational Waves Creation, Motion And Reflection

III- The Gravitational Waves Reflection Effects On The Planets Data (The Data Comparison)

IV-  The Paper Hypothesis Proof (The Sun Rays Creation Theory)

V- The Planets Motions Use Different Rates Of Time 

VI- The Proof Of Planet Nature Definition (Matter Nature Analysis)

VII -The Physicist Wrong Vision Proves

VIII-The Proves For My Theory

(There’s A Light Beam Moves By Speed 1.16 Million Km Per Second)

IX- The Solar System Description Refutation

X -The Refutations Of Many Theories In The Physics Book 

XI-The Solar System History And Neptune Orbit Creation

XII- The Paper Major Question Answer

Paper Definitions Are In Page No. 329

Questions And Answers Are In Page No.361

An article Mars Will Collide With The Earth And Push The Atmosphere Gases Into It 381

The Paper Hypothesis Explanation

The Sun Rays Creation Process

This Is Extraordinary: Gravity Can Create Light, All on Its Own

This new article tells the gravitational waves can move by speed of light and can produce a light beam- I claim The Sun Rays are produced based on this method by the gravitational waves motions and not by the sun nuclear fusion process- also –No star rays is produced by the nuclear fusion process but all rays are created by the gravitational waves motions energies as the article states.  

Here we have four questions to answer

  1. How can the gravitational waves be produced by the planets motions energies?
  2. How can the gravitational waves move by speed of light?
  3. How can the gravitational waves motions produce a light beam?
  4. Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

1st Question

How Can The Gravitational Waves Be Produced By The Planets Motions Energies?

Planet motion produces energy (½ mv^2) but where’s this motion energy? Planet can NOT store its motion energy inside its body because It would raise its temperature- and no planet temperature is raised by its motion- logically- planet motion energy is stored in the space in moving waves –Means- planet motion in space is similar to a fish swimming in the sea- the fish swimming creates waves in the sea and similar to that - planet motion energy creates waves in the space- and - fish swims because it hits the water by its body and that creates waves in the water- and these waves move by a velocity equal the fish velocity because of the reaction force- similar to that- Planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal this planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by equal velocity (47.4 km/s)

Shortly- the planets move and their motions create waves in the space and each wave moves by velocity equal its planet velocity

AND the planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)

AND  in Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity= 205.8 km/s where The 9 planets velocities total=176 km/s but I add the Earth moon velocity (29.8 km/s) that makes the total to be 205.8 km/s – I add the moon velocity because the energy is stored finally in the moon orbit-

Note- The moon and the Earth revolve around the sun together for that the moon velocity is considered equal the Earth velocity relative to (the sun) –

NOW the unified wave moves by (205.8 km/s) is the gravitational wave-

The scientists discovered these waves in the space and they called them (gravitational waves) supposing these waves are produced by the sun gravitational field- BUT Planet motion energy must be stored in the space as moving waves – as proved by the previous analysis -means- even if There’s NO Gravitational field at all there’s a strong reason to find waves in the space because these waves are created by the planets motions energies

Note- I refute the sun gravitational field theory- and prove the sun has no massive gravity and also No Planet Moves By The Sun Gravity (Newton Is Wrong)

The Conclusion

The Unified Wave Its Velocity 205.8 Km/S Is The Gravitational Wave

Notice - the new article still believes that the gravitational waves are produced by the gravitational field- I refuse this idea and prove the gravitational waves are produced by the planets motions energies but I need the article because it tells the waves can move by speed of light and can produce the light beam where I suppose the sun rays are created by this method 

The Answer Of The Questions No. (2) And No. (3) 

2ndQuestion   How Can The Gravitational Waves Move By Speed Of Light? AND

3rdQuestion How Can The Gravitational Waves Motions Produce A Light Beam?

What Do We Have?

We have One unified wave moves by velocity 205.8 km/s

What Do We Need?

We need to accelerate the unified wave to move by speed of light (C=300000 km/s) and this wave should produce (A Light Beam)

We know the light beam is produced from (C^2= Squared Speed Of Light)

Technically- How To Solve This Problem?

We Need To Square The Wave Velocity

Let’s see my hypothesis (The Gravitational Wave Reflection Causes To Square The Gravitational Wave Velocity) –

Let’s see if this hypothesis can solve the problem

(a)

(205.8)^2 x 7.1 = 300000 km/s = C = (speed of light)

Where

205.8 km/s= the velocity of the unified wave (the gravitational wave)

7.1 is Lorentz length contraction effect rate for speed (0.99 C)

Let’s discuss the equation

The unified wave moves by (205.8 km/s)– and this wave is reflected- the wave reflection causes to square its velocity – for that the velocity (205.8 km/s) is squared and be (205.8 km/s)^2= 42354 km/s

Means the wave before reflection moves by (205.8 km/s) and after reflection the wave moves by (42354 km/s)

But Lorentz length contraction effect rate causes to increase the distance 42354 km to be (42354 x 7.1 = 300000 km)– means- the speed 42354 km/s is accelerated to be 300000 km/s = C=speed of light by Lorentz length contraction effect – we understand the rate 7.1 causes to contract the distances but here the rate increases the distances because the wave reflection causes to reflect the geometrical effects.

Conclusion No. (1)

The Wave Reflection Causes To accelerate the unified wave from (205.8 km/s) to move by speed of light (C=300000 km/s)

(b)

Now we have a gravitational wave moves by speed of light (C=300000 km/s)

This wave is reflected one more time

The gravitational wave reflection causes to square its speed by that – the wave speed was = speed of light (C=300000 km/s) before the reflection and after the reflection this speed will be (C^2=Squared Speed Of Light)

The light beam is produced from this value (C^2=Squared Speed Of Light)

Now we know how the unified wave (205.8 km/s) can be accelerated to move by speed of light (C=300000 km/s) and how this wave can produce a light beam

Conclusion No. (2)

The Gravitational Wave Reflection Causes To Square The Wave Velocity

This is the main useful result from the wave reflection- because without the squaring of the wave velocity no acceleration can be done for the wave and by that the gravitational wave can’t move by speed of light Nor produce any light beam

Notice (1)

The waves are reflected three times in the solar system and the abstract provides strong proves for these reflections and more proves are found in the paper- the waves reflection causes basic changes in planets data and I suppose – the waves reflection causes also to square the waves velocity

Notice (2)

The rate 7.1 is produced by Lorentz length contraction effect as a result for motion by speed (.99C= 297000 km/s)- I proved this fact in (Item no. 5-6 Can Relativistic Effects Be Found In The Solar System?)

THE SUN POINT CREATION

The sun point of space has geometrical features enable to produce the sun rays and that means – the sun rays can be created only in the sun corona and far from the sun NO light beam can be created – let’s see the sun geometrical features in following

(i)

The Sun Point Is A Stationary Point Its Velocity 1 km/s = Zero Approximately

This is important feature – Because

All motions are done relative to the sun point of space – for example- Pluto velocity is 4.7 km/s –means- Pluto moves by 4.7 km/s relative to the sun point of space – Shortly- the whole solar system is in motion (space and planets are in motion) but the sun point is stationary (static point moves by velocity 1 km/s = Zero approximately) Means- the solar system is similar to a sea of water and the sun is similar to a vortex or whirlpool found on the sea page – the vortex doesn’t move with the sea waves -Shortly- the sun point of space is the stationary point in the solar system and all motions are done relative to the sun point of space-

Example – Venus moves by 35 km/s that means Venus moves by 35 km/s relative to the sun point of space – also we know Venus motion produces energy and this energy creates waves in the space and these waves move by velocity 35 km/s – means- these waves move by 35 km/s relative to the sun point of space-

(ii)

Why Is It Necessary For The Sun Point To Be Stationary Point? Because

1- The Gravitational Wave (Unified Wave) Moves By Speed Of Light Relative To The Sun

2- The Gravitational Wave Can NOT Move By Speed Greater Than Speed Of light

3- The Wave Reflection Causes To Square The Different Speed Between The Gravitational Wave Speed And The Sun Point Motion Speed

4- If The Different Speed Is Less Than Speed Of Light (C=300000 Km/S) The Speed Squaring Process Will Never Produce The Value (C^2= Squared Speed Of Light) – means- No Light Beam Can Be Created

Now we see the necessity to make the sun point as stationary point moves by  (Zero approximately =1 km/s) – because – if the sun point moves by any higher speed than (1 km/s) the different speed will be less than speed of light and the squared value will be less than (C^2) and No light beam can be created

Now let’s ask- while the space is in motion as the sea of water – how can this stationary point be created? let’s answer in following

(iii)

The planets were created before the sun creation and the planets revolve around a point in space (any point in space) the revolution creates two velocities on both sides of the revolution- the two velocities are equal in value opposite in direction- the total be Zero- means- the revolution motion creates a stationary point in the revolution center-

By That -the sun point of space is created as a stationary point- and the sun point is the only stationary point in the solar system- for that all motions are done relative to the sun point of space-

4th Question

Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays? the question is logical because

Planet motion energy (½ mv^2) is so small energy and the sun rays energy is massive energy -for that- It’s Logical Question To Know How Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

(1)

The secret is the rates of time using-

The planets motions use different rates of time- by that- the planets motions energies can be accumulated during long period of time to produce massive energy sufficient to produce the sun rays – let’s give examples

Example No. (1)

(One Solar Day Of The Sun Clock = 365.25 Solar Days Of The Earth Clock)

By this rate of time– The Earth motion energy for one complete year can be used by the sun in one solar day – in fact- the solar planets motions energies total during one complete year (365.25 solar days) is accumulated and stored in one energy and be used by the sun motion on one solar day that causes to accumulate massive energy to be used (notice 1461 days = 365+365+365+366) 

Example No. (2)

(One Second Of The Sun Clock=1461Seconds Of The Gravitational Wave Clock)

We remember the unified wave (the gravitational wave) moves by 205.8 km/s -And – the gravitational wave moves in 1461 seconds a distance = 300000 km -BUT the Sun clock doesn’t see this period 1461 seconds but sees only the period (ONE SECOND) – means-

The distance 300000 km is passed in (ONE SECOND)only for the sun clockThat causes the gravitational wave to move by speed of light (C=300000 km/s) relative to The Sun – (the rate of time using and effect is explained in details in item no V)
Planet Nature Definitio
n

In this analysis I suppose- Planet is created based on a coherence of light- here- I define planet creation as example for the matter creation generally- and- I prove planet is created by coherence of light- means- the matter is created by coherence of light. 

I want to say -

The main idea tells- Planet is created based on two energies interaction (or two light beams coherence)– one source of energy can NOT create any matter (Nor Any Planet)

Planet Nature Analysis

Let’s Discuss Planet Nature Features in following

(1ST FEATURE)

Planet Is An Intersection Point Between Two Energies- Imagine we have one energy moves in (x-axis direction) and have also another energy moves in (y-axis direction)- the two energies meet each other in One Point which is (an intersection point) – this point is A Planet

This is similar to two ropes or cables or strings are connected together by one knot (or joint)- the knot is connected with both ropes and each rope motion effect on this knot motion direction-

This explanation is typical to The Puppets Theater-the puppets are connected with strings and these strings define these puppets motions direction-shortly- Planet motion depends on the motions of the energies by which this planet is created-simply Planet is an intersection point between two energies and these energies motions effect on this planet motion Direction 

Notice- The data doesn’t show any effect of planet mass on its motion. 

Shortly– Theprevious explanation tells Planet is created based on two energies- one energy is NOT enough to create a planet (the matter) 

(2ND FEATURE)

The Matter Is Created In Pairs And No Single Matter Can Be Created -AND

Planet Creation And Motion Are Defined By Another Planet Motion

  • As in the experiment- (Gamma ray 1.2 Mev can produce electron and positron)- that proves the matter is created in pairs and no single matter can be created- also the creation system (male and female) supports this same fact- I want to say- all matters are created similar to the electron and positron from Gamma ray- simply- the matter is created in pairs- for that- Planets also are created in pairs and no single planet can be created- Planet velocity and diameters analysis prove this fact clearly- the proves discussion are found in item no. (III)  
  • This feature also proves the matter is created based on two energies- also in the Gamma ray experiment because we need two energies– the first energy is Gamma ray 1.2 Mev from which electron and positron can be produced– the second energy is the used energy to produce electron and positron from Gamma ray- means-the method by which Gamma ray 1.2 Mev can produce electron and positron- please note the principle idea tells (the matter is created in pairs and no single matter can be created-AND- the matter creation needs two energies because one energy is not enough to create the matter) 
  • Please note- Feature no.(1) tells, planet is an intersection point (a knot) between two energies- but Feature no. (2) tells matter is created in pairs and no single matter can be created– that means- these intersection points (knots) are created in pairs and can’t be created individually-BUT Why?? because the matter creation depends on the energy reflection- the reflection causes to create the matter is pairs- this fact is explained in feature No. (5) 

(3RD FEATURE)

Planet Diameter Is Created As A Function In Its Rotation Period

This fact is proved by my planet diameter equation

Please note-my planet diameter equation proves Planet diameter is created based on two motions because the equation uses two planets velocities (v1/v2) that proves two motions are required to produce planet diameter which supports our principle tells (Planet matter is created depending on two energies because one energy is not enough to produce the matter)

(4TH FEATURE)

I have two examples explain the matter nature

(1st Example) the matter is similar to creature muscles- shortly- even if the muscle is very strong as a rock- we understand this muscle is found depending on the blood motion-and any change in the blood motion can effect on the muscle dimensions and ability- similar to that the matter is created depending on the motion of the energies Based on which this matter is created-

(2nd Example)–If the space is similar to the sea of water- the matter is similar to a whirlpool (vortex) found on the sea page- we understand the whirlpool (vortex) is created by the sea water but it has a distinguish picture from the sea waves and it moves by a different velocity from the sea waves- that explains how the moving energy can effect on the matter creation data- for example- we have a whirlpool (vortex) its diameter is 2 meters- why does this diameter equal= 2 meters? The diameter is created depending on the water velocity, pressure, amount and motion angle and many other features of (the moving water)- the moving water creates this whirlpool with diameter 2 meters and as long as the water motion is not changed this diameter will not be changed also-

Notice we understand the whirlpool (vortex) is found because at least two streams of water meet each other- means- one stream is not enough to create a whirlpool (vortex)– similar to that- one energy is not enough to cause the matter creation but two energies are required to cause the matter creation- because the matter is an intersection point between these two energies- 

(5TH FEATURE)

Why should The Matter be Created In Pairs And No Single Matter Can Be Created? Let’s answer -The matter creation needs two energies because the matter is an intersection point between these two energies- means- the matter creation (and planet creation) needs two energies-

In the solar system one of these two energies is A Reflected Energy-

let’s explain that

4.  The solar planets matters and their distances are created from one energy and this one energy is provided by one light beam moves by speed = 1.16 million km per second- The light built the solar system starting its motion from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each other (as proved by my planet orbital distance equation) after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second in Mercury orbit before the space creation- and its speed be 300000 km/s in Pluto orbit after the space creation as result for the energy consumption in the space creation- 

5.  In Pluto orbit- The light had no energy to build any more orbits -for that- the light returned to its origin point (Mercury orbit) for that the light is reflected with speed (C=300000 km/s) from Pluto orbit to Mercury orbit passing through all built orbits– no energy is required in this motion for that the light beam moves with speed of light (C=300000 km/s) in Mercury orbit.

6.  This explanation tells us- there are 2 energies in each orbit which are the (1st energy) is the orbit energy by which the orbit is created (depends on the original speed 1.16 million km per second)- and the (2nd energy) is the reflected energy (moves by the known speed of light 300000 km/s)

The Solar System Coherence Of Light

Here I claim planet creation is done by the coherence of light-

  1. The previous explanation shows the reflected energy (the light beam moves by the known speed of light C=300000 km/s) is reflected from Pluto to Mercury and passed through all orbits while each orbit is built by energy and this energy is provided by the original light beam speed (1.16 million km per second)- means- the orbit energy is the energy of the original light beam its speed (1.16 million km per second) and the reflected energy is the energy moves by the known speed of light (C=300000 km/s)- shortly- The coherence of light is done between these two light beams- one of them moves by the original light beam speed (1.16 million km per second) and the other moves by the known speed of light (C=300000 km/s)- the coherence of light is done between these two light beams  
  2. The planets are created based on this coherence of light – I have Three Proves for this fact –let’s see them in following

(First Proof)

The planets velocities are defined based on the speed (1.16 million km per second)- this is proved by the rule (v1v2=322) as explained - let’s remember this explanation

322 = 47.4 km/s (Mercury velocities)    x 6.8 km/s  (Uranus velocities)               

322 = 35 km/s  (Venus velocity)            x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)     x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)            x 13.1 km/s (Jupiter velocity)                        

Venus (35 km/s) moves a distance  1.16 million km in 4.7 x 2 hours and

Pluto (4.7 km/s) moves a distance 1.16 million km in 35 x 2 hours -And

Earth (29.8 km/s) moves a distance  1.16 million km in 5.4 x 2 hours and

Neptune (5.4 km/s) moves a distance 1.16 million km in 29.8 x 2 hours

Shortly the planets velocities are defined complementary one another based on The Original Light Beam Speed 1.16 million km per second-

Means the planets velocities are defined as function in this original speed 1.16 million km per second- as proved by the data- this data analysis proves the effect of the original speed of light (1.16million km per second) on the planets velocities definition 

(Second Proof)

The planets velocities total is defined based on the known speed of light (C=300000 km/s) –let’s remember this fact in following

(205.8)^2 x 7.1 = 300000 km/s = C = (Speed Of Light)

Where

205.8 km/s= 9 the planets velocities total + the Earth moon velocity (29.8 km/s)

(the moon and the Earth revolve together for that their velocities are considered equal)

7.1 is Lorentz length contraction effect rate for speed (0.99 C)

Let’s discuss the equation

The planets motions energies create waves in the space and these waves move by their planets velocities and these waves move toward Pluto orbit and in Pluto Orbit these waves are unified together into one unified wave moves by the planets velocities total – means- This unified wave moves by (205.8 km/s)–and then this unified wave is reflected- the wave reflection causes to square the wave velocity– for that the velocity (205.8 km/s) is squared and be (205.8 km/s)^2= 42354 km/s – means- the wave velocity was (205.8 km/s) before its reflection and after the reflection the wave velocity be (42354 km/s) -

-BUT- Lorentz length contraction effect rate causes to increase the distance 42354 km to be (42354 x 7.1 = 300000 km) – means- the speed 42354 km/s is accelerated to be 300000 km/s = C=speed of light by Lorentz length contraction effect – we understand the rate 7.1 causes to contract the distances but here the rate increases the distances because the wave reflection causes to reflect the geometrical effects

This data shows- the planets velocities total is LIMIT to the known speed of light (C=300000 km/s) because the energy reflection effects are obligatory- means- the planets velocities can NOT be greater than (205.8 km/s) because that would cause the final speed to  be greater than speed of light (C=300000km/s) which is impossible and that tells the planets velocities are defined by The Limit which is (the known speed of light C=300000 km/s)

The two proves show the planets velocities are defined based on two limits – the original speed (1.16 million km per second) based on which the planets velocities are defined and the known speed of light (C=300000km/s) which is The Limit for the planets velocities total– this analysis proves my theory tells (The Planets Are Created Depending On The Coherence Of Light Is Done Between The Original Light Beam Its Speed 1.16 Million Km Per Second And The Reflected Energy Which Moves By The Known Speed Of Light (C=300000 km/s))

(Third Proof)

Young coherence of light produces the interference (bright fringes and dark fringes)- let’s suppose– we see bright fringes as planets- and if the fringe breadth is comparable with planet diameter- we will find that- the solar planets distribution is typical to the interference of Young- because- the greatest diameter planet “Jupiter” is found in the middle and the other planets diameters are decreased gradually on both sides typical to the fringes distribution in Young interference- please note- I have proved Mars original orbit was between Mercury and Venus and Mars had migrated to its current orbit by that the inner planets original order was (Mercury-Mars- Venus- The Earth) the diameters are decreased gradually from the Earth to Mercury typical to Young Interference (Also the outer planets diameters are decreased gradually from Jupiter to Pluto)  

The Matter Is Created In Pairs

Now we know each orbit has two energies- (1st energy) the orbit energy by which the orbit is created (2nd energy) the reflected energy which is passed through all orbits- by that- NOW one energy is a reflected energy and the reflection caused the matter to be created in pairs- why??

The energy reflection causes to create complementary values- imagine a light beam is reflected on some mirror- here–we have the original light beam and the reflected light beam- the two light beams are similar in all data but in opposite directions- that tells the energy reflection causes to create the data reflected on each other (and complementary one another)- and the complementary data cause to create the matters in pairs and no single matter can be created-

Shortly -because the energy is reflected in the solar system the matter is created in pairs by the energy reflection effect where No single matter can be created     

(6TH FEATURE)

How can planet matter be created by two energies? By what method this creation can be done? There are three methods can be used

(First Method) Can Planet Be Created As A Wave?

We know the particle has double nature and behaves as a wave-

Let’s suppose planet is created as a wave? How can the wave be created?

We need two motions perpendicular on each other- means- we need two energies perpendicular on each other- means- by two energies motions a wave can be created and this wave will be a planet - Just we need to suppose that the two energies in each orbit are perpendicular on each other and that will cause to create the planet as a wave 

(Second Method) The Energy Reflection

As explained the energy reflection causes to create the values in pairs (reflected on each other and complementary one another) because the original values produce reflected values and that cause the values to be created in pairs-and that cause the matter to be created in pairs- shortly- the energy reflection is the reason to create the matter in pairs- that causes planets data to be created in pairs complementary one another- (as proved by planet velocity definition by the rule v1v2=constant= 322) 

Also planet diameter follows this same rule (R1R2=Constant)- because the planets are created in pairs and the matter generally is created in pairs (as electron and positron from Gamma ray 1.2 Mev)

Shortly- The Creation In Pairs Is Done Basically Because Of The Energy Reflection 

(Third Method) The Coherence Of Light

As explained before Young coherence of light produces the interference which can be comparable with the solar system because the bright fringes distribution is typical to the solar planets distribution if we suppose the fringe breadth is comparable with planet diameter

Notice - we understand, the matter is created in pairs because of the energy reflection and if the planets are created by the coherence of light that tells the coherence of light must contain reflection of energy which is a fact- because- the coherence of light contains reflection of energy and this reflection is seen in the fringes distribution because the fringes breath is decreased gradually on both sides means each side is reflected on the other and that shows there’s a reflection of energy found in the coherence of light-  

NOTICE The Proves Discussion for Planet Nature Definition is found in Item (VI)

First Item - Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition 

1stProblem The Physicist wrong Vision Contradicts The Nature System 

The Physicist Vision

The physicist supposes there’s (a unit of building)- by that- the physicist sees the matter (mass) as a wall and this wall is consisted of bricks (small similar units) and the physicist searches for this (unit of building)–

For that the physicist divided the matter and found the particles and then the particle is divided into Molecules and the Molecule is divided into atoms and the atom is divided into nucleus and electron moves around and the nucleus is divided into proton and Neutron- and the proton is divided into quarks …etc

The physicist searches for the building unit- for that he divides anything to reach to this building unit- 

The Nature System Vision

The Nature designer aims to create INTEGRATION- as the marriage– male and female- For that- the matter is created complementary one another-means- The Matter Is Created In Pairs (as Gamma ray 1.2 Mev produces electron and positron)

No building unit- AND

I want to show how the physicist causes fatal error for the research method while the physicist divides the elements (from matter to particle to molecule to atom to proton to quarks …etc) this division from out into inner till reach to very small unit which the physicist considered the building unit – that causes to destroy the geometrical design of the integration process- Shortly- the physicist sees a universe (never be created by the designer)- while the designer created the integration is a goal and created tools to perform this integration the physicist destroyed the integration tools while he searched for the building unit which is not found at all.

NOTICE

Another point shows the physicist wrong vision is (The Planet Motion)

While the solar planets move as gears in one machine and all planets motions are unified into one unified general motion- means- all planets motions are unified and produce one result only (one unified motion)- the physicist supposes each planet motion is independent-by that- in place of one machine of gears moves and produces one unified motion (one result) the physicist told us each planet motion is independent and No unification is found for the planets motions –here – one more time the physicist sees very different picture from the real one- in place of one hand has five fingers the physicist sees five independent moving fingers

2ndProblem  Planet Motion Energy Definition

Let’s remember this question where’s Planet Motion Energy?

We agreed planet motion produces energy (½ mv^2) and this energy must be stored in the space as moving waves because planet can NOT store its motion energy inside its body otherwise this planet temperature would be raised- that tells- the space has moving waves produced by planet motion energy

Also –we agreed- planet motion energy creates waves in the space and these waves move by velocity equal this planet velocity-

Shortly- for example- Mercury (47.4 km/s) moves in the space and its motion energy produces waves in the space and these waves move by velocity (47.4 km/s) –this analysis creates 3 difficulties for the physics book let’s see them

First Difficulty

This analysis tells the space has moving waves are produced by planets motions energies– But- the scientists discovered these waves and they told these waves are produced by the gravitational field- and they called them (gravitational waves)- I prove the sun doesn’t produce a gravitational field and has no massive gravity and no planet moves by the sun gravity – But- here we need to answer (from what source these waves are produced?) because planet motion energy analysis forces us to accept that these waves are produced by the planets motions energies

Here – we need to answer (from what source these waves are produced?)

I prove the gravitational waves are produced by the planets motions energies and not by any gravitational field.

I provided two major proves

(1st proof) I proves there’s no gravitational field and the sun has no massive gravity and no planet moves by the sun gravity

(2nd proof) the gravitational waves reflection proves the waves are produced by the planets motions energies because the waves reflection causes effects on the planets data

Second Difficulty

Now we know planet motion energy is stored in the space as moving waves (the gravitational waves)- But- the planets move since long period of time means the planets motions should cause to store massive motion energy in space during this long period- Now -where’s this stored massive energy? also the energy can NOT be stored in space forever- so what’s happening for this stored massive energy? I prove the sun rays are created from this stored massive energy and not from the sun nuclear fusion process- this is my research hypothesis – in all cases we should know how this stored massive energy be used because this massive energy can cause risk for the solar system stability.

Third Difficulty

Newton Mass gravity definition is disproved by planet motion energy

Because

Suppose the moon moves by the Earth mass gravity and the moon motion produces energy (½ mv^2) now let’s ask- From What Source The Moon Motion Energy Is Provided? What’s the moon motion reason? The mass gravity- means- the mass should provide the motion energy- means – if The moon moves by the Earth gravity that necessitates to decrease the masses of the Earth and the moon by the motion energy- here’s the problem- Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass-  this decrease is done because of the motion energy

The analysis tells us–the physicist supposes planet motion produces NO energy this is the only one solution for the problems created by the physicist neglect to observe planet motion energy-

3rdProblem Mass Gravity Force Analysis

The Refutation Of The Sun Gravitational Field

The Sun Doesn’t Produce A Gravitational Field Nor Has Massive Gravity – let’s prove that in following

(i)

The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time- 

(ii)

No Planet Moves By The Sun Gravity–Newton is wrong- because- Planet moves by the force caused its creation- means- planet creation and motion is done by one force only- otherwise this planet would be broken if two forces have effects on it-

Suppose planet is created (by any force) and the sun gravity attracted this planet and forced it to revolve around the sun by the sun gravity (as Newton imagined) that would force this planet to move against its internal structure and that will cause this planet to be broken-

Imagine a human is forced to walk on his hands in place of his legs- this human will be dead by this motion-

That’s why the planet creation and motion is done by one force only- Newton mistake is that he didn’t know how the planet is created- and he considered - the creation force is a historical force has no effect on the current motion- Shortly-the sun didn’t cause to create any planet and the sun doesn’t cause any planet to move

(iii)

We agreed that, mass gravity force can NOT cause any motion- again Newton is wrong- because –any motion will produce energy- suppose the moon moves by the Earth mass gravity- the moon motion produces energy- and – from what source this energy is provided? From the masses of the Earth and the moon –here’s the problem  

Where Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass

BUT Mass gravity is a fact - the mass gravity creates a bond between two masses (The Earth and the moon are bond by their masses gravity ) if some outer force causes the Earth to move the moon will move with the Earth and in this case the outer force will provide the motion energy for the Earth and the moon.

(iv)

The planets order contradicts the gravitation equation- for example- Jupiter the greatest mass is not the most near planet to the sun- when we asked the physicist told us this problem is done by (the planets initial conditions)- all these are wrong- planet orbital distance does NOT depend on the sun mass nor on this planet mass- planet orbital distance depends on its neighbor planet orbital distance – my equation proves this fact- let’s see it

Planet orbital distance equation (my 1st equation)

d^2= 4do (d-do)

where d=planet orbital distance

do= its neighbor orbital distance

Example (1) Venus orbital distance (108.2)^2 = 4 x 57.9 x (50.3)                             

d= 108.2 million km = Venus Orbital Distance       d0= 57.9 million km  = Mercury Orbital Distance

50.3million km=The Distance Between Venus And Mercury  Venus Depends On Mercury

Example (2) Saturn orbital distance (1433)^2= 4 x 778.6 x 655

d= 1433 million km    = Saturn Orbital Distance     d0= 778.6 million km  = Jupiter Orbital Distance

655million km=The Distance Between Saturn And Jupiter Saturn Depends On Jupiter

All planets orbital distances are defined based on their previous neighbor planets orbital distances- the equation is correct and discussed in item no. (III)- Shortly- planet mass has no any effect on this planet orbital distance definition.

Notice

Planet orbital distance definition depends on its neighbor orbital distance this fact is proved by many different methods my equation is one method only of them, all these methods don’t use any planet mass- all planets orbits are defined based on their neighbor planets orbits (item No. III has more proves)

(v)

Also-Newton told-planet motion depends on its mass- means-planet velocity depends on its mass- this also is wrong - I define planet velocity (my 5th equation)- planet velocity is defined by many rules all of them don’t use any planet mass- at all Planet mass has no rule in this planet velocity definition.

The Conclusion

The Sun Doesn’t Produce Any Gravitational Field

4th Problem The Matter Creation And Its Nature Definition

In following we compare between the physics book theory about the matter creation and my theory about it- the discussion contains Two points

I- The Physics Book Theory About The Creation of the Matter (Mass)

  1. The Matter Is Created Independently From Any Outer Motion – means- even if the matter motion is stopped the matter is still found and never be perished (the motion here means the outer motion and not the atoms motions)
  2. The Matter Is Motionless By Nature
  3. The Matter Needs Mass Gravity Force To Cause Its Motion
  4. The Matter Data And Dimensions Are Not Changed By Its Motion
  5. The big bang theory tells planet is created by random creation- for example- Jupiter diameter is created by unknown value and Jupiter is collided many times in its history and these collisions caused Jupiter diameter (and mass) to be decreased- based on that– Jupiter diameter value (142984 km) is found by random process and without any geometrical reason behind- by that- the big bang theory prevent us to use any planet data to discover the creation and motion rules of this planet.
  6. Note – The physicist doesn’t use planet data in forming a theory to explain this planet motion-for example- Jupiter diameter is 142984 km and the physicist has a theory explains Jupiter motion but if Jupiter diameter is changed into 180000 km the theory will have no change because the physicist doesn’t consider Jupiter diameter is a player in its motion- that’s why the big bang theory is wrong because it supposes the change in diameter and mass doesn’t cause a change in motion 
  7. Shortly- the physics book doesn’t tell how the matter is created nor what’s the matter nature- we remember Einstein problem in physics- he told (All researches in particle electromagnetic properties can’t predict this particle behavior in the daily life physics) that shows two different branches of the physics one for the electromagnetism and the other for the mass gravity physics

II- My Theory About The Creation of the matter (mass) –

The Matter Main Features Are: 

  1. The Matter Is Created In Pairs  Means- No Single Matter Is Created -This conclusion depends on Gamma ray experiment -From Gamma ray (1.2 Mev) electron and positron are created- by this experiment- the matter is created in pairs from electromagnetic waves- the produced pair particles motions depend on each other (or related to each other) (notice the creation system is male and female–two complementary matters-that tells the source of energy must be electromagnetic wave)
  2. The matter is created depending on its motion- means- the motion is found before the matter creation- this conclusion depends on my planet diameter equation because planet diameter is created depending on this planet velocity (for example Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)- means–Planet motion is defined before its creation -later explained
  3. Lorentz transformation proves Matter dimensions are effected by high speed motion- also- Lorentz transformation proves the matter and space are created from the same energy for that particle length and distance both are contracted by the same one equation (Lorentz length contraction effect)
  4. The Matter Is Created Depending On Light Motion –

The Discussion Proves These Features Strongly

The Matter Creation Depends On 5 Main Facts  Which Are

  1. Gamma Ray Can Produce Electron And Positron
  2. Lorentz Transformation
  3. My Planet Diameter Equation
  4. The Coherence Of Light (Young Interference) 
  5. Planet Diameter Creation Depends On This Planet Orbit

(Item No. i) Gamma Ray Can Produce Electron And Positron    From Gamma ray (1.2Mev) one electron and one positron are created- I prove the matter is created by this method- means- the matter is created in pairs and no single matter is created

(Item No. ii) Lorentz Transformation

Lorentz transformation tells

If a particle moves by high speed motion (near to speed of light), this particle length would be contracted and its mass would be increased and its time would be dilated

I accept this meaning clearly and find this meaning supports my theory strongly BUT Many physics Books tell the following

(NO Real Change Is Done For Any Particle Data Moves By High Speed Motion But All Changes Are Illusions Of Measurements)-

Means- while a particle is moving by high speed motion and the experiments results show contraction in its length and increasing in its mass and dilation in its time – these changes are just illusions in measurements and the particle itself has no change in any data - tenth of books tell this meaning clearly and with confirmation and the physicist killed Lorentz work and made Lorentz transformation measures illusions and not facts- regardless the empirical proves which supports Lorentz transformation 

I refuse these books idea because

  1. The Physics Is The Measurements Science And What’s Measured Is The Fact
  2. If no real changes are done how the problem of Michelson and Morelly experiment is solved?- also- Why the synchronous events in one frame can’t be synchronous in another (as Einstein stated) where no change is found for any data- the distances are Not contracted nor the time is dilated nor the mass is increased why the events can NOT be synchronous in any frame?  
  3. If the particle own data is measured correctly while it moves by my motion velocity and these measurements are suffered from illusions because the particle moves by high speed motion relative to my motion that means (I’m the universe reference point)
  4. We notice- Lorentz length contraction equation can’t distinguish between particle length and a distance, both can be contracted by the same one equation- that supports my theory tells (Matter And Space Are Created From The Same Energy)–
  5. My planet diameter equation proves planet diameter is created depending on this planet motion and also proves the matter and space are created from the same one energy which supports Lorentz transformation 

NOTICE  

The major importance of Lorentz transformation is

  1. The transformation proves there’s a connection between particle dimensions and its  motion means the motion has effect on particle dimensions definition and by that the matter (mass) can’t be independent because its existence depends on a motion- shortly (The Matter Existence Depends On Its Motion
  2. The matter and space are created from the same energy- because- particle length and the distance both are contracted by the same equation (Lorentz length contraction effect) shortly (Matter And Space Are Created From The Same One Energy) (This theory is proved by my planet diameter equation)

(Item No. iii) My Planet Diameter Equation

My Planet Diameter Equation (v1/v2)= (s/r)= I

v = Planet Velocity                          

r = Planet Diameter

I= Planet Orbital Inclination   

s= Planet Rotation Periods Number In Its Orbital Period

v2, s, r and I are belonged to one planet and v1 is belonged to another planet

The planet (v1) is defined by test the minimum error 

Earth Equation uses Neptune velocity                        

Mars Equation uses Pluto velocity

Jupiter Equation uses the Earth moon velocity      

Saturn Equation uses Mars velocity

Uranus Equation uses Neptune velocity (As Earth)

Neptune Equation uses Saturn velocity

Pluto Equation uses the Earth moon velocity (As Jupiter)

Example  Neptune Equation (89143 /49528) = 9.7/ 5.4 =1.8                  

89143                   = Neptune rotation periods number in Neptune orbital period

49528 km   = Neptune diameter            

9.7 km/s      = Saturn velocity

5.4 km/s      = Neptune velocity             

1.8 degrees= Neptune Orbital Inclination

59800 days = Neptune orbital period (and Neptune rotation period =16.1 hours)

Discussion

(1)

The Equation Concept  Planet diameter should be a function in its orbital distance –otherwise- this planet would be broken by its motion- BUT- the designer can’t create a function has only 2 variables (Planet diameter and its orbital distance)- because– If this planet changes its orbit (orbital distance) its diameter would be broken also because the diameter is a direct function in the orbital distance without any other variables -As A Result- the designer created planet diameter as a function in this planet rotation period and the planet rotation period is created as a function in this planet velocity and the planet velocity is created as a function in this planet orbital distance- by that- the function between Planet diameter and its orbital distance is created but also it contains many variables (rotation period, orbital period and velocity)- by that- if  the Planet changes its orbital distance- this planet orbital period, and velocity and rotation period would be changed but its diameter will be saved

(2)

Matter Definition Based On My Planet Diameter Equation

My equation tells, Planet diameter is created depending on its velocity- for example Neptune diameter is 49528 km because it velocity is 5.4 km/s where the velocity is used in the diameter definition equation- means- Planet motion is defined before this planet creation- how can that be possible? let’s answer in following

  • The original energy was in motion and planet matter is created from this moving original energy and planet matter dimensions are defined by this original energy motion features- after Planet creation, the planet moves with this original energy motion means the planet moves this same motion based on which the planet data and dimensions are created that’s why Planet data is in full harmony with its motion features- that explains how planet diameter is created based on its velocity
  • Shortly- the matter is similar to a muscle in a creature- the muscle dimensions depend on the blood motion- similar to that- the matter dimensions depend on this energy motion from which this matter is created-
  • Also space is similar to the sea of water- and the matter is similar to a whirlpool (vortex) is found on the sea page- the matter creates for itself a distinguished picture different from the space picture and the matter moves by a different velocity from the space motion velocity- as the whirlpool (vortex) on the sea page- it’s created by the sea water but it has a distinguish picture from the sea waves and it moves by a different velocity from the sea waves- that explains how the moving energy can effect on the matter creation data- for example- we have a whirlpool (vortex) its diameter is 2 meters- why does this diameter equal= 2 meters? The diameter is created depends on the water motion velocity, pressure, amount and motion angle and many other features of (the moving water)- the moving water creates this whirlpool with diameter 2 meters and as long as the water motion is not changed this diameter will not be changed also- (notice- The Gravitational Waves Prove The Space Has Motion And Not Static)

NOTICE   Also (No Planet Moves By The Sun Gravity) Newton is wrong, because planet moves by the energy from which this planet is created- as explained here – means– The Matter Is Not Motionless By Nature- The Matter moves with the energy from which this matter is created-

(3)

Matter Existence Depends On Its Motion

Shortly-if the motion is stopped the matter will be perished- again the matter is similar to a muscle in a creature body- if the blood motion is stopped the muscle will be perished- this is the fact- Based on that- Neptune velocity is 5.4 km/s if Neptune stops its motion Neptune diameter and matter will be perished-

The fact I prove is (The Matter Creation Depends On Its Motion) – Lorentz transformation and my planet diameter equation supports this fact strongly 

DEEP DISCUSSION

(4)

The Matter Is Created In Pair And No Single Matter Is Created

Planet velocity is defined based on the rule (v1v2=constant= 322) let’s prove that

322 = 47.4 km/s (Mercury velocities)         x 6.8 km/s  (Uranus velocities)                            

322 = 35 km/s  (Venus velocity)                 x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)                    x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)                x 13.1 km/s (Jupiter velocity)                        

322 = (17.9 km/s)^2 (Ceres velocity)                   (Max error 2%)

The idea is understandable – let’s summarize it in following

(i)

The planets velocities are created complementary one another based on the rule (v1v2=constant= 322) and

(ii)

Planet data is created depending on its velocity- means- planet velocity is the first data in this planet creation and based on the velocity all other data is created- as we see in the planet diameter equation, planet diameter and all creation data is created depending on this planet velocity- means- based on (v1/v2) but planet orbital distance is defined based on  (v1/v2)^2 and planet orbital period is defined based on (v1/v2)^3

Based on this system planet data is created but we know that planet orbital distance is defined before planet creation and based on the orbit, planet velocity is defined and then all data is defined based on the planet velocity-

(iii)

Now the idea is clear- let’s summarize it

The planets velocities are created complementary one another based on the rule (v1v2=322) and planet diameter is created depending on its velocity for that reason planet diameter is created complementary to another planet diameter- let’s prove that

341.7 million km = Jupiter diameter 142984 km          x Pluto diameter 2390 km

341.7 million km = Jupiter radius 71492 km       x Mercury diameter 4879 km (2%)

341.7 million km  = Saturn diameter 120536 km x 4 Mars diameter 6792 km (4%)

341.7 million km = Uranus diameter 51118 km  x Earth radius 6378 km (5%)

341.7 million km = Neptune diameter 49528 km x 2 The Moon diameter 3475 km

Clearly we see the planets diameters are complementary one another- because the matter is created in pairs and no single matter is created

Notice (1)

Suppose the physicist can create a type of single matter which has no complementary can that disprove my theory tells (The Matter Is Created In Pair And No Single Matter Is Created?) NO NEVER

Because- the matter is created from the original energy and the energy uses a system depends on matters in pairs complementary one another-  means any type of matter can’t be used by the original energy will be neglected and useless because the energy uses matters in pairs  

(Item No. v) The Coherence Of Light (Young Interference)

I provide proves tell Gamma Ray and Young experiments are used in the solar planets creation – let’s remember these experiments

(1st Experiment) Gamma ray (1.2 Mev) can produce electron and positron

(2nd Experiment) the coherence of light experiment (Young Interference)

Let’s provide the proves for the using of these two experiments in the planets creation

Gamma Ray Experiment

There are two facts prove this experiment concept is used in the planets creation

First Fact Planet creation data is defined based on its velocity- this fact is proved by my planet diameter equation because planet diameter is created depending on this planet velocity as explained before (Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)-means- Planet velocity is the first data in this planet creation process and based on this velocity all planet creation and motion data is created

Second Fact Planet velocity is complementary one another, which is proved by the rule (v1v2= 322 = constant)- that shows the planets data must be complementary one another as I have proved in the diameters values analysis

Shortly – The planets data are complementary one another (similar to the electron and positron are created from Gamma ray)

The Coherence of light Experiment (Young Interference)

There are two facts prove this experiment concept using in the solar system creation

1st Fact

The planets order is typical for Young interference- if we consider planet diameter is equivalent to the fringe breadth by that the planets order be typical for Young interference where the greatest fringe is in the middle (the greatest planet Jupiter) and the fringes breadth is deceased gradually on both sides

(I Proved Mars Original Orbit Was Between Mercury And Venus- so the original inner planets order was Mercury – Mars – Venus – The Earth) which shows gradual decreasing in diameters- the outer planets diameters also is decreased gradually      

2nd Fact

There’s a coherence of light in the solar system- what does that mean?

Means- while planet orbit has energy of a light beam- another light beam enters this orbit by that there are two light beams in the same orbit- these two light beams create coherence of light- the planets orbits creation explain this fact in details- but here I want to prove this fact by simple direct proof before the planets orbits creation discussion –let’s write this proof here

We have seen that the planets velocities are complementary one another by the rule (v1v2=constant=322) and planet all data is created depending on its velocity- by that the planets diameters also follow this rule where (R1R2= constant) as I have proved in my planet diameter equation

Now let’s ask – can the planets orbits complementary one another? NO

So- how this rule (v1v2=constant= 322) is found?

By the energy reflection- means- the energy is reflected in the solar system and this reflection of energy causes the velocities to be reflected on one another and that produced the rule (v1v2=constant= 322)

We note the planets can’t be reflected on each other because the planets are connected with their orbits- and the energy reflection needs freedom in motion- means- this reflection of the planets velocities are done by effect of the energy reflection- please note- the energy reflection is a proved fact in the solar system- this fact is proved by hundreds of the planets data because the energy reflection cause effects on the planets data- shortly- the planets data is created by effects of the energy reflection-

Here we see the coherence of light is created because the orbits have energy where the space is energy and (Another energy is reflected and moved through all orbits and caused to create the planets data) by that each orbit has two energies together- I prove both energies are light beams-for that the two light beams create a coherence of light

I want to say- there are two facts prove the solar system has coherence of light which are the reflection of energy and the planets order

The planets orbits creation explain this theory in details I discuss it in item no. (**)

NOTICE

Please Note – I proved Mars original orbit was between Mercury and Venus and Mars is migrated to its current orbit behind the Earth- by that the inner planets original order was (Mercury – Mars – Venus – The Earth) here we see planets diameters are decreased gradually from the Earth to Mercury where Jupiter was the planet beside the Earth- means – the planets diameters are decreased gradually from Jupiter to Mercury- and the outer planets – the planets diameters also are decreased gradually- as I explained – if we compare planet diameter with fringe- the planets order be typical to Young interference – but – the order is reflected each other –let’s see that

The inner planets (Mercury – Mars – Venus – The Earth)- the order tells greater diameter necessitates longer orbital distance – but

The outer planets (Jupiter– Saturn– Uranus– Neptune –Pluto)- the order tells greater diameter necessitates shorter distance

Here we see the orders are reflected one another- but in Young interference there’s no reflection- I want to say- the planets orders are reflected because of the sun position- if the sun is not found no reflection will be found- that means- the reflection of energy caused to create the sun in the solar system because the sun creation causes the planets order to be reflected one another- my paper proves the sun is created after all planets creation and motion – and the sun is created by the reflected energy 

(Item No. vi) Planet Diameter Creation Depends On This Planet Orbit

The solar planets matters and their distances are created from one energy and this one energy is provided by one light beam and this light beam moves by speed = 1.16 million km per second (The speed is proved strongly and decisively)

The light (its speed 1.16 million km per second) built the solar system orbits starting from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each other (this fact is proved by my planet orbital distance equation) after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second before the space creation (In Mercury Orbit) and its speed becomes 300000 km/s after the space creation (in Pluto orbit) as result for the energy consumption in the space creation- 

In Pluto orbit - the light could Not move any further to build any more orbits because any additional space creation will consume more energy and that will decrease the light speed to be less than 300000 km/s (the known speed of light) – and – No known light moves by speed less than 300000 km/s – means- the light had no energy to move any further after Pluto orbit- for that- the light returns to its origin point (Mercury orbit) for that the light is reflected with speed (300000 km/s) from Pluto orbit to Mercury orbit passing through the built orbits– no energy is required in this motion for that the light beam moves with speed of light (300000 km/s) till Mercury orbit.

Please note- the light (300000 km/s) is reflected from Pluto to Mercury

The reflection of the light beam (300000 km/s) Caused To Create The Solar Planets

Comments

  • The light (1.16 million km per second) created the orbits with energy means the created orbits have energies- and each planet orbit energy is less than its previous neighbor orbit because the planets velocities are decreased gradually- almost the energy is less by rate 80% because the velocities are rated with (0.8)   
  • Each planet diameter is created based on its orbit energy- the planet is similar to a tree planted in a ground and the planet orbit is this ground- that’s why each planet diameter depends on this planet velocity and orbital inclination- please note Mars diameter equation proves this fact because Mars original orbit was between Mercury and Venus and Mars diameter is created based on this orbit energy and Mars had migrated from its original orbit to its current one behind the Earth but Mars diameter equation still shows Mars original orbital inclination (5.1degrees) while Mars current orbital inclination is 1.9 degrees- Mars diameter is created based on this inclination (5.1 deg) for that this inclination is seen in Mars diameter equation frequently (please review my planet diameter equation)    
  • The Occurrence Of The Coherence Of Light - The light beam (300000 km/s) is reflected and passed through all created orbits- that shows there two light beams are found in the same area (in any orbit)- because in each orbit there’s this orbit energy which is found with the orbit creation by the light (1.16 million km per second) for that we say (Space Is Energy) because any orbit has energy found with its creation- and also the reflected light beam (300000 km/s) passed through all orbits- by that- in any orbit there are two different light beams (two different energies) and these light beams create A Coherence together- 
  • The Amazing Coherence Of Light There’s a major interesting point here-the light beam (300000 km/s) created a coherence with the light 1.16 million km per second! BUT HOW?? because the light 1.16 million km per second is consumed and its energy is used for the space creation and the rest energy is this light beam moves by known speed of light (300000 km/s)!! how can the light beam (300000 km/s) meet the original light beam the 1.16 million km per second to create this coherence of light?
  • Please note- the speed 1.16 million km per second is the major used speed in the solar system data- means- the speed 1.16 million km per second is the secret by which the solar system data can be understood because all data is created as function in this speed-I prove that in the next pages- but this information is written to explain that the light 1.16 million km per second is consumed but its energy still works and causes continuous effect- BUT HOW??   

Let’s write the answer

  • The light (300000 km/s) is reflected to move from Pluto to Mercury (while the original light 1.16 million km per second moved from Mercury to Pluto) means the light (300000 km/s) moved in opposite direction for the motion of the original light 1.16 million km per second- MEANS- the light (300000km/s) moved in the opposite direction of space to reach to Mercury- BUT NOT ONLY- in fact- the light (300000 km/s) moved also in the opposite direction OF TIME and moved into its own past – and in past – this light beam (300000 km/s) met the original light beam 1.16 million km per second – and in past – the two light beams created the coherence of light and then this coherence of light results have effects on our present time-
  • Shortly- the coherence of light in the solar system proves the light beam (300000 km/s) moved on the time-axis and this is an empirical proof for the time-axis motion where the light can move simply on the time axis
  • Notice – this motion can help us to create the time machine- because- if the light can move into the past that means we may use this motion and take photos of the past events and this will be our time machine which can go into the past and make photos and videos for the past events – even the events since thousands of years we can see in videos or in photos – this motion of light can give us a great option to create our machine of time      
  • Notice  the original light beam 1.16 million km per second can not move into the future to meet the light beam (300000 km/s) because in future the original light 1.16 million km per second is NOT found because its energy is consumed in the space creation- but- the light beam (300000km/s) can move into the past because in the past the light beam (300000 km/s) was part in the original light beam 1.16 million km per second and by that the two light beams be found in the same time  
  • Notice – we can not travel ourselves into the past- because planet diameter is created depending on its velocity- as proved by my planet diameter equation- means- the matter is created depending on its motion velocity- and the velocity is a motion in defined direction- the light is free in motion and doesn’t forced to move in any direction for that the light has this option to move on the time axis but the matter is created depending on a motion in defined direction (no freedom in motion) for that the matter can’t move on the time axis because the motion force the matter to move in a defined direction – the matter moved just to the future– and the matter can’t move into the past-  
  • Planet Creation Machine Please note–we see the coherence of light is done by the two light beams 300000 km/s and 1.16 million km per second (because the light beam 300000 km/s can reach to the light 1.16 million km per second by moving into its past)- shortly – here we have 2 light beams in any orbit- and these two light beams cause two motions – we can imagine these two motions are perpendicular on each other – this perpendicular motions create a wave and planet is created as a wave (Particle is a wave also)- that explains how the planets are created 
  • Please note-  The reflection of energy is very effective in the solar planets data because the reflection of energy caused the planets to be created- the matter can’t be created by the energy of any orbit alone but the reflection of energy adds second energy inside each orbit- by that- two energies are found in any orbit (two light beams) by these two light beams the light coherence is created and also the planets are created as waves-that explains why the planets data prove the reflection of energy because the planets are created by this energy reflection- as when we plant a tree we need a ground and we need seeds to be put in this ground- two players- the planets are created by two energies (two light beams coherence) and for that the planets velocities are defined based on the two speeds (300000 km/s) and (1.16 million km per second) as planet velocity definition proves.
  • Please note  the Matter Is Created In Pairs (as electron and positron from Gamma rays 1.2 Mev) – this is the main system of creation but -In planets creation the rule is used with some complex method- the complementary is found for the planets velocities and the planets data is created depending on these velocities- the same concept but the method is more complex- this similar to the creature creation- the cell reproduction is done by split the cell into two new cells- but in higher creatures the reproduction use more complex methods but the cell method is still the base of these complex methods  
  • Please note  the previous analysis tries to conclude how the planet matter is created – I put all available facts to reach to this conclusion- the matter real mechanism may be still not clear but many provided facts help to reach to this mechanism- also- we know the main concept behind the matter creation which is (The Matter Is Created In Pairs And Not Single Matter Is Created)
  • This Concept Is Proved Strongly And Clearly By The Gamma Rays Experiment And The Planets Data

 (Item No. vii) The Proves Of The Light Speed 1.16 million km per second

THE SPEED PROVES

In following I prove the speed 1.16 million km per second is found

The paper provides many powerful proves – but - here I refer to 4 proves only

(1st Proof)

Planet Velocity Analysis proves the speed 1.16 million km per second

Data

322 = 47.4 km/s (Mercury velocities)  x 6.8 km/s  (Uranus velocities)                         

322 = 35 km/s  (Venus velocity)       x 4.7 km/s (Pluto velocity) x 2                      

322 = 29.8 km/s (the Earth velocity)          x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)       x 13.1 km/s (Jupiter velocity)                        

322 = (17.9 km/s)^2 (Ceres velocity)                               (Max error 2%)

Discussion

This is one rule used to define planet velocity- we know this rule (v1v2 = constant =322) – other rules are discussed in planet velocity definition- here we ask only

Why the constant is 322?? Because 1160000 seconds = 3600 x 322 hours

Means – for example

Mercury (47.4 km/s) moves in 6.8 hours a distance 1.16 million km – and

Uranus (6.8 km/s) moves in 47.4 hours a distance 1.16 million km-

Means- the light moves 1.16 million km but we see it as 1160000 seconds and based on this period the constant 322 hours is defined and based on this constant the planets velocities are defined- means- the planets velocities are defined as functions in the speed 1.16 million km per second

(2nd Proof) the planets orbital circumferences total is defined by light speed 1.16 million km per second- let’s prove that 

100733 million km = 86400 seconds x 1160000 km/s

100733 million km = The Planets Orbital Circumferences Total

86400 seconds       = The solar day

Means- light its speed 1.16 million km per second passes in a solar day a distance = 100733 million km = The Planets Orbital Circumferences Total

The planets data analysis proves that the solar day is the major period of time in the solar system- that because- all planets rotation periods are defined based on it- the paper proves this fact strongly

 (3rd Proof)

The planets orbits and orbital distances are created from the energy of the light beam its speed is 1.16 million km per second- for that- this speed is registered in the distances data – let’s prove that in following

Example

778.6 million km (Jupiter orbital distance) = 1160000 km/s x 671 seconds

721 million km (Jupiter Mercury distance) = 1160000 km/s x 629 seconds

Where

671 million km = Jupiter Venus Distance

629 million km = Jupiter Earth Distance

This example tells that

The light (its speed 1.16 million km per second) created the distances based on each other- means

The light uses 671 million km (Jupiter Venus Distance) as a period of time 671 seconds to pass the distance 778.6 million km (Jupiter Orbital Distance)   

Also -the light uses 629 million km (Jupiter Earth Distance) as a period of time 629 seconds to pass the distance 721 million km (Jupiter Mercury Distance)   

By this method the light (1.16 million km per second) creates the distances based on each other- means – the distances be created in one network and by one design

the previous data is example for so many other distances let’s see them in following

(778.6 / 671)= (721/629) = (629/551)= (2x551/940)= (4900/4188) = (5906/5127)= (5127/4437) = (4345/3717)= 1.16

Where

778.6 million km = Jupiter Orbital Distance 

721 million km    = Jupiter Mercury Distance 

671 million km    = Jupiter Venus Distance 

629 million km    = Jupiter Earth Distance 

551 million km    = Jupiter Mars Distance 

940 million km    = Earth Orbital Circumference

4188 million km  = 2 x 2094  million km (Jupiter Uranus Distance)

4900 million km  = Jupiter Orbital Circumference

5906 million km  = Pluto Orbital Distance

5127 million km  = Pluto Jupiter Distance

4437 million km  = Mercury Neptune Distance

4345 million km  = The Earth Neptune Distance

3717 million km  = Jupiter Neptune Distance

The paper provides so many other powerful proves for the speed 1.16 million km

Notice

 (1.16/0.3) x 2π = 24.3

The equation tells, because the solar system is created by light beam its speed 1.16million km per second with its other speed 300000 km/s

For that - the space is created in curved lines (2π) and the time is created based on the solar day (24 hours)- that explains why the planets orbital circumferences total depends on the solar day period

(4th Proof)

300000 = (205.8)^2 x 7.1 where

The 9 planets velocities total 176 km/s and I add the Earth moon velocity 29.8 km/s the total be 205.8 km/s - the unified wave velocity (205.8 km/s)

7.1 is Lorentz length contraction effect produced by speed 99% of speed of light-

Shortly- the reflection of energy causes to square the wave velocity for that the unified wave velocity (205.8 km/s) is squared by the energy reflection

Now (205.8 km/s)^2 = 42354

The rate 7.1 causes to increase the distance from (42354 km) to (42354 x 7.1= 300000 km)- note-although 7.1 is Lorentz length contraction rate but it increases the distances in place of the contraction effect because the reflection of energy causes to reflect the geometrical effects-

shortly the equation (300000=(205.8)^ x 7.1) proves the planets velocities are defined as function in the known speed of light (300000 km/s)   

that proves the planets velocities are defined based on the two speeds of light –the known speed of light 300000 km/s and the original speed of light 1.16 million km per second.

NOTICE

Lorentz length contraction effect for a velocity 99% of speed of light (297000 km/s) is (7.1) as seen in the equation but the solar system uses this rate with modification

(7.1/100)+ 1 = 1.0725

And this final rate (1.0725) controls 40% of all planets data (distances, periods, axial tilts and other data)- this effect is a proof for the motion by high velocity because this rate (1.0725) controls 40% of all data in the solar system and no explanation except Lorentz length contraction effect- more proves are in (Item No. 5-6 Can Relativistic Effects Be Found In The Solar System?) (CONT)

Gerges Francis Tawdrous +201022532292

Physics Department-  Physics & Mathematics  Faculty 

Peoples’ Friendship university of Russia – Moscow  

Curriculum Vitae                 https://www.academia.edu/s/b88b0ecb7c

E-mail                            mrwaheid@gmail.com, mrwaheid1@yahoo.com

                                      gergesgerges@yandex.ru                  

ORCID                          https://orcid.org/0000-0002-1041-7147

Facebook                       https://www.facebook.com/gergis.tawadrous

VK                                 https://vk.com/id696655587

Tumblr                           https://www.tumblr.com/blog/itsgerges 

Researcherid                       https://publons.com/researcher/3510834/gerges-tawadrous/

Google                                        https://scholar.google.com/citations?user=2Y4ZdTUAAAAJ&hl=en

Livejournal                     https://gerges2022.livejournal.com/profile

Pocket                                                                    https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar

box                                        https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv

Academia                       https://rudn.academia.edu/GergesTawadrous

List of publications        http://vixra.org/author/gerges_francis_tawdrous

Slideshare                            https://www.slideshare.net/Gergesfrancis

Text
draegerit
draegerit

Open Roberta #2 - LED programmieren

Open Roberta #2 - LED programmieren

In diesem Beitrag möchte ich dir zeigen, wie du in Open Roberta eine LED konfigurierst und programmierst.

Im ersten Beitrag Grafische Programmierung mit Open Roberta habe ich dir bereits gezeigt, wie du Open Roberta konfigurierst und den Open Roberta Connector einrichtest, damit du deinen Mikrocontroller mit der Webanwendung programmieren kannst. Solltest du dieses also bisher nicht getan haben, so schaue doch zunächst in diesem Beitrag vorbei.

Benötigte Ressourcen


Wenn du die Inhalte aus diesem Beitrag nachbauen / programmieren möchtest, dann benötigst du:
- einen Arduino UNO*,
- ein USB-Datenkabel*,
- ein paar LEDs*, 5 mm, verschiedene Farben,
- entsprechend viele 220 Ohm Vorwiderstände*,
- ein 400 Pin Breadboard*,
- ein paar Breadboardkabel*, männlich - männlich
Hinweis von mir: Die mit einem Sternchen (*) markierten Links sind Affiliate-Links. Wenn du über diese Links einkaufst, erhalte ich eine kleine Provision, die dazu beiträgt, diesen Blog zu unterstützen. Der Preis für dich bleibt dabei unverändert. Vielen Dank für deine Unterstützung!

Aufbau einer Leuchtdiode (LED)


Eine LED ist ein Bauteil, welcher der Strom in einer bestimmten Richtung durchlässt (von der Anode (+) über Kathode (-)) und dabei eine Spannung x (abhängig von der LED) dabei abfällt.
Aufbau einer LED
Aufbau einer LED
Du bekommst die LEDs in diversen Farben, Formen und Helligkeiten.

Aufbau der Schaltung am Arduino UNO


Eine LED benötigt in der Regel einen Vorwiderstand, dieser ist abhängig von der Spannung und der LED. Jedoch hat sich etabliert einen 220 Ohm Vorwiderstand am Arduino einzusetzen. Damit kannst du sämtliche Farben und Größen anschließen, ohne deine LEDs oder sogar den Mikrocontroller zu beschädigen.
Die LED können wir an den digitalen Pins D2 bis D13 anschließen, die Pins D0 & D1 sind für die serielle Kommunikation belegt und somit müsstest du bevor du dein Programm hochladen kannst immer die Verbindung dieser Pins trennen.
Anschluss einer LED mit Vorwiderstand an einen Arduino UNO
Anschluss einer LED mit Vorwiderstand an einen Arduino UNO

Programmieren einer LED im Open Roberta Lab


Im nachfolgenden YouTube-Video von meinem Kanal zeige ich dir, wie du eine Leuchtdiode an den Mikrocontroller Arduino UNO anschließt und im Open Roberta Lab programmierst. Zusätzlich gehe ich darauf ein, wie du einen Wechselblinker mit zwei LEDs konfigurierst und programmierst.
https://youtu.be/LqY-po_tbzo

Ampelschaltung programmieren


Mit diesem Wissen, wie man eine LED am Arduino per Open Roberta programmiert, können wir nun eine Ampelschaltung erstellen.
Dazu benötigen wir:
- eine rote, 5 mm, LED*,
- eine gelbe, 5 mm LED*,
- eine grüne, 5 mm LED*,
- drei Vorwiderstände mit 220 Ohm*,
- drei farbige Breadboardkabel*, (orange, gelb, grün), männlich - männlich, 10 cm
- drei weiße Breadboardkabel*, männlich - männlich, 10 cm, sowie
- ein 400 Pin Breadboard*
Du bekommst auf ebay.de auch ein kleines, fertiges Ampelmodul* mit 8 mm LEDs.
10 mm LEDs & Ampel-Modul
10 mm LEDs & Ampel-Modul
Hier benötigst du keine zusätzlichen Vorwiderstände, da diese bereits auf der Platine als SMD Bauteile angelötet sind. Somit benötigst du für dieses Modul nur 3 farbige Breadboardkabel und ein weißes für GND / die Minusleitung.
Schaltung am Arduino UNO
Die Ampelschaltung wird wie folgt an den Arduino UNO angeschlossen.

Ampelschaltung nach §37 Abs.2 StVO
In Deutschland ist alles durch Gesetze und Verordnungen geregelt und natürlich auch die einzelnen Ampelphasen. In der Straßenverkehrsordnung §37 Absatz 2 findest du erläutert (in gutem Beamtendeutsch) wie die einzelnen Phasen sind.
Die nachfolgende Grafik zeigt dir wie 4 Phasen an.
Wechsellichtzeichen nach §37 Abs.2 StVO
Wechsellichtzeichen nach §37 Abs.2 StVO

Programmieren der Ampelschaltung im Open Roberta Lab


Zuvor habe ich dir gezeigt, wie eine LED programmiert wurde, die drei LEDs werden nun in die Phasen Grün, Gelb, Rot und Rot-Gelb aufgeteilt.


Im nachfolgenden YouTube-Video erläutere ich dir im Detail, wie du dieses kleine Programm erstellst.
https://youtu.be/fWoEHSTeTZw

Read the full article

Text
itsgerges
itsgerges


Best Regards

The Sun Is Created Based On The Planets Motions (Revised 2)

or

or

or

My Research Presentation

I- Research Methodology 

II- Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition

III- My 5 Equations 

(1st equation) Planet orbital distance equation- the equation proves planet orbital distance is defined based on its neighbor orbital distance and no planet mass is used for this definition- Newton is wrong-

(4th equation) Planet diameter equation- the equation proves planet diameter is created based on a geometrical rule (NO Random Creation- the big bang theory is wrong) -also the equation proves the matter is created in pairs (as electron and positron are produced by Gamma ray 1.2 Mev)

(5th equation) Planet velocity equation- the equation proves planet mass has no effect on this planet velocity definition

IV- The Research Discovery

The Gravitational Waves Are Produced By The Planets Motions Energies And Not By The Gravitational Field- Moreover- There’s No Gravitational Field

V- The Gravitational Waves Reflection Analysis  

The Gravitational Waves Reflection Proves The Waves Are Produced By The Planets Motions Energies

VI- The Research Hypothesis

The Sun Is Not Doing Nuclear Fusion To Produce Its Rays- Instead- The Sun Rays Are Produced By The Gravitational Waves Motions Energies- And The Gravitational Waves Are Produced By The Planets Motions Energies- Means- The Sun Rays Is Created By The Planets Motions Energies Total- Shortly- The Sun Is A Phenomenon Created After All Planets Creation And Motion Because The Sun Is Created By The Planets Motions Energies. 

That explains why the sun corona temperature is 5 million Kelvin but the sun surface temperature is 5800 Kelvin- because the energy is not produced from the sun body but the energy comes from out of the sun body for that the energy out of the sun is so greater than the energy inside the sun (the energy comes from the gravitational waves which are produced by the planets motions energies total)    

The Hypothesis Explanation

The Sun Rays Creation Process

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

This new article tells the gravitational waves can move by speed of light and can produce a light beam- I claim The Sun Rays are produced based on this method by the gravitational waves motions and not by the sun nuclear fusion process- also –No star rays is produced by the nuclear fusion process but all rays are created by the gravitational waves motions energies as the article states.  

Here we have four questions to answer

  1. How can the gravitational waves be produced by the planets motions energies?
  2. How can the gravitational waves move by speed of light?
  3. How can the gravitational waves motions produce a light beam?
  4. Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

1st Question

How Can The Gravitational Waves Be Produced By Planets Motions Energies?

Planet motion produces energy (½ mv^2) but where’s this motion energy? Planet can NOT store its motion energy inside its body because It would raise its temperature- and no planet temperature is raised by its motion- logically- planet motion energy is stored in the space in moving waves –Means- planet motion in space is similar to a fish swimming in the sea- the fish swimming creates waves in the sea and similar to that - planet motion energy creates waves in the space- and - fish swims because it hits the water by its body and that creates waves in the water- and these waves move by a velocity equal the fish velocity because of the reaction force- similar to that- Planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal this planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by equal velocity (47.4 km/s)

Shortly- the planets move and their motions create waves in the space and each wave moves by velocity equal its planet velocity

AND the planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)

AND  in Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity= 205.8 km/s where The 9 planets velocities total=176 km/s but I add the Earth moon velocity (29.8 km/s) that makes the total to be 205.8 km/s – I add the moon velocity because the energy is stored finally in the moon orbit-

Note- The moon and the Earth revolve around the sun together for that the moon velocity is considered equal the Earth velocity relative to (the sun) –

NOW the unified wave moves by (205.8 km/s) is the gravitational wave-

The scientists discovered these waves in the space and they called them (gravitational waves) supposing these waves are produced by the sun gravitational field- BUT Planet motion energy must be stored in the space as moving waves – as proved by the previous analysis -means- even if There’s NO Gravitational field at all there’s a strong reason to find waves in the space because these waves are created by the planets motions energies

Note- I refute the sun gravitational field theory- and prove the sun has no massive gravity and also NO planet moves by the sun gravity

The Conclusion

The Unified Wave Its Velocity 205.8 Km/S Is The Gravitational Wave

Notice - the new article still believes that the gravitational waves are produced by the gravitational field- I refuse this idea and prove the waves are produced by the planets motions energies but I need the article because it tells the waves can move by speed of light and can produce the light beam where I suppose the sun rays is created by this method 

The Answer Of The Questions No. (2) And No. (3) 

2ndQuestion   How Can The Gravitational Waves Move By Speed Of Light? AND

3rdQuestion How Can The Gravitational Waves Motions Produce A Light Beam?

What Do We Have?

We have One unified wave moves by velocity 205.8 km/s

What Do We Need?

We need to accelerate the unified wave to move by speed of light (C=300000 km/s) and this wave should produce (A Light Beam)

We know the light beam is produced from (C^2= Squared Speed Of Light)

Technically- How To Solve This Problem?

We Need To Square The Wave Velocity

Let’s see my hypothesis (The Gravitational Waves Reflection Causes To Square The Wave Velocity) - let’s see if this hypothesis can solve the problem

(a)

(205.8)^2 x 7.1 = 300000 km/s = C = (speed of light)

Where

205.8 km/s= the velocity of the unified wave (the gravitational wave)

7.1 is Lorentz length contraction effect rate for speed (0.99 C)

Let’s discuss the equation

The unified wave moves by (205.8 km/s) – and this wave is reflected- the wave reflection causes to square its velocity – for that the velocity (205.8 km/s) is squared and be (205.8 km/s)^2= 42354 km/s

But Lorentz length contraction effect rate causes to increase the distance 42354 km to be (42354 x 7.1 = 300000 km) – means- the speed 42354 km/s is accelerated to be 300000 km/s = C=speed of light by Lorentz length contraction effect – we understand the rate 7.1 causes to contract the distances but here the rate increases the distances because the wave reflection causes to reflect the geometrical effects.

Conclusion No. (1)

The Wave Reflection Causes To accelerate the unified wave from (205.8 km/s) to move by speed of light (C=300000 km/s)

(b)

Now we have a gravitational wave moves by speed of light (C=300000 km/s)

This wave is reflected one more time

The gravitational wave reflection causes to square its speed by that – the wave speed was = speed of light (C=300000 km/s) before the reflection and after the reflection this speed will be (C^2=Squared Speed Of Light)

The light beam is produced from this value (C^2=Squared Speed Of Light)

Now we know how the unified wave (205.8 km/s) can be accelerated to move by speed of light (C=300000 km/s) and how this wave can produce a light beam

Conclusion No. (2)

The Gravitational Wave Reflection Causes To Square The Wave Velocity

This is the main useful result from the wave reflection- because without the squaring of the wave velocity no acceleration can be done for the wave and by that the gravitational wave can’t move by speed of light Nor produce any light beam

Notice (1)

The waves are reflected three times in the solar system and the abstract provides strong proves for these reflections and more proves are found in the paper- the waves reflection causes basic changes in planets data and I suppose – the waves reflection causes also to square the waves velocity

Notice (2)

The rate 7.1 is produced by Lorentz length contraction effect as a result for motion by speed (.99C= 297000 km/s)- I proved this fact in (Item no. 5-6 Can Relativistic Effects Be Found In The Solar System?)

THE SUN POINT CREATION

The sun point of space has geometrical features enable to produce the sun rays and that means – the sun rays can be created only in the sun corona and far from the sun NO light beam can be created – let’s see the sun geometrical features in following

(i)

The Sun Point Is A Stationary Point Its Velocity 1 km/s = Zero Approximately

This is important feature – Because

All motions are done relative to the sun point of space – for example- Pluto velocity is 4.7 km/s –means- Pluto moves by 4.7 km/s relative to the sun point of space – Shortly- the whole solar system is in motion (space and planets are in motion) but the sun point is stationary (static point moves by velocity 1 km/s = Zero approximately) Means- the solar system is similar to a sea of water and the sun is similar to a vortex or whirlpool found on the sea page – the vortex doesn’t move with the sea waves -Shortly- the sun point of space is the stationary point in the solar system and all motions are done relative to the sun point of space-

Example – Venus moves by 35 km/s that means Venus moves by 35 km/s relative to the sun point of space – also we know Venus motion produces energy and this energy creates waves in the space and these waves move by velocity 35 km/s – means- these waves move by 35 km/s relative to the sun point of space-

(ii)

Why Is It Necessary For The Sun Point To Be Stationary Point? Because

1- The Gravitational Wave (Unified Wave) Moves By Speed Of Light Relative To The Sun

2- The Gravitational Wave Can NOT Move By Speed Greater Than Speed Of light

3- The Wave Reflection Causes To Square The Different Speed Between The Gravitational Wave Speed And The Sun Point Motion Speed

4- If The Different Speed Is Less Than Speed Of Light (C=300000 Km/S) The Speed Squaring Process Will Never Produce The Value (C^2= Squared Speed Of Light) – means- No Light Beam Can Be Created

Now we see the necessity to make the sun point as stationary point moves by  (Zero approximately =1 km/s) – because – if the sun point moves by any higher speed than (1 km/s) the different speed will be less than speed of light and the squared value will be less than (C^2) and No light beam can be created

Now let’s ask- while the space is in motion as the sea of water – how can this stationary point be created? let’s answer in following

(iii)

The planets were created before the sun creation and the planets revolve around a point in space (any point in space) the revolution creates two velocities on both sides of the revolution- the two velocities are equal in value opposite in direction- the total be Zero- means- the revolution motion creates a stationary point in the revolution center-

By That -the sun point of space is created as a stationary point- and the sun point is the only stationary point in the solar system- for that all motions are done relative to the sun point of space-

4th Question

Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays? the question is logical because

Planet motion energy (½ mv^2) is so small energy and the sun rays energy is massive energy -for that- It’s Logical Question To Know How Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

(1)

The secret is the rates of time using-

The planets motions use different rates of time- by that- the planets motions energies can be accumulated during long period of time to produce massive energy sufficient to produce the sun rays – let’s give examples

Example No. (1)

(One Solar Day Of The Sun Clock = 365.25 Solar Days Of The Earth Clock)

By this rate of time– The Earth motion energy for one complete year can be used by the sun in one solar day – in fact- the solar planets motions energies total during one complete year (365.25 solar days) is accumulated and stored in one energy and be used by the sun motion on one solar day that causes to accumulate massive energy to be used (notice 1461 days = 365+365+365+366) 

Example No. (2)

(One Second Of The Sun Clock=1461Seconds Of The Gravitational Wave Clock)

We remember the unified wave (the gravitational wave) moves by 205.8 km/s -And – the gravitational wave moves in 1461 seconds a distance = 300000 km -BUT the Sun clock doesn’t see this period 1461 seconds but sees only the period (ONE SECOND) – means-

The distance 300000 km is passed in (ONE SECOND)only for the sun clockThat causes the gravitational wave to move by speed of light (C=300000 km/s) relative to The Sun – (the rate of time using and effect is explained in details in item no VII)

VII- The Solar System Description Refutation

(The Sun Is The Planets Motions Result But The Description Supposes The Sun Is The Planets Motions Reason) and (The Matter Is Created Depending On Its Motion But The Description Supposes The Matter Is Created Independently From Any Motion)

VIII – The Planets Motions Use Different Rates Of Time

IX  - The Physicist Wrong Vision Proves

X   - The Refutations Of Many Theories In The Physics Book 

XI - The Proves For My Theory

(There’s A Light Beam Moves By Speed 1.16 Million Km Per Second)

XII-The Solar System History And Neptune Orbit Creation

First Item - Research Methodology

I use the planets data analysis to discover the planets creation and motion facts–

In details- I try to discover how the planet get its data- for example – why Jupiter diameter is 142984 km? why Neptune axel tilt is 28.3 deg? why Pluto orbital period is 90560 days? This method helps greatly to discover the solar system facts let’s provide two examples to explain how this method works

Example No. (1)

Why Is The Moon Orbital Apogee Radius = 406000 Km?

The moon daily displacement =88000 km and during 29.53 days (the moon day period) the displacements total be = 2.598 million km = 2π x 413600 km

The data tells us the moon orbital apogee radius should be 413600 km and also it tells, because the moon daily displacement (88000 km) is so long, the moon should revolve around the Earth through this apogee orbit its radius (413600 km) only and can’t revolve around the Earth through any more near orbit…

Not Facts

The moon orbital apogee radius =406000 km only and the moon revolves around the Earth through near orbits and can reach to perigee radius (363000 km). 

How Can The Moon Do That?

 

The intelligent moon creates an angle (θ) between its motion direction and its orbit horizontal level by that the real displacement (L) through the orbit be less than (88000 km) because it be (L = 88000 km cos θ), as a result the total displacements be less than (2.598 million km) and that makes the moon orbital apogee radius to be decreased from 413600 km to 406000 km.

We should pay attention for the angle (θ), because this angle controls the moon motion features – where- with the angle (θ) increasing the real displacement (L) be shorter and the moon can revolve around the Earth through more near orbits – but –with the angle (θ) deceasing the real displacement (L) be longer and that pushes the moon far from the Earth to more far orbits- The moon orbital motion equation depends on this angle (θ) it tells θ1 = θ0 +1.7 deg where (θ1) = today angle and (θ0) =yesterday angle and 1.7 deg is used as the moon motion degrees per solar day for the equation

Example No. (2)

Can Mars Itself Cause The Earth Moon Creation?

Giant-impact hypothesis tells (NO) – but let’s see the planets data analysis   

I Suppose - Mars Original Orbit Was Between Mercury And Venus

The order (Mercury – Mars – Venus – Earth) shows correct order in planets diameters (and masses), and orbital distances - BUT – Mars had migrated from its original orbit (between Mercury and Venus) to its current one (227.9 million km) and Mars had collided with Venus and then with the Earth in its migration motion – and Mars itself has caused the Earth moon creation- My Mars Migration Theory answers many left questions by Giant-Impact Hypothesis – for example -

Why Does Venus Have No Moon? Mars had migrated from its original orbit (between Mercury and Venus) – and moved to its current orbit (227.9 million km) – BUT- Mars had moved by a force – and then Mars had collided with Venus –and Mars had pushed ALL DEBRIS with it in its Motion Direction because of its strong motion - Venus had found no debris around and for that Venus couldn’t create its moon –But – The Earth mass is greater than Venus’ and the debris lost some of their momentum for that the Earth could attracted some debris and created its moon-Mars has 2 moons and this fact supports my theory because Mars with small mass could attract two  moons because the debris were around it while Venus has greater mass but couldn’t create its own moon because the debris are moved with Mars motion- the rest debris are attracted by Jupiter gravity and created the asteroid belt 

Shortly

The planet data analysis compares between the theory and the planets data to see if there’s harmony between them and if the data logical analysis supports the theory 

Second Item - Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition 

1stProblem The Physicist wrong Vision Contradicts The Nature System 

The Physicist Vision

The physicist supposes there’s (a unit of building)- by that- the physicist sees the matter (mass) as a wall and this wall is consisted of bricks (small similar units) and the physicist searches for this (unit of building)–

For that the physicist divided the matter and found the particles and then the particle is divided into Molecules and the Molecule is divided into atoms and the atom is divided into nucleus and electron moves around and the nucleus is divided into proton and Neutron- and the proton is divided into quarks …etc

The physicist searches for the building unit- for that he divides anything to reach to this building unit- 

The Nature System Vision

The Nature designer aims to create INTEGRATION- as the marriage– male and female- For that- the matter is created complementary one another-means- The Matter Is Created In Pairs (as Gamma ray 1.2 Mev produces electron and positron)

No building unit- AND

I want to show how the physicist causes fatal error for the research method while the physicist divides the elements (from matter to particle to molecule to atom to proton to quarks …etc) this division from out into inner till reach to very small unit which the physicist considered the building unit – that causes to destroy the geometrical design of the integration process- Shortly- the physicist sees a universe (never be created by the designer)- while the designer created the integration is a goal and created tools to perform this integration the physicist destroyed the integration tools while he searched for the building unit which is not found at all.

NOTICE

Another point shows the physicist wrong vision is (The Planet Motion)

While the solar planets move as gears in one machine and all planets motions are unified into one unified general motion- means- all planets motions are unified and produce one result only (one unified motion)- the physicist supposes each planet motion is independent-by that- in place of one machine of gears moves and produces one unified motion (one result) the physicist told us each planet motion is independent and No unification is found for the planets motions –here – one more time the physicist sees very different picture from the real one- in place of one hand has five fingers the physicist sees five independent moving fingers

2ndProblem  Planet Motion Energy Definition

Let’s remember this question where’s Planet Motion Energy?

We agreed planet motion produces energy (½ mv^2) and this energy must be stored in the space as moving waves because planet can NOT store its motion energy inside its body otherwise this planet temperature would be raised- that tells- the space has moving waves produced by planet motion energy

Also –we agreed- planet motion energy creates waves in the space and these waves move by velocity equal this planet velocity-

Shortly- for example- Mercury (47.4 km/s) moves in the space and its motion energy produces waves in the space and these waves move by velocity (47.4 km/s) –this analysis creates 3 difficulties for the physics book let’s see them

First Difficulty

This analysis tells the space has moving waves are produced by planets motions energies– But- the scientists discovered these waves and they told these waves are produced by the gravitational field- and they called them (gravitational waves)- I prove the sun doesn’t produce a gravitational field and has no massive gravity and no planet moves by the sun gravity – But- here we need to answer (from what source these waves are produced?) because planet motion energy analysis forces us to accept that these waves are produced by the planets motions energies

Here – we need to answer (from what source these waves are produced?)

I prove the gravitational waves are produced by the planets motions energies and not by any gravitational field.

I provided two major proves

(1st proof) I proves there’s no gravitational field and the sun has no massive gravity and no planet moves by the sun gravity

(2nd proof) the gravitational waves reflection proves the waves are produced by the planets motions energies because the waves reflection causes effects on the planets data

Second Difficulty

Now we know planet motion energy is stored in the space as moving waves (the gravitational waves)- But- the planets move since long period of time means the planets motions should cause to store massive motion energy in space during this long period- Now -where’s this stored massive energy? also the energy can NOT be stored in space forever- so what’s happening for this stored massive energy? I prove the sun rays are created from this stored massive energy and not from the sun nuclear fusion process- this is my research hypothesis – in all cases we should know how this stored massive energy be used because this massive energy can cause risk for the solar system stability.

Third Difficulty

Newton Mass gravity definition is disproved by planet motion energy

Because

Suppose the moon moves by the Earth mass gravity and the moon motion produces energy (½ mv^2) now let’s ask- From What Source The Moon Motion Energy Is Provided? What’s the moon motion reason? The mass gravity- means- the mass should provide the motion energy- means – if The moon moves by the Earth gravity that necessitates to decrease the masses of the Earth and the moon by the motion energy- here’s the problem- Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass-  this decrease is done because of the motion energy

The analysis tells us–the physicist supposes planet motion produces NO energy this is the only one solution for the problems created by the physicist neglect to observe planet motion energy-

3rdProblem Mass Gravity Force Analysis

The Refutation Of The Sun Gravitational Field

The Sun Doesn’t Produce A Gravitational Field Nor Has Massive Gravity – let’s prove that in following

(i)

The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time- 

(ii)

No Planet Moves By The Sun Gravity–Newton is wrong- because- Planet moves by the force caused its creation- means- planet creation and motion is done by one force only- otherwise this planet would be broken if two forces have effects on it-

Suppose planet is created (by any force) and the sun gravity attracted this planet and forced it to revolve around the sun by the sun gravity (as Newton imagined) that would force this planet to move against its internal structure and that will cause this planet to be broken-

Imagine a human is forced to walk on his hands in place of his legs- this human will be dead by this motion-

That’s why the planet creation and motion is done by one force only- Newton mistake is that he didn’t know how the planet is created- and he considered - the creation force is a historical force has no effect on the current motion- Shortly-the sun didn’t cause to create any planet and the sun doesn’t cause any planet to move

(iii)

We agreed that, mass gravity force can NOT cause any motion- again Newton is wrong- because –any motion will produce energy- suppose the moon moves by the Earth mass gravity- the moon motion produces energy- and – from what source this energy is provided? From the masses of the Earth and the moon –here’s the problem  

Where Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass

BUT Mass gravity is a fact - the mass gravity creates a bond between two masses (The Earth and the moon are bond by their masses gravity ) if some outer force causes the Earth to move the moon will move with the Earth and in this case the outer force will provide the motion energy for the Earth and the moon.

(iv)

The planets order contradicts the gravitation equation- for example- Jupiter the greatest mass is not the most near planet to the sun- when we asked the physicist told us this problem is done by (the planets initial conditions)- all these are wrong- planet orbital distance does NOT depend on the sun mass nor on this planet mass- planet orbital distance depends on its neighbor planet orbital distance – my equation proves this fact- let’s see it

Planet orbital distance equation (my 1st equation)

d^2= 4do (d-do)

where d=planet orbital distance

do= its neighbor orbital distance

Example (1) Venus orbital distance (108.2)^2 = 4 x 57.9 x (50.3)                             

d= 108.2 million km = Venus Orbital Distance       d0= 57.9 million km  = Mercury Orbital Distance

50.3million km=The Distance Between Venus And Mercury  Venus Depends On Mercury

Example (2) Saturn orbital distance (1433)^2= 4 x 778.6 x 655

d= 1433 million km    = Saturn Orbital Distance     d0= 778.6 million km  = Jupiter Orbital Distance

655million km=The Distance Between Saturn And Jupiter Saturn Depends On Jupiter

All planets orbital distances are defined based on their previous neighbor planets orbital distances- the equation is correct and discussed in item no. (III)- Shortly- planet mass has no any effect on this planet orbital distance definition.

Notice

Planet orbital distance definition depends on its neighbor orbital distance this fact is proved by many different methods my equation is one method only of them, all these methods don’t use any planet mass- all planets orbits are defined based on their neighbor planets orbits (item No. III has more proves)

(v)

Also-Newton told-planet motion depends on its mass- means-planet velocity depends on its mass- this also is wrong - I define planet velocity (my 5th equation)- planet velocity is defined by many rules all of them don’t use any planet mass- at all Planet mass has no rule in this planet velocity definition.

The Conclusion

The Sun Doesn’t Produce Any Gravitational Field

4th Problem The Matter Creation And Its Nature Definition

In following we compare between the physics book theory about the matter creation and my theory about it- the discussion contains Two points

I- The Physics Book Theory About The Creation of the Matter (Mass)

  1. The Matter Is Created Independently From Any Outer Motion – means- even if the matter motion is stopped the matter is still found and never be perished (the motion here means the outer motion and not the atoms motions)
  2. The Matter Is Motionless By Nature
  3. The Matter Needs Mass Gravity Force To Cause Its Motion
  4. The Matter Data And Dimensions Are Not Changed By Its Motion
  5. The big bang theory tells planet is created by random creation- for example- Jupiter diameter is created by unknown value and Jupiter is collided many times in its history and these collisions caused Jupiter diameter (and mass) to be decreased- based on that– Jupiter diameter value (142984 km) is found by random process and without any geometrical reason behind- by that- the big bang theory prevent us to use any planet data to discover the creation and motion rules of this planet.
  6. Note – The physicist doesn’t use planet data in forming a theory to explain this planet motion-for example- Jupiter diameter is 142984 km and the physicist has a theory explains Jupiter motion but if Jupiter diameter is changed into 180000 km the theory will have no change because the physicist doesn’t consider Jupiter diameter is a player in its motion- that’s why the big bang theory is wrong because it supposes the change in diameter and mass doesn’t cause a change in motion 
  7. Shortly- the physics book doesn’t tell how the matter is created nor what’s the matter nature- we remember Einstein problem in physics- he told (All researches in particle electromagnetic properties can’t predict this particle behavior in the daily life physics) that shows two different branches of the physics one for the electromagnetism and the other for the mass gravity physics

II- My Theory About The Creation of the matter (mass) –

The Matter Main Features Are: 

  1. The Matter Is Created In Pairs  Means- No Single Matter Is Created -This conclusion depends on Gamma ray experiment -From Gamma ray (1.2 Mev) electron and positron are created- by this experiment- the matter is created in pairs from electromagnetic waves- the produced pair particles motions depend on each other (or related to each other) (notice the creation system is male and female–two complementary matters-that tells the source of energy must be electromagnetic wave)
  2. The matter is created depending on its motion- means- the motion is found before the matter creation- this conclusion depends on my planet diameter equation because planet diameter is created depending on this planet velocity (for example Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)- means–Planet motion is defined before its creation -later explained
  3. Lorentz transformation proves Matter dimensions are effected by high speed motion- also- Lorentz transformation proves the matter and space are created from the same energy for that particle length and distance both are contracted by the same one equation (Lorentz length contraction effect)
  4. The Matter Is Created Depending On Light Motion –

The Discussion Proves These Features Strongly

The Matter Creation Depends On 5 Main Facts  Which Are

  1. Gamma Ray Can Produce Electron And Positron
  2. Lorentz Transformation
  3. My Planet Diameter Equation
  4. The Coherence Of Light (Young Interference) 
  5. Planet Diameter Creation Depends On This Planet Orbit

(Item No. i) Gamma Ray Can Produce Electron And Positron    From Gamma ray (1.2Mev) one electron and one positron are created- I prove the matter is created by this method- means- the matter is created in pairs and no single matter is created

(Item No. ii) Lorentz Transformation

Lorentz transformation tells

If a particle moves by high speed motion (near to speed of light), this particle length would be contracted and its mass would be increased and its time would be dilated

I accept this meaning clearly and find this meaning supports my theory strongly BUT Many physics Books tell the following

(NO Real Change Is Done For Any Particle Data Moves By High Speed Motion But All Changes Are Illusions Of Measurements)-

Means- while a particle is moving by high speed motion and the experiments results show contraction in its length and increasing in its mass and dilation in its time – these changes are just illusions in measurements and the particle itself has no change in any data - tenth of books tell this meaning clearly and with confirmation and the physicist killed Lorentz work and made Lorentz transformation measures illusions and not facts- regardless the empirical proves which supports Lorentz transformation  

I refuse these books idea because

  1. The Physics Is The Measurements Science And What’s Measured Is The Fact
  2. If no real changes are done how the problem of Michelson and Morelly experiment is solved?- also- Why the synchronous events in one frame can’t be synchronous in another (as Einstein stated) where no change is found for any data- the distances are Not contracted nor the time is dilated nor the mass is increased why the events can NOT be synchronous in any frame?  
  3. If the particle own data is measured correctly while it moves by my motion velocity and these measurements are suffered from illusions because the particle moves by high speed motion relative to my motion that means (I’m the universe reference point)
  4. We notice- Lorentz length contraction equation can’t distinguish between particle length and a distance, both can be contracted by the same one equation- that supports my theory tells (Matter And Space Are Created From The Same Energy)–
  5. My planet diameter equation proves planet diameter is created depending on this planet motion and also proves the matter and space are created from the same one energy which supports Lorentz transformation 

NOTICE  

The major importance of Lorentz transformation is

  1. The transformation proves there’s a connection between particle dimensions and its  motion means the motion has effect on particle dimensions definition and by that the matter (mass) can’t be independent because its existence depends on a motion- shortly (The Matter Existence Depends On Its Motion
  2. The matter and space are created from the same energy- because- particle length and the distance both are contracted by the same equation (Lorentz length contraction effect) shortly (Matter And Space Are Created From The Same One Energy) (This theory is proved by my planet diameter equation)

(Item No. iii) My Planet Diameter Equation

My Planet Diameter Equation (v1/v2)= (s/r)= I

v = Planet Velocity                          

r = Planet Diameter

I= Planet Orbital Inclination   

s= Planet Rotation Periods Number In Its Orbital Period

v2, s, r and I are belonged to one planet and v1 is belonged to another planet

The planet (v1) is defined by test the minimum error 

Earth Equation uses Neptune velocity                        

Mars Equation uses Pluto velocity

Jupiter Equation uses the Earth moon velocity      

Saturn Equation uses Mars velocity

Uranus Equation uses Neptune velocity (As Earth)

Neptune Equation uses Saturn velocity

Pluto Equation uses the Earth moon velocity (As Jupiter)

Example  Neptune Equation (89143 /49528) = 9.7/ 5.4 =1.8                  

89143                   = Neptune rotation periods number in Neptune orbital period

49528 km   = Neptune diameter            

9.7 km/s = Saturn velocity and

5.4 km/s      = Neptune velocity             

1.8 degrees= Neptune Orbital Inclination

59800 days = Neptune orbital period (and Neptune rotation period =16.1 hours)

Discussion

(1)

The Equation Concept  Planet diameter should be a function in its orbital distance –otherwise- this planet would be broken by its motion- BUT- the designer can’t create a function has only 2 variables (Planet diameter and its orbital distance)- because– If this planet changes its orbit (orbital distance) its diameter would be broken also because the diameter is a direct function in the orbital distance without any other variables -As A Result- the designer created planet diameter as a function in this planet rotation period and the planet rotation period is created as a function in this planet velocity and the planet velocity is created as a function in this planet orbital distance- by that- the function between Planet diameter and its orbital distance is created but also it contains many variables (rotation period, orbital period and velocity)- by that- if  the Planet changes its orbital distance- this planet orbital period, and velocity and rotation period would be changed but its diameter will be saved

(2)

Matter Definition Based On My Planet Diameter Equation

My equation tells, Planet diameter is created depending on its velocity- for example Neptune diameter is 49528 km because it velocity is 5.4 km/s where the velocity is used in the diameter definition equation- means- Planet motion is defined before this planet creation- how can that be possible? let’s answer in following

  • The original energy was in motion and planet matter is created from this moving original energy and planet matter dimensions are defined by this original energy motion features- after Planet creation, the planet moves with this original energy motion means the planet moves this same motion based on which the planet data and dimensions are created that’s why Planet data is in full harmony with its motion features- that explains how planet diameter is created based on its velocity
  • Shortly- the matter is similar to a muscle in a creature- the muscle dimensions depend on the blood motion- similar to that- the matter dimensions depend on this energy motion from which this matter is created-
  • Also space is similar to the sea of water- and the matter is similar to a whirlpool (vortex) is found on the sea page- the matter creates for itself a distinguished picture different from the space picture and the matter moves by a different velocity from the space motion velocity- as the whirlpool (vortex) on the sea page- it’s created by the sea water but it has a distinguish picture from the sea waves and it moves by a different velocity from the sea waves- that explains how the moving energy can effect on the matter creation data- for example- we have a whirlpool (vortex) its diameter is 2 meters- why does this diameter equal= 2 meters? The diameter is created depends on the water motion velocity, pressure, amount and motion angle and many other features of (the moving water)- the moving water creates this whirlpool with diameter 2 meters and as long as the water motion is not changed this diameter will not be changed also- (notice- The Gravitational Waves Prove The Space Has Motion And Not Static)

NOTICE   Also (No Planet Moves By The Sun Gravity) Newton is wrong, because planet moves by the energy from which this planet is created- as explained here – means– The Matter Is Not Motionless By Nature- The Matter moves with the energy from which this matter is created-

(3)

Matter Existence Depends On Its Motion

Shortly-if the motion is stopped the matter will be perished- again the matter is similar to a muscle in a creature body- if the blood motion is stopped the muscle will be perished- this is the fact- Based on that- Neptune velocity is 5.4 km/s if Neptune stops its motion Neptune diameter and matter will be perished-

The fact I prove is (The Matter Creation Depends On Its Motion) – Lorentz transformation and my planet diameter equation supports this fact strongly 

DEEP DISCUSSION

(4)

The Matter Is Created In Pair And No Single Matter Is Created

Planet velocity is defined based on the rule (v1v2=constant= 322) let’s prove that

322 = 47.4 km/s (Mercury velocities)         x 6.8 km/s  (Uranus velocities)                            

322 = 35 km/s  (Venus velocity)                 x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)                    x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)                x 13.1 km/s (Jupiter velocity)                        

322 = (17.9 km/s)^2 (Ceres velocity)                   (Max error 2%)

The idea is understandable – let’s summarize it in following

(i)

The planets velocities are created complementary one another based on the rule (v1v2=constant= 322) and

(ii)

Planet data is created depending on its velocity- means- planet velocity is the first data in this planet creation and based on the velocity all other data is created- as we see in the planet diameter equation, planet diameter and all creation data is created depending on this planet velocity- means- based on (v1/v2) but planet orbital distance is defined based on  (v1/v2)^2 and planet orbital period is defined based on (v1/v2)^3

Based on this system planet data is created but we know that planet orbital distance is defined before planet creation and based on the orbit, planet velocity is defined and then all data is defined based on the planet velocity-

(iii)

Now the idea is clear- let’s summarize it

The planets velocities are created complementary one another based on the rule (v1v2=322) and planet diameter is created depending on its velocity for that reason planet diameter is created complementary to another planet diameter- let’s prove that

341.7 million km = Jupiter diameter 142984 km          x Pluto diameter 2390 km

341.7 million km = Jupiter radius 71492 km       x Mercury diameter 4879 km (2%)

341.7 million km  = Saturn diameter 120536 km x 4 Mars diameter 6792 km (4%)

341.7 million km = Uranus diameter 51118 km  x Earth radius 6378 km (5%)

341.7 million km = Neptune diameter 49528 km x 2 The Moon diameter 3475 km

Clearly we see the planets diameters are complementary one another- because the matter is created in pairs and no single matter is created

Notice (1)

Suppose the physicist can create a type of single matter which has no complementary can that disprove my theory tells (The Matter Is Created In Pair And No Single Matter Is Created?) NO NEVER

Because- the matter is created from the original energy and the energy uses a system depends on matters in pairs complementary one another-  means any type of matter can’t be used by the original energy will be neglected and useless because the energy uses matters in pairs  

(Item No. v) The Coherence Of Light (Young Interference)

I provide proves tell Gamma Ray and Young experiments are used in the solar planets creation – let’s remember these experiments

(1st Experiment) Gamma ray (1.2 Mev) can produce electron and positron

(2nd Experiment) the coherence of light experiment (Young Interference)

Let’s provide the proves for the using of these two experiments in the planets creation

Gamma Ray Experiment

There are two facts prove this experiment concept is used in the planets creation

First Fact Planet creation data is defined based on its velocity- this fact is proved by my planet diameter equation because planet diameter is created depending on this planet velocity as explained before (Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)-means- Planet velocity is the first data in this planet creation process and based on this velocity all planet creation and motion data is created

Second Fact Planet velocity is complementary one another, which is proved by the rule (v1v2= 322 = constant)- that shows the planets data must be complementary one another as I have proved in the diameters values analysis

Shortly – The planets data are complementary one another (similar to the electron and positron are created from Gamma ray)

The Coherence of light Experiment (Young Interference)

There are two facts prove this experiment concept using in the solar system creation

1st Fact

The planets order is typical for Young interference- if we consider planet diameter is equivalent to the fringe breadth by that the planets order be typical for Young interference where the greatest fringe is in the middle (the greatest planet Jupiter) and the fringes breadth is deceased gradually on both sides

(I Proved Mars Original Orbit Was Between Mercury And Venus- so the original inner planets order was Mercury – Mars – Venus – The Earth) which shows gradual decreasing in diameters- the outer planets diameters also is decreased gradually      

2nd Fact

There’s a coherence of light in the solar system- what does that mean?

Means- while planet orbit has energy of a light beam- another light beam enters this orbit by that there are two light beams in the same orbit- these two light beams create coherence of light- the planets orbits creation explain this fact in details- but here I want to prove this fact by simple direct proof before the planets orbits creation discussion –let’s write this proof here

We have seen that the planets velocities are complementary one another by the rule (v1v2=constant=322) and planet all data is created depending on its velocity- by that the planets diameters also follow this rule where (R1R2= constant) as I have proved in my planet diameter equation

Now let’s ask – can the planets orbits complementary one another? NO

So- how this rule (v1v2=constant= 322) is found?

By the energy reflection- means- the energy is reflected in the solar system and this reflection of energy causes the velocities to be reflected on one another and that produced the rule (v1v2=constant= 322)

We note the planets can’t be reflected on each other because the planets are connected with their orbits- and the energy reflection needs freedom in motion- means- this reflection of the planets velocities are done by effect of the energy reflection- please note- the energy reflection is a proved fact in the solar system- this fact is proved by hundreds of the planets data because the energy reflection cause effects on the planets data- shortly- the planets data is created by effects of the energy reflection-

Here we see the coherence of light is created because the orbits have energy where the space is energy and (Another energy is reflected and moved through all orbits and caused to create the planets data) by that each orbit has two energies together- I prove both energies are light beams-for that the two light beams create a coherence of light

I want to say- there are two facts prove the solar system has coherence of light which are the reflection of energy and the planets order

The planets orbits creation explain this theory in details I discuss it in item no. (**)

NOTICE

Please Note – I proved Mars original orbit was between Mercury and Venus and Mars is migrated to its current orbit behind the Earth- by that the inner planets original order was (Mercury – Mars – Venus – The Earth) here we see planets diameters are decreased gradually from the Earth to Mercury where Jupiter was the planet beside the Earth- means – the planets diameters are decreased gradually from Jupiter to Mercury- and the outer planets – the planets diameters also are decreased gradually- as I explained – if we compare planet diameter with fringe- the planets order be typical to Young interference – but – the order is reflected each other –let’s see that

The inner planets (Mercury – Mars – Venus – The Earth)- the order tells greater diameter necessitates longer orbital distance – but

The outer planets (Jupiter– Saturn– Uranus– Neptune –Pluto)- the order tells greater diameter necessitates shorter distance

Here we see the orders are reflected one another- but in Young interference there’s no reflection- I want to say- the planets orders are reflected because of the sun position- if the sun is not found no reflection will be found- that means- the reflection of energy caused to create the sun in the solar system because the sun creation causes the planets order to be reflected one another- my paper proves the sun is created after all planets creation and motion – and the sun is created by the reflected energy 

(Item No. vi) Planet Diameter Creation Depends On This Planet Orbit

The solar planets matters and their distances are created from one energy and this one energy is provided by one light beam and this light beam moves by speed = 1.16 million km per second (The speed is proved strongly and decisively)

The light (its speed 1.16 million km per second) built the solar system orbits starting from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each other (this fact is proved by my planet orbital distance equation) after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second before the space creation (In Mercury Orbit) and its speed becomes 300000 km/s after the space creation (in Pluto orbit) as result for the energy consumption in the space creation- 

In Pluto orbit - the light could Not move any further to build any more orbits because any additional space creation will consume more energy and that will decrease the light speed to be less than 300000 km/s (the known speed of light) – and – No known light moves by speed less than 300000 km/s – means- the light had no energy to move any further after Pluto orbit- for that- the light returns to its origin point (Mercury orbit) for that the light is reflected with speed (300000 km/s) from Pluto orbit to Mercury orbit passing through the built orbits– no energy is required in this motion for that the light beam moves with speed of light (300000 km/s) till Mercury orbit.

Please note- the light (300000 km/s) is reflected from Pluto to Mercury

The reflection of the light beam (300000 km/s) Caused To Create The Solar Planets

Comments

  • The light (1.16 million km per second) created the orbits with energy means the created orbits have energies- and each planet orbit energy is less than its previous neighbor orbit because the planets velocities are decreased gradually- almost the energy is less by rate 80% because the velocities are rated with (0.8)   
  • Each planet diameter is created based on its orbit energy- the planet is similar to a tree planted in a ground and the planet orbit is this ground- that’s why each planet diameter depends on this planet velocity and orbital inclination- please note Mars diameter equation proves this fact because Mars original orbit was between Mercury and Venus and Mars diameter is created based on this orbit energy and Mars had migrated from its original orbit to its current one behind the Earth but Mars diameter equation still shows Mars original orbital inclination (5.1degrees) while Mars current orbital inclination is 1.9 degrees- Mars diameter is created based on this inclination (5.1 deg) for that this inclination is seen in Mars diameter equation frequently (please review my planet diameter equation)    
  • The Occurrence Of The Coherence Of Light - The light beam (300000 km/s) is reflected and passed through all created orbits- that shows there two light beams are found in the same area (in any orbit)- because in each orbit there’s this orbit energy which is found with the orbit creation by the light (1.16 million km per second) for that we say (Space Is Energy) because any orbit has energy found with its creation- and also the reflected light beam (300000 km/s) passed through all orbits- by that- in any orbit there are two different light beams (two different energies) and these light beams create A Coherence together- 
  • The Amazing Coherence Of Light There’s a major interesting point here-the light beam (300000 km/s) created a coherence with the light 1.16 million km per second! BUT HOW?? because the light 1.16 million km per second is consumed and its energy is used for the space creation and the rest energy is this light beam moves by known speed of light (300000 km/s)!! how can the light beam (300000 km/s) meet the original light beam the 1.16 million km per second to create this coherence of light?
  • Please note- the speed 1.16 million km per second is the major used speed in the solar system data- means- the speed 1.16 million km per second is the secret by which the solar system data can be understood because all data is created as function in this speed-I prove that in the next pages- but this information is written to explain that the light 1.16 million km per second is consumed but its energy still works and causes continuous effect- BUT HOW??   

Let’s write the answer

  • The light (300000 km/s) is reflected to move from Pluto to Mercury (while the original light 1.16 million km per second moved from Mercury to Pluto) means the light (300000 km/s) moved in opposite direction for the motion of the original light 1.16 million km per second- MEANS- the light (300000km/s) moved in the opposite direction of space to reach to Mercury- BUT NOT ONLY- in fact- the light (300000 km/s) moved also in the opposite direction OF TIME and moved into its own past – and in past – this light beam (300000 km/s) met the original light beam 1.16 million km per second – and in past – the two light beams created the coherence of light and then this coherence of light results have effects on our present time-
  • Shortly- the coherence of light in the solar system proves the light beam (300000 km/s) moved on the time-axis and this is an empirical proof for the time-axis motion where the light can move simply on the time axis
  • Notice – this motion can help us to create the time machine- because- if the light can move into the past that means we may use this motion and take photos of the past events and this will be our time machine which can go into the past and make photos and videos for the past events – even the events since thousands of years we can see in videos or in photos – this motion of light can give us a great option to create our machine of time      
  • Notice  the original light beam 1.16 million km per second can not move into the future to meet the light beam (300000 km/s) because in future the original light 1.16 million km per second is NOT found because its energy is consumed in the space creation- but- the light beam (300000km/s) can move into the past because in the past the light beam (300000 km/s) was part in the original light beam 1.16 million km per second and by that the two light beams be found in the same time   
  • Notice – we can not travel ourselves into the past- because planet diameter is created depending on its velocity- as proved by my planet diameter equation- means- the matter is created depending on its motion velocity- and the velocity is a motion in defined direction- the light is free in motion and doesn’t forced to move in any direction for that the light has this option to move on the time axis but the matter is created depending on a motion in defined direction (no freedom in motion) for that the matter can’t move on the time axis because the motion force the matter to move in a defined direction – the matter moved just to the future– and the matter can’t move into the past-  
  • Planet Creation Machine Please note–we see the coherence of light is done by the two light beams 300000 km/s and 1.16 million km per second (because the light beam 300000 km/s can reach to the light 1.16 million km per second by moving into its past)- shortly – here we have 2 light beams in any orbit- and these two light beams cause two motions – we can imagine these two motions are perpendicular on each other – this perpendicular motions create a wave and planet is created as a wave (Particle is a wave also)- that explains how the planets are created 
  • Please note-  The reflection of energy is very effective in the solar planets data because the reflection of energy caused the planets to be created- the matter can’t be created by the energy of any orbit alone but the reflection of energy adds second energy inside each orbit- by that- two energies are found in any orbit (two light beams) by these two light beams the light coherence is created and also the planets are created as waves-that explains why the planets data prove the reflection of energy because the planets are created by this energy reflection- as when we plant a tree we need a ground and we need seeds to be put in this ground- two players- the planets are created by two energies (two light beams coherence) and for that the planets velocities are defined based on the two speeds (300000 km/s) and (1.16 million km per second) as planet velocity definition proves.
  • Please note  the Matter Is Created In Pairs (as electron and positron from Gamma rays 1.2 Mev) – this is the main system of creation but -In planets creation the rule is used with some complex method- the complementary is found for the planets velocities and the planets data is created depending on these velocities- the same concept but the method is more complex- this similar to the creature creation- the cell reproduction is done by split the cell into two new cells- but in higher creatures the reproduction use more complex methods but the cell method is still the base of these complex methods  
  • Please note  the previous analysis tries to conclude how the planet matter is created – I put all available facts to reach to this conclusion- the matter real mechanism may be still not clear but many provided facts help to reach to this mechanism- also- we know the main concept behind the matter creation which is (The Matter Is Created In Pairs And Not Single Matter Is Created)
  • This Concept Is Proved Strongly And Clearly By The Gamma Rays Experiment And The Planets Data

 (Item No. vii) The Proves Of The Light Speed 1.16 million km per second

THE SPEED PROVES

In following I prove the speed 1.16 million km per second is found

The paper provides many powerful proves – but - here I refer to 4 proves only

(1st Proof)

Planet Velocity Analysis proves the speed 1.16 million km per second

Data

322 = 47.4 km/s (Mercury velocities)  x 6.8 km/s  (Uranus velocities)                         

322 = 35 km/s  (Venus velocity)       x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)          x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)       x 13.1 km/s (Jupiter velocity)                        

322 = (17.9 km/s)^2 (Ceres velocity)                               (Max error 2%)

Discussion

This is one rule used to define planet velocity- we know this rule (v1v2 = constant =322) – other rules are discussed in planet velocity definition- here we ask only

Why the constant is 322?? Because 1160000 seconds = 3600 x 322 hours

Means – for example

Mercury (47.4 km/s) moves in 6.8 hours a distance 1.16 million km – and

Uranus (6.8 km/s) moves in 47.4 hours a distance 1.16 million km-

Means- the light moves 1.16 million km but we see it as 1160000 seconds and based on this period the constant 322 hours is defined and based on this constant the planets velocities are defined- means- the planets velocities are defined as functions in the speed 1.16 million km per second

(2nd Proof) the planets orbital circumferences total is defined by light speed 1.16 million km per second- let’s prove that 

100733 million km = 86400 seconds x 1160000 km/s

100733 million km = The Planets Orbital Circumferences Total

86400 seconds       = The solar day

Means- light its speed 1.16 million km per second passes in a solar day a distance = 100733 million km = The Planets Orbital Circumferences Total

The planets data analysis proves that the solar day is the major period of time in the solar system- that because- all planets rotation periods are defined based on it- the paper proves this fact strongly

 (3rd Proof)

The planets orbits and orbital distances are created from the energy of the light beam its speed is 1.16 million km per second- for that- this speed is registered in the distances data – let’s prove that in following

Example

778.6 million km (Jupiter orbital distance) = 1160000 km/s x 671 seconds

721 million km (Jupiter Mercury distance) = 1160000 km/s x 629 seconds

Where

671 million km = Jupiter Venus Distance

629 million km = Jupiter Earth Distance

This example tells that

The light (its speed 1.16 million km per second) created the distances based on each other- means

The light uses 671 million km (Jupiter Venus Distance) as a period of time 671 seconds to pass the distance 778.6 million km (Jupiter Orbital Distance)   

Also -the light uses 629 million km (Jupiter Earth Distance) as a period of time 629 seconds to pass the distance 721 million km (Jupiter Mercury Distance)   

By this method the light (1.16 million km per second) creates the distances based on each other- means – the distances be created in one network and by one design

the previous data is example for so many other distances let’s see them in following

(778.6 / 671)= (721/629) = (629/551)= (2x551/940)= (4900/4188) = (5906/5127)= (5127/4437) = (4345/3717)= 1.16

Where

778.6 million km = Jupiter Orbital Distance 

721 million km    = Jupiter Mercury Distance 

671 million km    = Jupiter Venus Distance 

629 million km    = Jupiter Earth Distance 

551 million km    = Jupiter Mars Distance 

940 million km    = Earth Orbital Circumference

4188 million km  = 2 x 2094  million km (Jupiter Uranus Distance)

4900 million km  = Jupiter Orbital Circumference

5906 million km  = Pluto Orbital Distance

5127 million km  = Pluto Jupiter Distance

4437 million km  = Mercury Neptune Distance

4345 million km  = The Earth Neptune Distance

3717 million km  = Jupiter Neptune Distance

The paper provides so many other powerful proves for the speed 1.16 million km

Notice

 (1.16/0.3) x 2π = 24.3

The equation tells, because the solar system is created by light beam its speed 1.16million km per second with its other speed 300000 km/s

For that - the space is created in curved lines (2π) and the time is created based on the solar day (24 hours)- that explains why the planets orbital circumferences total depends on the solar day period

(4th Proof)

300000 = (205.8)^2 x 7.1 where

The 9 planets velocities total 176 km/s and I add the Earth moon velocity 29.8 km/s the total be 205.8 km/s - the unified wave velocity (205.8 km/s)

7.1 is Lorentz length contraction effect produced by speed 99% of speed of light-

Shortly- the reflection of energy causes to square the wave velocity for that the unified wave velocity (205.8 km/s) is squared by the energy reflection

Now (205.8 km/s)^2 = 42354

The rate 7.1 causes to increase the distance from (42354 km) to (42354 x 7.1= 300000 km)- note-although 7.1 is Lorentz length contraction rate but it increases the distances in place of the contraction effect because the reflection of energy causes to reflect the geometrical effects-

shortly the equation (300000=(205.8)^ x 7.1) proves the planets velocities are defined as function in the known speed of light (300000 km/s)   

that proves the planets velocities are defined based on the two speeds of light –the known speed of light 300000 km/s and the original speed of light 1.16 million km per second.

NOTICE

Lorentz length contraction effect for a velocity 99% of speed of light (297000 km/s) is (7.1) as seen in the equation but the solar system uses this rate with modification

(7.1/100)+ 1 = 1.0725

And this final rate (1.0725) controls 40% of all planets data (distances, periods, axial tilts and other data)- this effect is a proof for the motion by high velocity because this rate (1.0725) controls 40% of all data in the solar system and no explanation except Lorentz length contraction effect- more proves are in (Item No. 5-6 Can Relativistic Effects Be Found In The Solar System?)

(Item No. viii) Planet creation depends on light motion

The previous analysis proves planet diameter is created depending on its orbit- specifically- planet diameter depends on its velocity and the velocity depends on its orbit- this fact is proved by my planet diameter equation (where planet diameter is created depending on its velocity) and by Kepler statement (Planet orbit defines its velocity) – but-

Why Does Planet Orbit Define Its Velocity?

Where I proved no planet moves by the sun gravity- by that the planet orbital distance has no effect on this planet motion or velocity nor planet mass has any effect on its velocity-So - Why Does Planet Orbit Define Its Velocity? The next data proves there’s a connection between planet velocity and its orbit through light motion

DATA

300000 km                              = 4.7 km/s (Pluto velocity) x 3600 x 17.73

5906 s x 300000 km/s   = 1773 million km

300000 km                              = 5.4 km/s (Neptune velocity) x 3600 x 15.43

5144 s x 300000 km/s   = 1543 million km                   ((5144= 4495 x (1.0725)^2)

300000 km                              = 9.7 km/s (Saturn velocity) x 3600 x 8.6

2870 s x 300000 km/s   = 8600 million km                  

300000 km                              = 6.8 km/s (Uranus velocity) x 3600 x 12.26

4085 s x 300000 km/s   = 1226 million km                  

300000 km                              = 13.1 km/s (Jupiter velocity) x 3600 x 6.36

2120 s x 300000 km/s   = 636 million km          

Where

5906 million km            = Pluto Orbital Distance

4495 million km            = Neptune Orbital Distance

2872 million km            = Uranus Orbital Distance = 2 x Saturn Orbital Distance

4900 million km            = Jupiter Orbital Circumference

Notice

18048 million km (Uranus Orbital Circumference) = 4.4 x 4085 million km

4900 million km (Jupiter Orbital Circumference)   = 2.3 x 2120 million km

4.4 = 2.2 x 2 (with 2.3 the error 5%)

Discussion

The data shows each outer planet velocity is related to its orbital distance by effect of the light motion (300000 km/s)- Uranus and Jupiter shows the rate 4.4 which related to Jupiter (3.1 deg Jupiter axial tilt + 1.3 deg Jupiter orbital inclination)- the energy is reflected from Uranus to Jupiter that causes the two planets use the same rate.

The data proves the planets motions depend on light motion and explains how the planet orbit defines its velocity

Notice

0.8 = (27.8 /35) = (24.1/29.8) = (10.8/13.1) = (5.4/6.8) = (17.2/21.4) = 19.8/24)

Where

35 km/s       = Venus velocity  

29.8 km/s    = The Earth velocity  

27.8 km/s    = The moon velocity  

13.1 km/s    = Jupiter velocity  

6.8 km/s      = Uranus velocity  

5.4 km/s      = Neptune velocity   note (10.8 = 5.4)

17.2 hours = Uranus Rotation Period

21.4 hours = 2 x 10.7 h Saturn Rotation Period

19.8 hours = 2 x 9.9 h Jupiter Rotation Period

24 hours     = The solar day period

The data shows harmony between the planets velocities and their rotation periods

Third Item - My 5 Equations 

My 5 Equations Prove Planets Creation and Motions Data Is Defined By Geometrical Rules (NO Random Creation)-I provide here the three main equations (1st, 4th and 5th) let’s refer to them in following 

Planet orbital distance equation (My 1st equation)

d^2= 4do (d-do)

where d= planet orbital distance and do= its previous neighbor orbital distance

Example (1) Venus orbital distance (108.2)^2 = 4 x 57.9 x (50.3)                             

d= 108.2 million km = Venus Orbital Distance

d0= 57.9 million km  = Mercury Orbital Distance

50.3million km=The Distance Between Venus And Mercury  Venus Depends On Mercury

Example (2) Saturn orbital distance (1433)^2= 4 x 778.6 x 655

d= 1433 million km    = Saturn Orbital Distance

d0= 778.6 million km  = Jupiter Orbital Distance

655million km=The Distance Between Saturn And Jupiter Saturn Depends On Jupiter

The equation depends on the planets order, just 2 neighbor planets can be used

The equation exceptions are, Earth depends on Mercury Not Venus – and Mars depends on Venus Not Earth And Pluto depends on Uranus Not Neptune

The Equation Concept Support

let’s suppose–There’s a right triangle by the 3 points The Sun, Mercury and Venus)- by that - Venus angle is (61 degrees) because Venus orbital distance (108.2 mkm) x cos (61) = Venus Mercury distance (50.3 mkm) – and

Earth angle is (51 degrees) because Earth orbital distance (149.6 mkm) x cos (51) = Earth Mercury distance (91.7 mkm) – and

Mars angle is (41.7 degrees) because Mars orbital distance (227.9mkm) x cos (41.7)= Mars Mercury distance (170 mkm)- and

Jupiter angle is (22.2 degrees) because Jupiter orbital distance (778.6 mkm) x cos (22.2)= Jupiter Mercury distance (721 mkm)

Similar to that – Saturn angle is 16.5, Uranus angle is 11.6 deg, Neptune angle is 9.2 deg and Pluto angle is 8 deg- these angles follow the same system

for example -Pluto angle is (8 degrees) because Pluto orbital distance (5906 mkm) x cos (8)= Pluto Mercury distance (5848 mkm) –

NOTICE No. (1)

The right angle and its triangle is (a hypothesis) – but we can prove it’s a fact because (v1/v2) = (θ1/ θ2) -means – these angles are rated with their planets velocities – for example (Neptune velocity 5.4/ Pluto velocity 4.7) = (9.2 deg /8 deg)

NOTICE No. (2) these angles are complementary one another for that

940 = 61 x 2 x 8 = 51 x 2 x 9.2 = 41.7 x 22.2

(61 degrees) is Venus angle and (51 degrees) is The Earth angle and (41.7 degrees) is Mars angle and (8 degrees) is Pluto angle and (9.2 degrees) is Neptune angle and (22.2 degrees) is Jupiter angle

DISCUSSION

The equation and angles system data prove the following

(1)

The planets orbital distances are defined based on their neighbors and NO mass is required to define it- Newton is wrong- planet orbital distance is Not defined based on this planet mass (also planet motion doesn’t depend on its mass)

Shortly- the mass is not related for the orbital distance definition at all

(2) The gravitation equation is wrong because it contradicts the planets order- for example (Mercury- Venus – the Earth) this order tells more mass needs longer orbital distance while the gravitation equation tells more mass needs shorter distance- clearly the equation contradicts the planets order- also Jupiter the greatest mass is not the more near planet to the sun – when we asked the physicist he told this is happened because of the planets initial conditions- my equation proves no initial conditions have effects on any distance – all distances are defined by the same one rule and the angles system supports the equation concept proves that (the planets orbital distances are defined based on each other and no mass is required in this definition)      

Planet Diameter Equation (My 4th equation)

My Planet Diameter Equation (v1/v2)= (s/r)= I

v = Planet Velocity                          

r = Planet Diameter

I= Planet Orbital Inclination   

s= Planet Rotation Periods Number In Its Orbital Period

v2, s, r and I are belonged to one planet and v1 is belonged to another planet

The planet (v1) is defined by test the minimum error 

Earth Equation uses Neptune velocity                        

Mars Equation uses Pluto velocity

Jupiter Equation uses the Earth moon velocity      

Saturn Equation uses Mars velocity

Uranus Equation uses Neptune velocity (As Earth)

Neptune Equation uses Saturn velocity

Pluto Equation uses the Earth moon velocity (As Jupiter)

Example  Neptune Equation (89143 /49528) = 9.7/ 5.4 =1.8                  

89143                   = Neptune rotation periods number in Neptune orbital period

49528 km   = Neptune diameter            

9.7 km/s      = Saturn velocity and

5.4 km/s      = Neptune velocity             

1.8 degrees= Neptune Orbital Inclination

59800 days = Neptune orbital period (and Neptune rotation period =16.1 hours)

All planets diameters follow this equation perfectly 

Notice

This equation is discussed with matter creation and definition (item no. I) also the equation is analyzed and discussed with all details in the paper discussions 

Planet velocity equation (My 5th equation)

Planet velocity definition is important point of study because many planet data is defined based on its velocity- specifically

Planet diameter is defined based on the rate (v1/v2) by my planet diameter equation –discussed before – and

Planet orbital distance is defined by the rate (v1/v2)^2 –and

Planet orbital period is defined by the rate (v1/v2)^3

Please note – Kepler stated (Planet orbit defines its velocity) and it’s fact proved by the planets data – but Newton stated Planet motion depends on its mass- this is NOT Fact and Planet velocity is defined without any effect of its mass as the data shows

(I have refuted Newton theory of the sun gravity and his theory for mass gravity) 

Now – let’s ask - How Is Planet Velocity Defined?

Planet velocity is defined by Five Rules let’s see them in following

(i) First Rule 

v1v2 = constant= 322  (my 5th equation)

47.4 km/s (Mercury velocity) x 6.8 km/s (Mercury velocity)                    =322

35 km/s (Venus velocity)         x 4.7 km/s (Pluto velocity) x 2                   =322

29.8 km/s (The Earth velocity)         x 5.4 km/s (Neptune velocity) x 2     =322

24.1 km/s (Mars velocity)       x 13.1 km/s (Jupiter velocity)           =322 (Max error 2%)

The rule (v1v2=322) tells the velocities are defined in pairs and not individually, each planet velocity has its own complementary- the rule tells the velocities are reflected on one another- the reflection of energy and data is discussed later. 

In this rule we interest for the constant (322)- let’s ask- why the constant = 322? 

The constant 322 depends on the speed 1.16 million km per second because

(1160000 seconds = 322 hours) - Means

Mercury (47.4 km/s) moves in 6.8 hours a distance = 1.16 million km and

Uranus (6.8 km/s) moves in 47.4 hours a distance   = 1.16 million km

Shortly -we realize that the constant 322 is produced based on the speed 1.16 million km per second- means- the planets velocities are complementary each other because they are defined as functions in this same speed 1.16 million km per second

(This is similar to electron and positron are produced from Gamma ray, The two particles depend on Gamma energy in their masses)

Based On This Data

I concluded there’s a light beam its speed 1.16 million km per second and from this light beam energy the solar system is created- and the planets velocities are defined as functions in this speed 1.16 million km per second and that causes the velocities to be complementary each other-

(Note the speed 1.16 million km per second is proved strongly in my paper)

(ii) Second Rule 

v1v2 = 1

The velocity here uses the solar day (86400 seconds) – let’s prove that-

Mercury moves per solar day           = 4.095 million km

Venus moves per solar day               = 3.024 million km

The Earth moves per solar day                  = 2.574 million km

The Moon moves per solar day                  = 2.4 million km

Mars moves per solar day                = 2.082 million km

Jupiter moves per solar day              = 1.1318 million km

Saturn moves per solar day              = 0.838 million km

Uranus moves per solar day             = 0.5875 million km

Neptune moves per solar day           = 0.4665 million km

Pluto moves per solar day                = 0.406 million km

AND

0.406 (Pluto velocity)              x 2.4 (the moon velocity)             = 1         (error 2.5%)

0.4665 (Neptune velocity)       x 2.082 (Mars velocity)               = 1          (error 2.5%)

0.5875 (Uranus velocity)                  x 3.024 (Venus velocity)/1.772   = 1 (error 2.5%)

0.838 (Saturn velocity)            x 1.1318 (Jupiter velocity)         = 1 (error 5%)

(1.772 = π^½)

The second rule tells very similar meaning (v1v2= constant= 1)

The data uses the velocities per solar day for that the constant is changed from 322 into 1 but the rule is the same- (v1v2= Constant)

I want to say- the rule (v1v2 = Constant) tells that (The Velocities Are Reflected On Each Other) this conclusion is simple one (A x 1/A= constant=1)  

The rule proves the energy is reflected in the solar system and this reflection has effect on the planets data and for that the planets velocities are defined by this energy  reflection and the velocities are produced complementary each other as a result.

Notice the second rule causes confusion because the complementary player is changed- for example Pluto is complementary with Venus (in the first rule 35 x 4.7 x 2 = 322) but Pluto is complementary with the Earth moon in the second rule (0.406 x 2.4 = 1) that tells the players are changed which is illogical idea- how can we solve this problem? The third rule solves it – let’s see this rule in following 

(iii) Third Rule 

v1/v2 = 0.8 (based on the planets order)

47.4 km/s (Mercury velocity) x 0.8   = 38 (35 km/s = Venus velocity error 7.25%)

35 km/s (Venus velocity)         x 0.8   = 27.78 (The moon velocity)

29.8 km/s (The Earth velocity)         x 0.8   = 24.1 (Mars velocity)                          (error 1%)

24.1 km/s (Mars velocity)       x 0.8   = 2 x 9.7 (Saturn velocity)

13.1 km/s (Jupiter velocity)     x 0.8   = 2 x 5.4 (Neptune velocity)       (error 3%)

6.8 km/s (Uranus velocity)      x 0.8   = 5.4 (Neptune velocity)

5.4 km/s (Neptune velocity)    x 0.8   = 4.3 (Pluto velocity 4.7 the error 7.25%)

Please note

The error 7.25 is found by the rate 1.0725 – that means

47.4 km/s (Mercury velocity) x 0.8   = 38 = 1.0725 x 35 km/s (Venus velocity)

5.4 km/s (Neptune velocity) x 0.8     = 4.3= 4.7 km/s (Pluto velocity) / 1.0725

29.8 km/s (Earth velocity)                = 27.78 km/s (The moon velocity) x 1.0725

We know the rate 1.0725 is found by Lorentz length contraction effect- and we know this rate has effect on around 40% of all planets data – that’s why we see this rate has effect on the planets velocities definition-

Let’s remember the question-

In the rule (v1v2=322) we found that Pluto is complementary with Venus because

4.7 km/s (Pluto velocity) x 35 km/s (Venus velocity) x 2 = 322

But in the rule (v1v2 =1) we found Pluto is complementary with the moon because

0.406 mkm (Pluto Velocity Daily) x 2.4 mkm (The Moon Velocity Daily) = 1

The question asked – if the planets velocities are defined in pairs complementary each other and not individually how can the players be changed? 

The answer tells – the planets velocities are rated by (0.8) based on the planets order means – the moon velocity daily 2.4 mkm = Venus velocity daily 3.024 mkm x 0.8

The rate (0.8) defines all planets velocities depend on each other by order-

Now let’s see Planet velocity final definition– because- the definition uses three planets velocities together and not only two – let’s put that clearly in following-

 (iv) The Planet Velocity Final Definition

 (A)

47.4 km/s (Mercury velocity) x 0.8 = 38 km/s (Venus velocity 35 km/s)

Venus moves per solar day 3.024 million km -But

1/3.024 = 0.3307 million km = Uranus moves per solar day 0.5875 million km /1.77

(note 1.77 = π^½) and (38 = 35 x 1.0725)

For that

47.4 km/s (Mercury velocity) x 6.8 km/s (Uranus velocity) = 322

(B)

35 km/s (Venus velocity) x 0.8 = 27.78 km/s (The Moon velocity)

The moon moves per solar day 2.4 million km -But

½.4 = 0.406 million km = Pluto moves per solar day 0.406 million km

For that

35 km/s (Venus velocity) x 4.7 km/s (Pluto velocity) x 2 = 322

©

29.8 km/s (The Earth velocity) x 0.8 = 24.1 km/s (Mars velocity)

Mars moves per solar day 2.082 million km -But

½.082 = 0.4665 million km = Neptune moves per solar day 0.4665 million km

For that

29.8 km/s (The Earth velocity) x 5.4 km/s (Neptune velocity) x 2 = 322

(D)

13.1 km/s (Jupiter velocity) x 0.8= 2 x 5.24km/s (Neptune velocity 5.4 km/s error 3%)

Neptune moves per solar day 0.4665 million km - But

1/0.4665 = 2.082 million km = Mars moves per solar day 2.082 million km

For that

13.1 km/s (Jupiter velocity) x 24.1 km/s (Mars velocity) = 322

Shortly

Three planets velocities are defined in each equation- that tells the planet velocity definition is a process more complex than the simple equation (v1v2= constant)

Notice

The 9 planets velocities total is 176 km/s – if we add the Earth moon velocity (29.8 km/s) the total will be 205.8 km/s

The planets velocities are complementary also for this velocity 205.8 km/s – let’s see

205.8 km/s = Mercury velocity (47.4 km/s) x Pluto velocity (4.7 km/s) / 1.0725

205.8 km/s = Venus velocity (35 km/s)     x Neptune velocity (5.4 km/s) x 1.0725

205.8 km/s = Earth velocity (29.8 km/s)   x Uranus velocity (6.8 km/s)

205.8 km/s = Jupiter velocity (13.1 km/s)          x Neptune velocity (5.4 km/s) x 3

Mercury velocity = 2 Mars velocity by that Pluto will be used for Mars also

Max error (3%)

Please Note- Saturn is exceptional because

205.8 km/s = 9.7 km/s (Saturn velocity) x 21.4

Where 21.4 hours = 2 x 10.7 hours (Saturn rotation period) -Means- the distance is passed by all planets motions in one hour equal the distance is passed by Saturn in 2 rotation periods (21.4 hours) that tells more analysis is required for Saturn velocity- as we should do later.

A QUESTION

(Why Is The Rate (0.8) Used To Define Each Planet Velocity Based On Its neighbor?) Kepler stated (Planet orbit defines its velocity) and

My planet orbital distance equation proves each planet orbit is defined based on its neighbor – means- my equation uses only 2 neighbor planets orbital distances

Here also-Planet velocity is defined based on its neighbor – means- this connection enabled Kepler to conclude his statement (Planet orbit defines its velocity)

But Why The Rate (0.8)??

The rate (0.8) is found by the energy reflection effect on Planets velocities definition, for that we analyze the energy reflection process deeply in the paper discussion

(v) Fourth Rule 

5.9 x 0.8 = 4.7 km/s (Pluto velocity) BUT (5.9)^2 = 35 km/s (Venus velocity)

And

6.8 x 0.8 = 5.4 km/s (Neptune velocity) BUT (6.8)^2 = 47.4 km/s (Mercury velocity)

And

8.5 x 0.8 = 6.8 km/s (Uranus velocity) BUT (8.5)^2 = 2 x 35 km/s

And

12.12 x 0.8 = 9.7 km/s (Saturn velocity) BUT (12.12)^2 = 3 x 47.4 km/s And

16.4 x 0.8 = 13.1 km/s (Jupiter velocity) BUT (16.4)^2 = 9 x 29.8 km/s (Earth velocity)

Discussion

The data shows, the inner planets velocities are defined based on the outer planets velocities- that explains how the rules (v1v2=constant) is created

The data is produced by the reflection of energy and that shows why the planets velocities are reflected on each other-

(vi) Fifth Rule   (Pluto Velocity Analysis)

DATA

4.7 km /s (Pluto velocity)        = 3/2 (π) km /s

And

5.4 km /s (Neptune velocity) x 4.7 km /s (Pluto velocity) = 8π

And

π x 6.8 km/s (Uranus velocity)          = 4 x 5.4 km/s (Neptune velocity)

And

4 x (4.7)^2 = 6.8 km/s (Uranus velocity) x 13.1 km/s (Jupiter velocity)

And

(4.7)^3 = 5.4 km/s (Neptune velocity) x 9.7 km/s (Saturn velocity) x 2 = (205.8/2)

205.8 = the 9 planets velocities total + the Earth moon velocity

Discussion

The data shows a real puzzle- because- Pluto velocity can’t be defined simply by some simple rules –even the previous 4 rules can’t define this velocity-

The data shows- The planet velocity is defined by very complex rule more strong than the previous 4 rules (Specifically Pluto velocity) 

I want to say- the designer has a reason to define Pluto velocity by some complex system- the planets motions interactions causes this complex system-

The next data can explain better this meaning

More Data

13.1 km/s x 29.8 km/s x 142984      = 47.4 km/s x 9.7 km/s x 120536

13.1 km/s x 9.7 km/s x 142984                  = 5.4 km/s x 27.8 km/s x 120536

9.7 km/s x 5.4 km/s x 142984                    = 4.7 km/s x 13.1 km/s x 120536

13.1, 29.8, 47.4 km/s are the velocities of Jupiter, The Earth, Mercury respectively

9.7, 5.4, 27.8 km/s are the velocities of Saturn, Neptune, The Moon respectively

4.7 km/s = Pluto velocity

142984 km = Jupiter diameter and 120536 km = Saturn diameter

The data tells the planets velocities are defined by real complex system

(vii) Planet Orbital Inclination Definition

DATA

(Mercury velocity 47.4 km/s) = (Uranus velocity 6.8 km/s)    x 7

(Mercury orbital inclination = 7 degrees)

(The Moon velocity 27.8 km/s) = (Neptune velocity 5.4 km/s)         x 5.1

(The Moon orbital inclination = 5.1 degrees)

(Mars velocity 24.1 km/s)       = (Saturn velocity 9.7 km/s)    x 2.5

(Saturn orbital inclination = 2.5 degrees)

(Mars velocity 24.1 km/s)       = (Jupiter velocity 13.1 km/s) x 1.9

(Mars orbital inclination = 1.9 degrees)

(Venus velocity 35 km/s)         = (Jupiter velocity 13.1 km/s) x 1.3 x 2

(Jupiter orbital inclination = 1.3 degrees)

(Neptune velocity 5.4 km/s)    = (Uranus velocity 6.8 km/s)   x 0.8

(Uranus orbital inclination = 0.8 degrees)

(Saturn velocity 9.7 km/s)       = (Neptune velocity 6.8 km/s)           x 1.8

(Neptune orbital inclination = 1.8 degrees)

Discussion  

The data shows that the planet orbital inclination is defined as a rate between two velocities- but- no clear rule is used by planet velocity - for example Mercury uses the rule (v1v2=constant because 47.4 x 6.8 = 322 and v1/v2= 47.4/6.8 = 7)

this rule is used almost for the inner planets- but- the outer planets orbital inclinations don’t follow this rule- because Neptune is complementary with the Earth but Neptune velocity is used with Uranus and Saturn to define Uranus and Neptune orbital inclinations- means- the rule (v1/v2 = inclination) is used for the inner planets but the outer planets use another rate and almost their orbital inclinations are created based on the rate (v1/v2) defined by my planet diameter equation- 

Gerges Francis Tawdrous +201022532292

Physics Department-  Physics & Mathematics  Faculty 

Peoples’ Friendship university of Russia – Moscow  

Curriculum Vitae                 https://www.academia.edu/s/b88b0ecb7c

E-mail                            mrwaheid@gmail.com, mrwaheid1@yahoo.com

                                      gergesgerges@yandex.ru                  

ORCID                          https://orcid.org/0000-0002-1041-7147

Facebook                       https://www.facebook.com/gergis.tawadrous

VK                                 https://vk.com/id696655587

Tumblr                           https://www.tumblr.com/blog/itsgerges 

Researcherid                  https://publons.com/researcher/3510834/gerges-tawadrous/

Google                                https://scholar.google.com/citations?user=2Y4ZdTUAAAAJ&hl=en

Livejournal                     https://gerges2022.livejournal.com/profile

Pocket                                                                    https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar

PUBLICATIONS

box                                https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv

Academia                       https://rudn.academia.edu/GergesTawadrous

List of publications        http://vixra.org/author/gerges_francis_tawdrous

Slideshare                            https://www.slideshare.net/Gergesfrancis

Text
draegerit
draegerit

DUINO EDU - DHT11 Sensor & LCD-Display

DUINO EDU - DHT11 Sensor & LCD-Display

In diesem neuen Beitrag möchte ich dir gerne zeigen, wie du die Sensorwerte des DHT11 Sensors auf einem LCD-Display per DUINO EDU anzeigen lassen kannst.

Dieses kleine Projekt ist der Wunsch des lesers Sieglinde L. welche das Projekt gerne mit der grafischen Entwicklungsumgebung DUINO EDU umsetzen möchte.

Benötigte Ressourcen für dieses Projekt


Wenn du das kleine Projekt nachbauen möchtest, dann benötigst du:
- einen Arduino UNO*,
- ein USB-Datenkabel*,
- ein Grove Connector Shield / Base Shield v2 für den Arduino UNO*,
- ein DHT11 Sensor mit Grove Schnittstelle*,
- ein 20x2 Zeichen LCD-Display (I2C) mit Grove Schnittstelle*,
- zwei Grove Kabel*
Hinweis von mir: Die mit einem Sternchen (*) markierten Links sind Affiliate-Links. Wenn du über diese Links einkaufst, erhalte ich eine kleine Provision, die dazu beiträgt, diesen Blog zu unterstützen. Der Preis für dich bleibt dabei unverändert. Vielen Dank für deine Unterstützung!

Aufbau der Schaltung


Die Schaltung ist mit den Grove Anschlüssen sehr einfach und schnell erledigt, denn das LCD-Display wird lediglich in einen I2C und der DHT11 Sensor in ein digitalen Connector gesteckt.
Schaltung - Grove DHT11 Sensor & LCD-Display am Arduino UNO
Schaltung - Grove DHT11 Sensor & LCD-Display am Arduino UNO

DUINO EDU einrichten / konfigurieren


Bevor wir mit der Entwicklung des Programmes starten können, müssen wir die IDE herunterladen. Wie du dieses machst habe ich dir bereits im Beitrag Arduino Programmierung mit DUINO EDU erläutert.
Bei der Programmierung ist mir jedoch aufgefallen das der eingestellte Pfad für das standardmäßige Speichern von Projekten zu Problemen führt. Dieser Pfad wird auch genutzt um Bibliotheken zu referenzieren.
Arduino IDE - Voreinstellungen, Speicherort (default)
Arduino IDE - Voreinstellungen, Speicherort (default)
Arduino IDE - Voreinstellungen, Speicherort (custom)
Arduino IDE - Voreinstellungen, Speicherort (custom)
Meine Lösung dazu war, den Pfad auf einen anderen Ordner innerhalb der IDE DUINO EDU zu legen.

Programmieren in DUINO EDU


Wenn die Entwicklungsumgebung DUINO EDU fertig eingerichtet ist, dann können wir mit der Programmierung beginnen. Eigentlich ist es keine Programmierung im eigentlichen Sinne denn wir klicken eher per Drag'n Drop GUI Elemente zusammen und daraus wird dann der Code generiert welchen wir auf den Mikrocontroller spielen.
DHT11 Sensordaten am LCD-Display
DHT11 Sensordaten am LCD-Display
Nachfolgend das YouTube-Video wo ich dir im Detail erläutere wie das Programm aufgebaut wird.
https://youtu.be/dJgfNeRQRo8
Fehlende Punkte in der zweiten Zeile
In der zweiten Zeile vom LCD-Display werden keine Punkte angezeigt.


Das liegt in diesem Fall an der verwendeten Bibliothek. Wenn man die originale Bibliothek von Seeedstudio in der Arduino IDE verwendet, dann werden alle Zeichen auf dem Display korrekt angezeigt.
Beispiel auf dem RGB LCD-Display mit korrekten Sonderzeichen
Beispiel auf dem RGB LCD-Display mit korrekten Sonderzeichen
Das Programm im Detail
In der nachfolgenden Grafik zeige ich dir das kleine Programm mit Kommentaren.
Du benötigst für das Anzeigen der Sensorwerte auf dem LCD-Display recht wenig GUI Elemente, jedoch werden diese Elemente sehr tief ineinander verschachtelt.

Natürlich kannst du auch den Code etwas lesbarer gestalten und die Werte in Variablen auslagern, jedoch macht dieses den Code nicht viel besser.
Den Code kannst du dir auch über nachfolgenden Link als ZIP-Datei herunterladen.
Grove DHT11 Sensor & LCD-DisplayHerunterladen

Excurs zum Arduino Code


Schauen wir uns einmal den generierten Code an welcher kompiliert und auf den Mikrocontroller überspielt wird.
Zunächst werden die benötigten Bibliotheken importiert.
#include
#include
#include
Danach wird geprüft ob das Feld EDU_LCD_ADRESS vorhanden ist, wenn dieses so ist wird eine Bibliothek für das Display importiert, andernfalls wird eine Bibliothek für ein RGB LCD-Display importiert.
#if defined (EDU_LCD_ADRESS)
#include
Duinoedu_LiquidCrystalUp monRgb(EDU_LCD_ADRESS, EDU_LCD_COLS, EDU_LCD_ROWS);
#else
rgb_lcd monRgb;
#endif
Im nächsten Schritt wird eine Instanz des DHT Sensor objektes initialisiert mit der zusätzlichen Information das am digitalen Pin D2 ein Sensor angeschlossen ist.
DHT monDHT_pin2(2);
In der Funktion setup wird das Display und die Kommunikation mit dem Sensor gestartet.
void setup(){
monRgb.branch();
monDHT_pin2.brancher();
}
Die Funktion loop wird fortlaufend ausgeführt und liest und schreibt die Sensordaten auf das Display. Die Funktionen dabei sind in französischer Sprache (warum auch immer).
void loop(){
monRgb.placerCurseurEn(0,0);
monRgb.ecrire(“Temp.:” );
monRgb.ecrire(String(monDHT_pin2.lireTemperature(),2) );
monRgb.placerCurseurEn(1,0);
monRgb.ecrire(“rel.Luftf.:” );
monRgb.ecrire(String(monDHT_pin2.lireHumidite(),2) );
delay( 2000 );
}
Hier nun der komplette Code:
#include
#include
#include
#if defined (EDU_LCD_ADRESS)
#include
Duinoedu_LiquidCrystalUp monRgb(EDU_LCD_ADRESS, EDU_LCD_COLS, EDU_LCD_ROWS);
#else
rgb_lcd monRgb;
#endif
DHT monDHT_pin2(2);
void setup()
{
monRgb.branch();
monDHT_pin2.brancher();
}
void loop()
{
monRgb.placerCurseurEn(0,0);
monRgb.ecrire(“Temp.:” );
monRgb.ecrire(String(monDHT_pin2.lireTemperature(),2) );
monRgb.placerCurseurEn(1,0);
monRgb.ecrire(“rel.Luftf.:” );
monRgb.ecrire(String(monDHT_pin2.lireHumidite(),2) );
delay( 2000 );
}

Read the full article

Text
draegerit
draegerit

ArduBlock - Arduino UNO mit DHT11 & LCD-Display

ArduBlock - Arduino UNO mit DHT11 & LCD-Display

In diesem Beitrag möchte ich dir erläutern, wie du die Sensordaten des DHT11 Sensors auf einem LCD-Display am Arduino UNO anzeigen lassen kannst. Die Programmierung erfolgt hier mit der grafischen Entwicklungsumgebung ArduBlock.
ArduBlock - Arduino UNO mit DHT11 & LCD-Display
ArduBlock - Arduino UNO mit DHT11 & LCD-Display
Die grafische Entwicklungsumgebung ArduBlock habe ich dir bereits im Beitrag Arduino IDE : Erweiterung ArduBlock vorgestellt und erste Schritte gezeigt.
Dieser Beitrag ist durch einen Wunsch entstanden, den Beitrag Calliope Mini mit DHT11 & LCD-Display auf einem Arduino UNO laufen zu lassen. Die Programmierung soll dabei so einfach sein wie in MakeCode von Microsoft, daher auch die Wahl zu ArduBlock.

Benötigte Ressourcen für dieses Projekt


Wenn du die nachfolgende Schaltung aufbauen möchtest, um einen DHT11 Sensor & LCD-Display per ArduBlock am Arduino UNO programmieren möchtest, dann benötigst du:
- einen Arduino UNO*,
- ein USB-Datenkabel*,
- einen DHT11 Sensor*,
- ein LCD-Display*,
- diverse Breadboardkabel*,
Hinweis von mir: Die mit einem Sternchen (*) markierten Links sind Affiliate-Links. Wenn du über diese Links einkaufst, erhalte ich eine kleine Provision, die dazu beiträgt, diesen Blog zu unterstützen. Der Preis für dich bleibt dabei unverändert. Vielen Dank für deine Unterstützung!
Den DHT11 Sensor erhältst du als einzelnen Baustein oder auch auf einer kleinen Platine mit einer fertigen Schaltung.
varianten des DHT11 Sensors
Varianten des DHT11 Sensors
Ich bevorzuge die kleine Platine, da hier der Aufbau deutlich schneller vonstattengeht.

Download & Einrichten von ArduBlock


Im ersten Schritt laden wir die Anwendung ArduBlock von http://ardublock.ru/avtor/002/en.html herunter.

Wenn die ca. 300 MB große ZIP-Datei erfolgreich geladen und in ein beliebiges Verzeichnis entpackt wurde. Kann diese über die Datei ArduBlock 2.0appArduBlock.exe gestartet werden.
In meinem Fall startete diese Anwendung mit russischer Sprache, hier musste ich zunächst über das Symbol “A” und dann aus der Auswahlliste die Sprache “English” wählen. Diese Auswahl muss zum schluss noch mit der Schaltfläche “OK” bestätigt werden.


Nach einem kleinen reload wird die Anwendung ArduBlock 2.0 in englischer Sprache angezeigt.
Oberfläche der Anwendung ArduBlock 2.0
Oberfläche der Anwendung ArduBlock 2.0
Alternativ kannst du auch DUINI-EDU verwenden, welches ich dir im gleichnamigen Beitrag bereits vorgestellt habe Arduino Programmierung mit DUINO EDU.

Aufbau der Schaltung am Arduino UNO


Für den Aufbau am Arduino UNO benötigen wir lediglich den Sensor, ein LCD-Display sowie sieben Breadboardkabel.
Schaltung - Arduino UNO mit DHT11 & LCD-Display
Schaltung - Arduino UNO mit DHT11 & LCD-Display
Hier die Zusammenfassung der Pinbelegung aus der Grafik.
BauteilArduino UNODHT11GNDGNDVCC5 VSignaldigitaler Pin D11LCD-DisplayGNDGNDVCC5 VSDASDA oder analoger Pin A4SCLSCL oder analoger Pin A5

Erstellen des Programmes - Arduino UNO mit DHT11 Sensor, LCD-Display in ArduBlock


Erstellen wir nun das kleine Programm in ArduBlock. Dazu ziehen wir verschiedene Elemente auf die Arbeitsfläche und verknüpfen diese miteinander.
Bei der Ausgabe des Textes verbinden wir einige Elemente miteinander, um so den Text aufzubauen.
ArduBlock2 - Code für DHT11 Sensor & LCD-Display am Arduino UNO
ArduBlock2 - Code für DHT11 Sensor & LCD-Display am Arduino UNO
Wie du den Code aufbaust, zeige ich dir in dem nachfolgenden kleinen YouTube-Video auf meinem Kanal Draeger-IT.
https://youtu.be/UqGbW-Ev7Jo

Read the full article

Text
itsgerges
itsgerges


Best Regards

The Sun Is Created Based On The Planets Motions (Revised 2)

or

or

or

My Research Presentation

I- Research Methodology 

II- Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition

III- My 5 Equations 

(1st equation) Planet orbital distance equation- the equation proves planet orbital distance is defined based on its neighbor orbital distance and no planet mass is used for this definition- Newton is wrong-

(4th equation) Planet diameter equation- the equation proves planet diameter is created based on a geometrical rule (NO Random Creation- the big bang theory is wrong) -also the equation proves the matter is created in pairs (as electron and positron are produced by Gamma ray 1.2 Mev)

(5th equation) Planet velocity equation- the equation proves planet mass has no effect on this planet velocity definition

IV- The Research Discovery

The Gravitational Waves Are Produced By The Planets Motions Energies And Not By The Gravitational Field- Moreover- There’s No Gravitational Field

V- The Gravitational Waves Reflection Analysis  

The Gravitational Waves Reflection Proves The Waves Are Produced By The Planets Motions Energies

VI- The Research Hypothesis

The Sun Is Not Doing Nuclear Fusion To Produce Its Rays- Instead- The Sun Rays Are Produced By The Gravitational Waves Motions Energies- And The Gravitational Waves Are Produced By The Planets Motions Energies- Means- The Sun Rays Is Created By The Planets Motions Energies Total- Shortly- The Sun Is A Phenomenon Created After All Planets Creation And Motion Because The Sun Is Created By The Planets Motions Energies. 

That explains why the sun corona temperature is 5 million Kelvin but the sun surface temperature is 5800 Kelvin- because the energy is not produced from the sun body but the energy comes from out of the sun body for that the energy out of the sun is so greater than the energy inside the sun (the energy comes from the gravitational waves which are produced by the planets motions energies total)    

The Hypothesis Explanation

The Sun Rays Creation Process

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

This new article tells the gravitational waves can move by speed of light and can produce a light beam- I claim The Sun Rays are produced based on this method by the gravitational waves motions and not by the sun nuclear fusion process- also –No star rays is produced by the nuclear fusion process but all rays are created by the gravitational waves motions energies as the article states.  

Here we have four questions to answer

  1. How can the gravitational waves be produced by the planets motions energies?
  2. How can the gravitational waves move by speed of light?
  3. How can the gravitational waves motions produce a light beam?
  4. Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

1st Question

How Can The Gravitational Waves Be Produced By Planets Motions Energies?

Planet motion produces energy (½ mv^2) but where’s this motion energy? Planet can NOT store its motion energy inside its body because It would raise its temperature- and no planet temperature is raised by its motion- logically- planet motion energy is stored in the space in moving waves –Means- planet motion in space is similar to a fish swimming in the sea- the fish swimming creates waves in the sea and similar to that - planet motion energy creates waves in the space- and - fish swims because it hits the water by its body and that creates waves in the water- and these waves move by a velocity equal the fish velocity because of the reaction force- similar to that- Planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal this planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by equal velocity (47.4 km/s)

Shortly- the planets move and their motions create waves in the space and each wave moves by velocity equal its planet velocity

AND the planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)

AND  in Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity= 205.8 km/s where The 9 planets velocities total=176 km/s but I add the Earth moon velocity (29.8 km/s) that makes the total to be 205.8 km/s – I add the moon velocity because the energy is stored finally in the moon orbit-

Note- The moon and the Earth revolve around the sun together for that the moon velocity is considered equal the Earth velocity relative to (the sun) –

NOW the unified wave moves by (205.8 km/s) is the gravitational wave-

The scientists discovered these waves in the space and they called them (gravitational waves) supposing these waves are produced by the sun gravitational field- BUT Planet motion energy must be stored in the space as moving waves – as proved by the previous analysis -means- even if There’s NO Gravitational field at all there’s a strong reason to find waves in the space because these waves are created by the planets motions energies

Note- I refute the sun gravitational field theory- and prove the sun has no massive gravity and also NO planet moves by the sun gravity

The Conclusion

The Unified Wave Its Velocity 205.8 Km/S Is The Gravitational Wave

Notice - the new article still believes that the gravitational waves are produced by the gravitational field- I refuse this idea and prove the waves are produced by the planets motions energies but I need the article because it tells the waves can move by speed of light and can produce the light beam where I suppose the sun rays is created by this method 

The Answer Of The Questions No. (2) And No. (3) 

2ndQuestion   How Can The Gravitational Waves Move By Speed Of Light? AND

3rdQuestion How Can The Gravitational Waves Motions Produce A Light Beam?

What Do We Have?

We have One unified wave moves by velocity 205.8 km/s

What Do We Need?

We need to accelerate the unified wave to move by speed of light (C=300000 km/s) and this wave should produce (A Light Beam)

We know the light beam is produced from (C^2= Squared Speed Of Light)

Technically- How To Solve This Problem?

We Need To Square The Wave Velocity

Let’s see my hypothesis (The Gravitational Waves Reflection Causes To Square The Wave Velocity) - let’s see if this hypothesis can solve the problem

(a)

(205.8)^2 x 7.1 = 300000 km/s = C = (speed of light)

Where

205.8 km/s= the velocity of the unified wave (the gravitational wave)

7.1 is Lorentz length contraction effect rate for speed (0.99 C)

Let’s discuss the equation

The unified wave moves by (205.8 km/s) – and this wave is reflected- the wave reflection causes to square its velocity – for that the velocity (205.8 km/s) is squared and be (205.8 km/s)^2= 42354 km/s

But Lorentz length contraction effect rate causes to increase the distance 42354 km to be (42354 x 7.1 = 300000 km) – means- the speed 42354 km/s is accelerated to be 300000 km/s = C=speed of light by Lorentz length contraction effect – we understand the rate 7.1 causes to contract the distances but here the rate increases the distances because the wave reflection causes to reflect the geometrical effects.

Conclusion No. (1)

The Wave Reflection Causes To accelerate the unified wave from (205.8 km/s) to move by speed of light (C=300000 km/s)

(b)

Now we have a gravitational wave moves by speed of light (C=300000 km/s)

This wave is reflected one more time

The gravitational wave reflection causes to square its speed by that – the wave speed was = speed of light (C=300000 km/s) before the reflection and after the reflection this speed will be (C^2=Squared Speed Of Light)

The light beam is produced from this value (C^2=Squared Speed Of Light)

Now we know how the unified wave (205.8 km/s) can be accelerated to move by speed of light (C=300000 km/s) and how this wave can produce a light beam

Conclusion No. (2)

The Gravitational Wave Reflection Causes To Square The Wave Velocity

This is the main useful result from the wave reflection- because without the squaring of the wave velocity no acceleration can be done for the wave and by that the gravitational wave can’t move by speed of light Nor produce any light beam

Notice (1)

The waves are reflected three times in the solar system and the abstract provides strong proves for these reflections and more proves are found in the paper- the waves reflection causes basic changes in planets data and I suppose – the waves reflection causes also to square the waves velocity

Notice (2)

The rate 7.1 is produced by Lorentz length contraction effect as a result for motion by speed (.99C= 297000 km/s)- I proved this fact in (Item no. 5-6 Can Relativistic Effects Be Found In The Solar System?)

THE SUN POINT CREATION

The sun point of space has geometrical features enable to produce the sun rays and that means – the sun rays can be created only in the sun corona and far from the sun NO light beam can be created – let’s see the sun geometrical features in following

(i)

The Sun Point Is A Stationary Point Its Velocity 1 km/s = Zero Approximately

This is important feature – Because

All motions are done relative to the sun point of space – for example- Pluto velocity is 4.7 km/s –means- Pluto moves by 4.7 km/s relative to the sun point of space – Shortly- the whole solar system is in motion (space and planets are in motion) but the sun point is stationary (static point moves by velocity 1 km/s = Zero approximately) Means- the solar system is similar to a sea of water and the sun is similar to a vortex or whirlpool found on the sea page – the vortex doesn’t move with the sea waves -Shortly- the sun point of space is the stationary point in the solar system and all motions are done relative to the sun point of space-

Example – Venus moves by 35 km/s that means Venus moves by 35 km/s relative to the sun point of space – also we know Venus motion produces energy and this energy creates waves in the space and these waves move by velocity 35 km/s – means- these waves move by 35 km/s relative to the sun point of space-

(ii)

Why Is It Necessary For The Sun Point To Be Stationary Point? Because

1- The Gravitational Wave (Unified Wave) Moves By Speed Of Light Relative To The Sun

2- The Gravitational Wave Can NOT Move By Speed Greater Than Speed Of light

3- The Wave Reflection Causes To Square The Different Speed Between The Gravitational Wave Speed And The Sun Point Motion Speed

4- If The Different Speed Is Less Than Speed Of Light (C=300000 Km/S) The Speed Squaring Process Will Never Produce The Value (C^2= Squared Speed Of Light) – means- No Light Beam Can Be Created

Now we see the necessity to make the sun point as stationary point moves by  (Zero approximately =1 km/s) – because – if the sun point moves by any higher speed than (1 km/s) the different speed will be less than speed of light and the squared value will be less than (C^2) and No light beam can be created

Now let’s ask- while the space is in motion as the sea of water – how can this stationary point be created? let’s answer in following

(iii)

The planets were created before the sun creation and the planets revolve around a point in space (any point in space) the revolution creates two velocities on both sides of the revolution- the two velocities are equal in value opposite in direction- the total be Zero- means- the revolution motion creates a stationary point in the revolution center-

By That -the sun point of space is created as a stationary point- and the sun point is the only stationary point in the solar system- for that all motions are done relative to the sun point of space-

4th Question

Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays? the question is logical because

Planet motion energy (½ mv^2) is so small energy and the sun rays energy is massive energy -for that- It’s Logical Question To Know How Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

(1)

The secret is the rates of time using-

The planets motions use different rates of time- by that- the planets motions energies can be accumulated during long period of time to produce massive energy sufficient to produce the sun rays – let’s give examples

Example No. (1)

(One Solar Day Of The Sun Clock = 365.25 Solar Days Of The Earth Clock)

By this rate of time– The Earth motion energy for one complete year can be used by the sun in one solar day – in fact- the solar planets motions energies total during one complete year (365.25 solar days) is accumulated and stored in one energy and be used by the sun motion on one solar day that causes to accumulate massive energy to be used (notice 1461 days = 365+365+365+366) 

Example No. (2)

(One Second Of The Sun Clock=1461Seconds Of The Gravitational Wave Clock)

We remember the unified wave (the gravitational wave) moves by 205.8 km/s -And – the gravitational wave moves in 1461 seconds a distance = 300000 km -BUT the Sun clock doesn’t see this period 1461 seconds but sees only the period (ONE SECOND) – means-

The distance 300000 km is passed in (ONE SECOND)only for the sun clockThat causes the gravitational wave to move by speed of light (C=300000 km/s) relative to The Sun – (the rate of time using and effect is explained in details in item no VII)

VII- The Solar System Description Refutation

(The Sun Is The Planets Motions Result But The Description Supposes The Sun Is The Planets Motions Reason) and (The Matter Is Created Depending On Its Motion But The Description Supposes The Matter Is Created Independently From Any Motion)

VIII – The Planets Motions Use Different Rates Of Time

IX  - The Physicist Wrong Vision Proves

X   - The Refutations Of Many Theories In The Physics Book 

XI - The Proves For My Theory

(There’s A Light Beam Moves By Speed 1.16 Million Km Per Second)

XII-The Solar System History And Neptune Orbit Creation

First Item - Research Methodology

I use the planets data analysis to discover the planets creation and motion facts–

In details- I try to discover how the planet get its data- for example – why Jupiter diameter is 142984 km? why Neptune axel tilt is 28.3 deg? why Pluto orbital period is 90560 days? This method helps greatly to discover the solar system facts let’s provide two examples to explain how this method works

Example No. (1)

Why Is The Moon Orbital Apogee Radius = 406000 Km?

The moon daily displacement =88000 km and during 29.53 days (the moon day period) the displacements total be = 2.598 million km = 2π x 413600 km

The data tells us the moon orbital apogee radius should be 413600 km and also it tells, because the moon daily displacement (88000 km) is so long, the moon should revolve around the Earth through this apogee orbit its radius (413600 km) only and can’t revolve around the Earth through any more near orbit…

Not Facts

The moon orbital apogee radius =406000 km only and the moon revolves around the Earth through near orbits and can reach to perigee radius (363000 km). 

How Can The Moon Do That?

 

The intelligent moon creates an angle (θ) between its motion direction and its orbit horizontal level by that the real displacement (L) through the orbit be less than (88000 km) because it be (L = 88000 km cos θ), as a result the total displacements be less than (2.598 million km) and that makes the moon orbital apogee radius to be decreased from 413600 km to 406000 km.

We should pay attention for the angle (θ), because this angle controls the moon motion features – where- with the angle (θ) increasing the real displacement (L) be shorter and the moon can revolve around the Earth through more near orbits – but –with the angle (θ) deceasing the real displacement (L) be longer and that pushes the moon far from the Earth to more far orbits- The moon orbital motion equation depends on this angle (θ) it tells θ1 = θ0 +1.7 deg where (θ1) = today angle and (θ0) =yesterday angle and 1.7 deg is used as the moon motion degrees per solar day for the equation

Example No. (2)

Can Mars Itself Cause The Earth Moon Creation?

Giant-impact hypothesis tells (NO) – but let’s see the planets data analysis   

I Suppose - Mars Original Orbit Was Between Mercury And Venus

The order (Mercury – Mars – Venus – Earth) shows correct order in planets diameters (and masses), and orbital distances - BUT – Mars had migrated from its original orbit (between Mercury and Venus) to its current one (227.9 million km) and Mars had collided with Venus and then with the Earth in its migration motion – and Mars itself has caused the Earth moon creation- My Mars Migration Theory answers many left questions by Giant-Impact Hypothesis – for example -

Why Does Venus Have No Moon? Mars had migrated from its original orbit (between Mercury and Venus) – and moved to its current orbit (227.9 million km) – BUT- Mars had moved by a force – and then Mars had collided with Venus –and Mars had pushed ALL DEBRIS with it in its Motion Direction because of its strong motion - Venus had found no debris around and for that Venus couldn’t create its moon –But – The Earth mass is greater than Venus’ and the debris lost some of their momentum for that the Earth could attracted some debris and created its moon-Mars has 2 moons and this fact supports my theory because Mars with small mass could attract two  moons because the debris were around it while Venus has greater mass but couldn’t create its own moon because the debris are moved with Mars motion- the rest debris are attracted by Jupiter gravity and created the asteroid belt 

Shortly

The planet data analysis compares between the theory and the planets data to see if there’s harmony between them and if the data logical analysis supports the theory 

Second Item - Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition 

1stProblem The Physicist wrong Vision Contradicts The Nature System 

The Physicist Vision

The physicist supposes there’s (a unit of building)- by that- the physicist sees the matter (mass) as a wall and this wall is consisted of bricks (small similar units) and the physicist searches for this (unit of building)–

For that the physicist divided the matter and found the particles and then the particle is divided into Molecules and the Molecule is divided into atoms and the atom is divided into nucleus and electron moves around and the nucleus is divided into proton and Neutron- and the proton is divided into quarks …etc

The physicist searches for the building unit- for that he divides anything to reach to this building unit- 

The Nature System Vision

The Nature designer aims to create INTEGRATION- as the marriage– male and female- For that- the matter is created complementary one another-means- The Matter Is Created In Pairs (as Gamma ray 1.2 Mev produces electron and positron)

No building unit- AND

I want to show how the physicist causes fatal error for the research method while the physicist divides the elements (from matter to particle to molecule to atom to proton to quarks …etc) this division from out into inner till reach to very small unit which the physicist considered the building unit – that causes to destroy the geometrical design of the integration process- Shortly- the physicist sees a universe (never be created by the designer)- while the designer created the integration is a goal and created tools to perform this integration the physicist destroyed the integration tools while he searched for the building unit which is not found at all.

NOTICE

Another point shows the physicist wrong vision is (The Planet Motion)

While the solar planets move as gears in one machine and all planets motions are unified into one unified general motion- means- all planets motions are unified and produce one result only (one unified motion)- the physicist supposes each planet motion is independent-by that- in place of one machine of gears moves and produces one unified motion (one result) the physicist told us each planet motion is independent and No unification is found for the planets motions –here – one more time the physicist sees very different picture from the real one- in place of one hand has five fingers the physicist sees five independent moving fingers

2ndProblem  Planet Motion Energy Definition

Let’s remember this question where’s Planet Motion Energy?

We agreed planet motion produces energy (½ mv^2) and this energy must be stored in the space as moving waves because planet can NOT store its motion energy inside its body otherwise this planet temperature would be raised- that tells- the space has moving waves produced by planet motion energy

Also –we agreed- planet motion energy creates waves in the space and these waves move by velocity equal this planet velocity-

Shortly- for example- Mercury (47.4 km/s) moves in the space and its motion energy produces waves in the space and these waves move by velocity (47.4 km/s) –this analysis creates 3 difficulties for the physics book let’s see them

First Difficulty

This analysis tells the space has moving waves are produced by planets motions energies– But- the scientists discovered these waves and they told these waves are produced by the gravitational field- and they called them (gravitational waves)- I prove the sun doesn’t produce a gravitational field and has no massive gravity and no planet moves by the sun gravity – But- here we need to answer (from what source these waves are produced?) because planet motion energy analysis forces us to accept that these waves are produced by the planets motions energies

Here – we need to answer (from what source these waves are produced?)

I prove the gravitational waves are produced by the planets motions energies and not by any gravitational field.

I provided two major proves

(1st proof) I proves there’s no gravitational field and the sun has no massive gravity and no planet moves by the sun gravity

(2nd proof) the gravitational waves reflection proves the waves are produced by the planets motions energies because the waves reflection causes effects on the planets data

Second Difficulty

Now we know planet motion energy is stored in the space as moving waves (the gravitational waves)- But- the planets move since long period of time means the planets motions should cause to store massive motion energy in space during this long period- Now -where’s this stored massive energy? also the energy can NOT be stored in space forever- so what’s happening for this stored massive energy? I prove the sun rays are created from this stored massive energy and not from the sun nuclear fusion process- this is my research hypothesis – in all cases we should know how this stored massive energy be used because this massive energy can cause risk for the solar system stability.

Third Difficulty

Newton Mass gravity definition is disproved by planet motion energy

Because

Suppose the moon moves by the Earth mass gravity and the moon motion produces energy (½ mv^2) now let’s ask- From What Source The Moon Motion Energy Is Provided? What’s the moon motion reason? The mass gravity- means- the mass should provide the motion energy- means – if The moon moves by the Earth gravity that necessitates to decrease the masses of the Earth and the moon by the motion energy- here’s the problem- Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass-  this decrease is done because of the motion energy

The analysis tells us–the physicist supposes planet motion produces NO energy this is the only one solution for the problems created by the physicist neglect to observe planet motion energy-

3rdProblem Mass Gravity Force Analysis

The Refutation Of The Sun Gravitational Field

The Sun Doesn’t Produce A Gravitational Field Nor Has Massive Gravity – let’s prove that in following

(i)

The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time- 

(ii)

No Planet Moves By The Sun Gravity–Newton is wrong- because- Planet moves by the force caused its creation- means- planet creation and motion is done by one force only- otherwise this planet would be broken if two forces have effects on it-

Suppose planet is created (by any force) and the sun gravity attracted this planet and forced it to revolve around the sun by the sun gravity (as Newton imagined) that would force this planet to move against its internal structure and that will cause this planet to be broken-

Imagine a human is forced to walk on his hands in place of his legs- this human will be dead by this motion-

That’s why the planet creation and motion is done by one force only- Newton mistake is that he didn’t know how the planet is created- and he considered - the creation force is a historical force has no effect on the current motion- Shortly-the sun didn’t cause to create any planet and the sun doesn’t cause any planet to move

(iii)

We agreed that, mass gravity force can NOT cause any motion- again Newton is wrong- because –any motion will produce energy- suppose the moon moves by the Earth mass gravity- the moon motion produces energy- and – from what source this energy is provided? From the masses of the Earth and the moon –here’s the problem  

Where Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass

BUT Mass gravity is a fact - the mass gravity creates a bond between two masses (The Earth and the moon are bond by their masses gravity ) if some outer force causes the Earth to move the moon will move with the Earth and in this case the outer force will provide the motion energy for the Earth and the moon.

(iv)

The planets order contradicts the gravitation equation- for example- Jupiter the greatest mass is not the most near planet to the sun- when we asked the physicist told us this problem is done by (the planets initial conditions)- all these are wrong- planet orbital distance does NOT depend on the sun mass nor on this planet mass- planet orbital distance depends on its neighbor planet orbital distance – my equation proves this fact- let’s see it

Planet orbital distance equation (my 1st equation)

d^2= 4do (d-do)

where d=planet orbital distance

do= its neighbor orbital distance

Example (1) Venus orbital distance (108.2)^2 = 4 x 57.9 x (50.3)                             

d= 108.2 million km = Venus Orbital Distance       d0= 57.9 million km  = Mercury Orbital Distance

50.3million km=The Distance Between Venus And Mercury  Venus Depends On Mercury

Example (2) Saturn orbital distance (1433)^2= 4 x 778.6 x 655

d= 1433 million km    = Saturn Orbital Distance     d0= 778.6 million km  = Jupiter Orbital Distance

655million km=The Distance Between Saturn And Jupiter Saturn Depends On Jupiter

All planets orbital distances are defined based on their previous neighbor planets orbital distances- the equation is correct and discussed in item no. (III)- Shortly- planet mass has no any effect on this planet orbital distance definition.

Notice

Planet orbital distance definition depends on its neighbor orbital distance this fact is proved by many different methods my equation is one method only of them, all these methods don’t use any planet mass- all planets orbits are defined based on their neighbor planets orbits (item No. III has more proves)

(v)

Also-Newton told-planet motion depends on its mass- means-planet velocity depends on its mass- this also is wrong - I define planet velocity (my 5th equation)- planet velocity is defined by many rules all of them don’t use any planet mass- at all Planet mass has no rule in this planet velocity definition.

The Conclusion

The Sun Doesn’t Produce Any Gravitational Field

4th Problem The Matter Creation And Its Nature Definition

In following we compare between the physics book theory about the matter creation and my theory about it- the discussion contains Two points

I- The Physics Book Theory About The Creation of the Matter (Mass)

  1. The Matter Is Created Independently From Any Outer Motion – means- even if the matter motion is stopped the matter is still found and never be perished (the motion here means the outer motion and not the atoms motions)
  2. The Matter Is Motionless By Nature
  3. The Matter Needs Mass Gravity Force To Cause Its Motion
  4. The Matter Data And Dimensions Are Not Changed By Its Motion
  5. The big bang theory tells planet is created by random creation- for example- Jupiter diameter is created by unknown value and Jupiter is collided many times in its history and these collisions caused Jupiter diameter (and mass) to be decreased- based on that– Jupiter diameter value (142984 km) is found by random process and without any geometrical reason behind- by that- the big bang theory prevent us to use any planet data to discover the creation and motion rules of this planet.
  6. Note – The physicist doesn’t use planet data in forming a theory to explain this planet motion-for example- Jupiter diameter is 142984 km and the physicist has a theory explains Jupiter motion but if Jupiter diameter is changed into 180000 km the theory will have no change because the physicist doesn’t consider Jupiter diameter is a player in its motion- that’s why the big bang theory is wrong because it supposes the change in diameter and mass doesn’t cause a change in motion 
  7. Shortly- the physics book doesn’t tell how the matter is created nor what’s the matter nature- we remember Einstein problem in physics- he told (All researches in particle electromagnetic properties can’t predict this particle behavior in the daily life physics) that shows two different branches of the physics one for the electromagnetism and the other for the mass gravity physics

II- My Theory About The Creation of the matter (mass) –

The Matter Main Features Are: 

  1. The Matter Is Created In Pairs  Means- No Single Matter Is Created -This conclusion depends on Gamma ray experiment -From Gamma ray (1.2 Mev) electron and positron are created- by this experiment- the matter is created in pairs from electromagnetic waves- the produced pair particles motions depend on each other (or related to each other) (notice the creation system is male and female–two complementary matters-that tells the source of energy must be electromagnetic wave)
  2. The matter is created depending on its motion- means- the motion is found before the matter creation- this conclusion depends on my planet diameter equation because planet diameter is created depending on this planet velocity (for example Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)- means–Planet motion is defined before its creation -later explained
  3. Lorentz transformation proves Matter dimensions are effected by high speed motion- also- Lorentz transformation proves the matter and space are created from the same energy for that particle length and distance both are contracted by the same one equation (Lorentz length contraction effect)
  4. The Matter Is Created Depending On Light Motion –

The Discussion Proves These Features Strongly

The Matter Creation Depends On 5 Main Facts  Which Are

  1. Gamma Ray Can Produce Electron And Positron
  2. Lorentz Transformation
  3. My Planet Diameter Equation
  4. The Coherence Of Light (Young Interference) 
  5. Planet Diameter Creation Depends On This Planet Orbit

(Item No. i) Gamma Ray Can Produce Electron And Positron    From Gamma ray (1.2Mev) one electron and one positron are created- I prove the matter is created by this method- means- the matter is created in pairs and no single matter is created

(Item No. ii) Lorentz Transformation

Lorentz transformation tells

If a particle moves by high speed motion (near to speed of light), this particle length would be contracted and its mass would be increased and its time would be dilated

I accept this meaning clearly and find this meaning supports my theory strongly BUT Many physics Books tell the following

(NO Real Change Is Done For Any Particle Data Moves By High Speed Motion But All Changes Are Illusions Of Measurements)-

Means- while a particle is moving by high speed motion and the experiments results show contraction in its length and increasing in its mass and dilation in its time – these changes are just illusions in measurements and the particle itself has no change in any data - tenth of books tell this meaning clearly and with confirmation and the physicist killed Lorentz work and made Lorentz transformation measures illusions and not facts- regardless the empirical proves which supports Lorentz transformation  

I refuse these books idea because

  1. The Physics Is The Measurements Science And What’s Measured Is The Fact
  2. If no real changes are done how the problem of Michelson and Morelly experiment is solved?- also- Why the synchronous events in one frame can’t be synchronous in another (as Einstein stated) where no change is found for any data- the distances are Not contracted nor the time is dilated nor the mass is increased why the events can NOT be synchronous in any frame?  
  3. If the particle own data is measured correctly while it moves by my motion velocity and these measurements are suffered from illusions because the particle moves by high speed motion relative to my motion that means (I’m the universe reference point)
  4. We notice- Lorentz length contraction equation can’t distinguish between particle length and a distance, both can be contracted by the same one equation- that supports my theory tells (Matter And Space Are Created From The Same Energy)–
  5. My planet diameter equation proves planet diameter is created depending on this planet motion and also proves the matter and space are created from the same one energy which supports Lorentz transformation 

NOTICE  

The major importance of Lorentz transformation is

  1. The transformation proves there’s a connection between particle dimensions and its  motion means the motion has effect on particle dimensions definition and by that the matter (mass) can’t be independent because its existence depends on a motion- shortly (The Matter Existence Depends On Its Motion
  2. The matter and space are created from the same energy- because- particle length and the distance both are contracted by the same equation (Lorentz length contraction effect) shortly (Matter And Space Are Created From The Same One Energy) (This theory is proved by my planet diameter equation)

(Item No. iii) My Planet Diameter Equation

My Planet Diameter Equation (v1/v2)= (s/r)= I

v = Planet Velocity                          

r = Planet Diameter

I= Planet Orbital Inclination   

s= Planet Rotation Periods Number In Its Orbital Period

v2, s, r and I are belonged to one planet and v1 is belonged to another planet

The planet (v1) is defined by test the minimum error 

Earth Equation uses Neptune velocity                        

Mars Equation uses Pluto velocity

Jupiter Equation uses the Earth moon velocity      

Saturn Equation uses Mars velocity

Uranus Equation uses Neptune velocity (As Earth)

Neptune Equation uses Saturn velocity

Pluto Equation uses the Earth moon velocity (As Jupiter)

Example  Neptune Equation (89143 /49528) = 9.7/ 5.4 =1.8                  

89143                   = Neptune rotation periods number in Neptune orbital period

49528 km   = Neptune diameter            

9.7 km/s = Saturn velocity and

5.4 km/s      = Neptune velocity             

1.8 degrees= Neptune Orbital Inclination

59800 days = Neptune orbital period (and Neptune rotation period =16.1 hours)

Discussion

(1)

The Equation Concept  Planet diameter should be a function in its orbital distance –otherwise- this planet would be broken by its motion- BUT- the designer can’t create a function has only 2 variables (Planet diameter and its orbital distance)- because– If this planet changes its orbit (orbital distance) its diameter would be broken also because the diameter is a direct function in the orbital distance without any other variables -As A Result- the designer created planet diameter as a function in this planet rotation period and the planet rotation period is created as a function in this planet velocity and the planet velocity is created as a function in this planet orbital distance- by that- the function between Planet diameter and its orbital distance is created but also it contains many variables (rotation period, orbital period and velocity)- by that- if  the Planet changes its orbital distance- this planet orbital period, and velocity and rotation period would be changed but its diameter will be saved

(2)

Matter Definition Based On My Planet Diameter Equation

My equation tells, Planet diameter is created depending on its velocity- for example Neptune diameter is 49528 km because it velocity is 5.4 km/s where the velocity is used in the diameter definition equation- means- Planet motion is defined before this planet creation- how can that be possible? let’s answer in following

  • The original energy was in motion and planet matter is created from this moving original energy and planet matter dimensions are defined by this original energy motion features- after Planet creation, the planet moves with this original energy motion means the planet moves this same motion based on which the planet data and dimensions are created that’s why Planet data is in full harmony with its motion features- that explains how planet diameter is created based on its velocity
  • Shortly- the matter is similar to a muscle in a creature- the muscle dimensions depend on the blood motion- similar to that- the matter dimensions depend on this energy motion from which this matter is created-
  • Also space is similar to the sea of water- and the matter is similar to a whirlpool (vortex) is found on the sea page- the matter creates for itself a distinguished picture different from the space picture and the matter moves by a different velocity from the space motion velocity- as the whirlpool (vortex) on the sea page- it’s created by the sea water but it has a distinguish picture from the sea waves and it moves by a different velocity from the sea waves- that explains how the moving energy can effect on the matter creation data- for example- we have a whirlpool (vortex) its diameter is 2 meters- why does this diameter equal= 2 meters? The diameter is created depends on the water motion velocity, pressure, amount and motion angle and many other features of (the moving water)- the moving water creates this whirlpool with diameter 2 meters and as long as the water motion is not changed this diameter will not be changed also- (notice- The Gravitational Waves Prove The Space Has Motion And Not Static)

NOTICE   Also (No Planet Moves By The Sun Gravity) Newton is wrong, because planet moves by the energy from which this planet is created- as explained here – means– The Matter Is Not Motionless By Nature- The Matter moves with the energy from which this matter is created-

(3)

Matter Existence Depends On Its Motion

Shortly-if the motion is stopped the matter will be perished- again the matter is similar to a muscle in a creature body- if the blood motion is stopped the muscle will be perished- this is the fact- Based on that- Neptune velocity is 5.4 km/s if Neptune stops its motion Neptune diameter and matter will be perished-

The fact I prove is (The Matter Creation Depends On Its Motion) – Lorentz transformation and my planet diameter equation supports this fact strongly 

DEEP DISCUSSION

(4)

The Matter Is Created In Pair And No Single Matter Is Created

Planet velocity is defined based on the rule (v1v2=constant= 322) let’s prove that

322 = 47.4 km/s (Mercury velocities)         x 6.8 km/s  (Uranus velocities)                            

322 = 35 km/s  (Venus velocity)                 x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)                    x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)                x 13.1 km/s (Jupiter velocity)                        

322 = (17.9 km/s)^2 (Ceres velocity)                   (Max error 2%)

The idea is understandable – let’s summarize it in following

(i)

The planets velocities are created complementary one another based on the rule (v1v2=constant= 322) and

(ii)

Planet data is created depending on its velocity- means- planet velocity is the first data in this planet creation and based on the velocity all other data is created- as we see in the planet diameter equation, planet diameter and all creation data is created depending on this planet velocity- means- based on (v1/v2) but planet orbital distance is defined based on  (v1/v2)^2 and planet orbital period is defined based on (v1/v2)^3

Based on this system planet data is created but we know that planet orbital distance is defined before planet creation and based on the orbit, planet velocity is defined and then all data is defined based on the planet velocity-

(iii)

Now the idea is clear- let’s summarize it

The planets velocities are created complementary one another based on the rule (v1v2=322) and planet diameter is created depending on its velocity for that reason planet diameter is created complementary to another planet diameter- let’s prove that

341.7 million km = Jupiter diameter 142984 km          x Pluto diameter 2390 km

341.7 million km = Jupiter radius 71492 km       x Mercury diameter 4879 km (2%)

341.7 million km  = Saturn diameter 120536 km x 4 Mars diameter 6792 km (4%)

341.7 million km = Uranus diameter 51118 km  x Earth radius 6378 km (5%)

341.7 million km = Neptune diameter 49528 km x 2 The Moon diameter 3475 km

Clearly we see the planets diameters are complementary one another- because the matter is created in pairs and no single matter is created

Notice (1)

Suppose the physicist can create a type of single matter which has no complementary can that disprove my theory tells (The Matter Is Created In Pair And No Single Matter Is Created?) NO NEVER

Because- the matter is created from the original energy and the energy uses a system depends on matters in pairs complementary one another-  means any type of matter can’t be used by the original energy will be neglected and useless because the energy uses matters in pairs  

(Item No. v) The Coherence Of Light (Young Interference)

I provide proves tell Gamma Ray and Young experiments are used in the solar planets creation – let’s remember these experiments

(1st Experiment) Gamma ray (1.2 Mev) can produce electron and positron

(2nd Experiment) the coherence of light experiment (Young Interference)

Let’s provide the proves for the using of these two experiments in the planets creation

Gamma Ray Experiment

There are two facts prove this experiment concept is used in the planets creation

First Fact Planet creation data is defined based on its velocity- this fact is proved by my planet diameter equation because planet diameter is created depending on this planet velocity as explained before (Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)-means- Planet velocity is the first data in this planet creation process and based on this velocity all planet creation and motion data is created

Second Fact Planet velocity is complementary one another, which is proved by the rule (v1v2= 322 = constant)- that shows the planets data must be complementary one another as I have proved in the diameters values analysis

Shortly – The planets data are complementary one another (similar to the electron and positron are created from Gamma ray)

The Coherence of light Experiment (Young Interference)

There are two facts prove this experiment concept using in the solar system creation

1st Fact

The planets order is typical for Young interference- if we consider planet diameter is equivalent to the fringe breadth by that the planets order be typical for Young interference where the greatest fringe is in the middle (the greatest planet Jupiter) and the fringes breadth is deceased gradually on both sides

(I Proved Mars Original Orbit Was Between Mercury And Venus- so the original inner planets order was Mercury – Mars – Venus – The Earth) which shows gradual decreasing in diameters- the outer planets diameters also is decreased gradually      

2nd Fact

There’s a coherence of light in the solar system- what does that mean?

Means- while planet orbit has energy of a light beam- another light beam enters this orbit by that there are two light beams in the same orbit- these two light beams create coherence of light- the planets orbits creation explain this fact in details- but here I want to prove this fact by simple direct proof before the planets orbits creation discussion –let’s write this proof here

We have seen that the planets velocities are complementary one another by the rule (v1v2=constant=322) and planet all data is created depending on its velocity- by that the planets diameters also follow this rule where (R1R2= constant) as I have proved in my planet diameter equation

Now let’s ask – can the planets orbits complementary one another? NO

So- how this rule (v1v2=constant= 322) is found?

By the energy reflection- means- the energy is reflected in the solar system and this reflection of energy causes the velocities to be reflected on one another and that produced the rule (v1v2=constant= 322)

We note the planets can’t be reflected on each other because the planets are connected with their orbits- and the energy reflection needs freedom in motion- means- this reflection of the planets velocities are done by effect of the energy reflection- please note- the energy reflection is a proved fact in the solar system- this fact is proved by hundreds of the planets data because the energy reflection cause effects on the planets data- shortly- the planets data is created by effects of the energy reflection-

Here we see the coherence of light is created because the orbits have energy where the space is energy and (Another energy is reflected and moved through all orbits and caused to create the planets data) by that each orbit has two energies together- I prove both energies are light beams-for that the two light beams create a coherence of light

I want to say- there are two facts prove the solar system has coherence of light which are the reflection of energy and the planets order

The planets orbits creation explain this theory in details I discuss it in item no. (**)

NOTICE

Please Note – I proved Mars original orbit was between Mercury and Venus and Mars is migrated to its current orbit behind the Earth- by that the inner planets original order was (Mercury – Mars – Venus – The Earth) here we see planets diameters are decreased gradually from the Earth to Mercury where Jupiter was the planet beside the Earth- means – the planets diameters are decreased gradually from Jupiter to Mercury- and the outer planets – the planets diameters also are decreased gradually- as I explained – if we compare planet diameter with fringe- the planets order be typical to Young interference – but – the order is reflected each other –let’s see that

The inner planets (Mercury – Mars – Venus – The Earth)- the order tells greater diameter necessitates longer orbital distance – but

The outer planets (Jupiter– Saturn– Uranus– Neptune –Pluto)- the order tells greater diameter necessitates shorter distance

Here we see the orders are reflected one another- but in Young interference there’s no reflection- I want to say- the planets orders are reflected because of the sun position- if the sun is not found no reflection will be found- that means- the reflection of energy caused to create the sun in the solar system because the sun creation causes the planets order to be reflected one another- my paper proves the sun is created after all planets creation and motion – and the sun is created by the reflected energy 

(Item No. vi) Planet Diameter Creation Depends On This Planet Orbit

The solar planets matters and their distances are created from one energy and this one energy is provided by one light beam and this light beam moves by speed = 1.16 million km per second (The speed is proved strongly and decisively)

The light (its speed 1.16 million km per second) built the solar system orbits starting from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each other (this fact is proved by my planet orbital distance equation) after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second before the space creation (In Mercury Orbit) and its speed becomes 300000 km/s after the space creation (in Pluto orbit) as result for the energy consumption in the space creation- 

In Pluto orbit - the light could Not move any further to build any more orbits because any additional space creation will consume more energy and that will decrease the light speed to be less than 300000 km/s (the known speed of light) – and – No known light moves by speed less than 300000 km/s – means- the light had no energy to move any further after Pluto orbit- for that- the light returns to its origin point (Mercury orbit) for that the light is reflected with speed (300000 km/s) from Pluto orbit to Mercury orbit passing through the built orbits– no energy is required in this motion for that the light beam moves with speed of light (300000 km/s) till Mercury orbit.

Please note- the light (300000 km/s) is reflected from Pluto to Mercury

The reflection of the light beam (300000 km/s) Caused To Create The Solar Planets

Comments

  • The light (1.16 million km per second) created the orbits with energy means the created orbits have energies- and each planet orbit energy is less than its previous neighbor orbit because the planets velocities are decreased gradually- almost the energy is less by rate 80% because the velocities are rated with (0.8)   
  • Each planet diameter is created based on its orbit energy- the planet is similar to a tree planted in a ground and the planet orbit is this ground- that’s why each planet diameter depends on this planet velocity and orbital inclination- please note Mars diameter equation proves this fact because Mars original orbit was between Mercury and Venus and Mars diameter is created based on this orbit energy and Mars had migrated from its original orbit to its current one behind the Earth but Mars diameter equation still shows Mars original orbital inclination (5.1degrees) while Mars current orbital inclination is 1.9 degrees- Mars diameter is created based on this inclination (5.1 deg) for that this inclination is seen in Mars diameter equation frequently (please review my planet diameter equation)    
  • The Occurrence Of The Coherence Of Light - The light beam (300000 km/s) is reflected and passed through all created orbits- that shows there two light beams are found in the same area (in any orbit)- because in each orbit there’s this orbit energy which is found with the orbit creation by the light (1.16 million km per second) for that we say (Space Is Energy) because any orbit has energy found with its creation- and also the reflected light beam (300000 km/s) passed through all orbits- by that- in any orbit there are two different light beams (two different energies) and these light beams create A Coherence together- 
  • The Amazing Coherence Of Light There’s a major interesting point here-the light beam (300000 km/s) created a coherence with the light 1.16 million km per second! BUT HOW?? because the light 1.16 million km per second is consumed and its energy is used for the space creation and the rest energy is this light beam moves by known speed of light (300000 km/s)!! how can the light beam (300000 km/s) meet the original light beam the 1.16 million km per second to create this coherence of light?
  • Please note- the speed 1.16 million km per second is the major used speed in the solar system data- means- the speed 1.16 million km per second is the secret by which the solar system data can be understood because all data is created as function in this speed-I prove that in the next pages- but this information is written to explain that the light 1.16 million km per second is consumed but its energy still works and causes continuous effect- BUT HOW??   

Let’s write the answer

  • The light (300000 km/s) is reflected to move from Pluto to Mercury (while the original light 1.16 million km per second moved from Mercury to Pluto) means the light (300000 km/s) moved in opposite direction for the motion of the original light 1.16 million km per second- MEANS- the light (300000km/s) moved in the opposite direction of space to reach to Mercury- BUT NOT ONLY- in fact- the light (300000 km/s) moved also in the opposite direction OF TIME and moved into its own past – and in past – this light beam (300000 km/s) met the original light beam 1.16 million km per second – and in past – the two light beams created the coherence of light and then this coherence of light results have effects on our present time-
  • Shortly- the coherence of light in the solar system proves the light beam (300000 km/s) moved on the time-axis and this is an empirical proof for the time-axis motion where the light can move simply on the time axis
  • Notice – this motion can help us to create the time machine- because- if the light can move into the past that means we may use this motion and take photos of the past events and this will be our time machine which can go into the past and make photos and videos for the past events – even the events since thousands of years we can see in videos or in photos – this motion of light can give us a great option to create our machine of time      
  • Notice  the original light beam 1.16 million km per second can not move into the future to meet the light beam (300000 km/s) because in future the original light 1.16 million km per second is NOT found because its energy is consumed in the space creation- but- the light beam (300000km/s) can move into the past because in the past the light beam (300000 km/s) was part in the original light beam 1.16 million km per second and by that the two light beams be found in the same time   
  • Notice – we can not travel ourselves into the past- because planet diameter is created depending on its velocity- as proved by my planet diameter equation- means- the matter is created depending on its motion velocity- and the velocity is a motion in defined direction- the light is free in motion and doesn’t forced to move in any direction for that the light has this option to move on the time axis but the matter is created depending on a motion in defined direction (no freedom in motion) for that the matter can’t move on the time axis because the motion force the matter to move in a defined direction – the matter moved just to the future– and the matter can’t move into the past-  
  • Planet Creation Machine Please note–we see the coherence of light is done by the two light beams 300000 km/s and 1.16 million km per second (because the light beam 300000 km/s can reach to the light 1.16 million km per second by moving into its past)- shortly – here we have 2 light beams in any orbit- and these two light beams cause two motions – we can imagine these two motions are perpendicular on each other – this perpendicular motions create a wave and planet is created as a wave (Particle is a wave also)- that explains how the planets are created 
  • Please note-  The reflection of energy is very effective in the solar planets data because the reflection of energy caused the planets to be created- the matter can’t be created by the energy of any orbit alone but the reflection of energy adds second energy inside each orbit- by that- two energies are found in any orbit (two light beams) by these two light beams the light coherence is created and also the planets are created as waves-that explains why the planets data prove the reflection of energy because the planets are created by this energy reflection- as when we plant a tree we need a ground and we need seeds to be put in this ground- two players- the planets are created by two energies (two light beams coherence) and for that the planets velocities are defined based on the two speeds (300000 km/s) and (1.16 million km per second) as planet velocity definition proves.
  • Please note  the Matter Is Created In Pairs (as electron and positron from Gamma rays 1.2 Mev) – this is the main system of creation but -In planets creation the rule is used with some complex method- the complementary is found for the planets velocities and the planets data is created depending on these velocities- the same concept but the method is more complex- this similar to the creature creation- the cell reproduction is done by split the cell into two new cells- but in higher creatures the reproduction use more complex methods but the cell method is still the base of these complex methods  
  • Please note  the previous analysis tries to conclude how the planet matter is created – I put all available facts to reach to this conclusion- the matter real mechanism may be still not clear but many provided facts help to reach to this mechanism- also- we know the main concept behind the matter creation which is (The Matter Is Created In Pairs And Not Single Matter Is Created)
  • This Concept Is Proved Strongly And Clearly By The Gamma Rays Experiment And The Planets Data

 (Item No. vii) The Proves Of The Light Speed 1.16 million km per second

THE SPEED PROVES

In following I prove the speed 1.16 million km per second is found

The paper provides many powerful proves – but - here I refer to 4 proves only

(1st Proof)

Planet Velocity Analysis proves the speed 1.16 million km per second

Data

322 = 47.4 km/s (Mercury velocities)  x 6.8 km/s  (Uranus velocities)                         

322 = 35 km/s  (Venus velocity)       x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)          x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)       x 13.1 km/s (Jupiter velocity)                        

322 = (17.9 km/s)^2 (Ceres velocity)                               (Max error 2%)

Discussion

This is one rule used to define planet velocity- we know this rule (v1v2 = constant =322) – other rules are discussed in planet velocity definition- here we ask only

Why the constant is 322?? Because 1160000 seconds = 3600 x 322 hours

Means – for example

Mercury (47.4 km/s) moves in 6.8 hours a distance 1.16 million km – and

Uranus (6.8 km/s) moves in 47.4 hours a distance 1.16 million km-

Means- the light moves 1.16 million km but we see it as 1160000 seconds and based on this period the constant 322 hours is defined and based on this constant the planets velocities are defined- means- the planets velocities are defined as functions in the speed 1.16 million km per second

(2nd Proof) the planets orbital circumferences total is defined by light speed 1.16 million km per second- let’s prove that 

100733 million km = 86400 seconds x 1160000 km/s

100733 million km = The Planets Orbital Circumferences Total

86400 seconds       = The solar day

Means- light its speed 1.16 million km per second passes in a solar day a distance = 100733 million km = The Planets Orbital Circumferences Total

The planets data analysis proves that the solar day is the major period of time in the solar system- that because- all planets rotation periods are defined based on it- the paper proves this fact strongly

 (3rd Proof)

The planets orbits and orbital distances are created from the energy of the light beam its speed is 1.16 million km per second- for that- this speed is registered in the distances data – let’s prove that in following

Example

778.6 million km (Jupiter orbital distance) = 1160000 km/s x 671 seconds

721 million km (Jupiter Mercury distance) = 1160000 km/s x 629 seconds

Where

671 million km = Jupiter Venus Distance

629 million km = Jupiter Earth Distance

This example tells that

The light (its speed 1.16 million km per second) created the distances based on each other- means

The light uses 671 million km (Jupiter Venus Distance) as a period of time 671 seconds to pass the distance 778.6 million km (Jupiter Orbital Distance)   

Also -the light uses 629 million km (Jupiter Earth Distance) as a period of time 629 seconds to pass the distance 721 million km (Jupiter Mercury Distance)   

By this method the light (1.16 million km per second) creates the distances based on each other- means – the distances be created in one network and by one design

the previous data is example for so many other distances let’s see them in following

(778.6 / 671)= (721/629) = (629/551)= (2x551/940)= (4900/4188) = (5906/5127)= (5127/4437) = (4345/3717)= 1.16

Where

778.6 million km = Jupiter Orbital Distance 

721 million km    = Jupiter Mercury Distance 

671 million km    = Jupiter Venus Distance 

629 million km    = Jupiter Earth Distance 

551 million km    = Jupiter Mars Distance 

940 million km    = Earth Orbital Circumference

4188 million km  = 2 x 2094  million km (Jupiter Uranus Distance)

4900 million km  = Jupiter Orbital Circumference

5906 million km  = Pluto Orbital Distance

5127 million km  = Pluto Jupiter Distance

4437 million km  = Mercury Neptune Distance

4345 million km  = The Earth Neptune Distance

3717 million km  = Jupiter Neptune Distance

The paper provides so many other powerful proves for the speed 1.16 million km

Notice

 (1.16/0.3) x 2π = 24.3

The equation tells, because the solar system is created by light beam its speed 1.16million km per second with its other speed 300000 km/s

For that - the space is created in curved lines (2π) and the time is created based on the solar day (24 hours)- that explains why the planets orbital circumferences total depends on the solar day period

(4th Proof)

300000 = (205.8)^2 x 7.1 where

The 9 planets velocities total 176 km/s and I add the Earth moon velocity 29.8 km/s the total be 205.8 km/s - the unified wave velocity (205.8 km/s)

7.1 is Lorentz length contraction effect produced by speed 99% of speed of light-

Shortly- the reflection of energy causes to square the wave velocity for that the unified wave velocity (205.8 km/s) is squared by the energy reflection

Now (205.8 km/s)^2 = 42354

The rate 7.1 causes to increase the distance from (42354 km) to (42354 x 7.1= 300000 km)- note-although 7.1 is Lorentz length contraction rate but it increases the distances in place of the contraction effect because the reflection of energy causes to reflect the geometrical effects-

shortly the equation (300000=(205.8)^ x 7.1) proves the planets velocities are defined as function in the known speed of light (300000 km/s)   

that proves the planets velocities are defined based on the two speeds of light –the known speed of light 300000 km/s and the original speed of light 1.16 million km per second.

NOTICE

Lorentz length contraction effect for a velocity 99% of speed of light (297000 km/s) is (7.1) as seen in the equation but the solar system uses this rate with modification

(7.1/100)+ 1 = 1.0725

And this final rate (1.0725) controls 40% of all planets data (distances, periods, axial tilts and other data)- this effect is a proof for the motion by high velocity because this rate (1.0725) controls 40% of all data in the solar system and no explanation except Lorentz length contraction effect- more proves are in (Item No. 5-6 Can Relativistic Effects Be Found In The Solar System?)

(Item No. viii) Planet creation depends on light motion

The previous analysis proves planet diameter is created depending on its orbit- specifically- planet diameter depends on its velocity and the velocity depends on its orbit- this fact is proved by my planet diameter equation (where planet diameter is created depending on its velocity) and by Kepler statement (Planet orbit defines its velocity) – but-

Why Does Planet Orbit Define Its Velocity?

Where I proved no planet moves by the sun gravity- by that the planet orbital distance has no effect on this planet motion or velocity nor planet mass has any effect on its velocity-So - Why Does Planet Orbit Define Its Velocity? The next data proves there’s a connection between planet velocity and its orbit through light motion

DATA

300000 km                              = 4.7 km/s (Pluto velocity) x 3600 x 17.73

5906 s x 300000 km/s   = 1773 million km

300000 km                              = 5.4 km/s (Neptune velocity) x 3600 x 15.43

5144 s x 300000 km/s   = 1543 million km                   ((5144= 4495 x (1.0725)^2)

300000 km                              = 9.7 km/s (Saturn velocity) x 3600 x 8.6

2870 s x 300000 km/s   = 8600 million km                  

300000 km                              = 6.8 km/s (Uranus velocity) x 3600 x 12.26

4085 s x 300000 km/s   = 1226 million km                  

300000 km                              = 13.1 km/s (Jupiter velocity) x 3600 x 6.36

2120 s x 300000 km/s   = 636 million km          

Where

5906 million km            = Pluto Orbital Distance

4495 million km            = Neptune Orbital Distance

2872 million km            = Uranus Orbital Distance = 2 x Saturn Orbital Distance

4900 million km            = Jupiter Orbital Circumference

Notice

18048 million km (Uranus Orbital Circumference) = 4.4 x 4085 million km

4900 million km (Jupiter Orbital Circumference)   = 2.3 x 2120 million km

4.4 = 2.2 x 2 (with 2.3 the error 5%)

Discussion

The data shows each outer planet velocity is related to its orbital distance by effect of the light motion (300000 km/s)- Uranus and Jupiter shows the rate 4.4 which related to Jupiter (3.1 deg Jupiter axial tilt + 1.3 deg Jupiter orbital inclination)- the energy is reflected from Uranus to Jupiter that causes the two planets use the same rate.

The data proves the planets motions depend on light motion and explains how the planet orbit defines its velocity

Notice

0.8 = (27.8 /35) = (24.1/29.8) = (10.8/13.1) = (5.4/6.8) = (17.2/21.4) = 19.8/24)

Where

35 km/s       = Venus velocity  

29.8 km/s    = The Earth velocity  

27.8 km/s    = The moon velocity  

13.1 km/s    = Jupiter velocity  

6.8 km/s      = Uranus velocity  

5.4 km/s      = Neptune velocity   note (10.8 = 5.4)

17.2 hours = Uranus Rotation Period

21.4 hours = 2 x 10.7 h Saturn Rotation Period

19.8 hours = 2 x 9.9 h Jupiter Rotation Period

24 hours     = The solar day period

The data shows harmony between the planets velocities and their rotation periods

Third Item - My 5 Equations 

My 5 Equations Prove Planets Creation and Motions Data Is Defined By Geometrical Rules (NO Random Creation)-I provide here the three main equations (1st, 4th and 5th) let’s refer to them in following 

Planet orbital distance equation (My 1st equation)

d^2= 4do (d-do)

where d= planet orbital distance and do= its previous neighbor orbital distance

Example (1) Venus orbital distance (108.2)^2 = 4 x 57.9 x (50.3)                             

d= 108.2 million km = Venus Orbital Distance

d0= 57.9 million km  = Mercury Orbital Distance

50.3million km=The Distance Between Venus And Mercury  Venus Depends On Mercury

Example (2) Saturn orbital distance (1433)^2= 4 x 778.6 x 655

d= 1433 million km    = Saturn Orbital Distance

d0= 778.6 million km  = Jupiter Orbital Distance

655million km=The Distance Between Saturn And Jupiter Saturn Depends On Jupiter

The equation depends on the planets order, just 2 neighbor planets can be used

The equation exceptions are, Earth depends on Mercury Not Venus – and Mars depends on Venus Not Earth And Pluto depends on Uranus Not Neptune

The Equation Concept Support

let’s suppose–There’s a right triangle by the 3 points The Sun, Mercury and Venus)- by that - Venus angle is (61 degrees) because Venus orbital distance (108.2 mkm) x cos (61) = Venus Mercury distance (50.3 mkm) – and

Earth angle is (51 degrees) because Earth orbital distance (149.6 mkm) x cos (51) = Earth Mercury distance (91.7 mkm) – and

Mars angle is (41.7 degrees) because Mars orbital distance (227.9mkm) x cos (41.7)= Mars Mercury distance (170 mkm)- and

Jupiter angle is (22.2 degrees) because Jupiter orbital distance (778.6 mkm) x cos (22.2)= Jupiter Mercury distance (721 mkm)

Similar to that – Saturn angle is 16.5, Uranus angle is 11.6 deg, Neptune angle is 9.2 deg and Pluto angle is 8 deg- these angles follow the same system

for example -Pluto angle is (8 degrees) because Pluto orbital distance (5906 mkm) x cos (8)= Pluto Mercury distance (5848 mkm) –

NOTICE No. (1)

The right angle and its triangle is (a hypothesis) – but we can prove it’s a fact because (v1/v2) = (θ1/ θ2) -means – these angles are rated with their planets velocities – for example (Neptune velocity 5.4/ Pluto velocity 4.7) = (9.2 deg /8 deg)

NOTICE No. (2) these angles are complementary one another for that

940 = 61 x 2 x 8 = 51 x 2 x 9.2 = 41.7 x 22.2

(61 degrees) is Venus angle and (51 degrees) is The Earth angle and (41.7 degrees) is Mars angle and (8 degrees) is Pluto angle and (9.2 degrees) is Neptune angle and (22.2 degrees) is Jupiter angle

DISCUSSION

The equation and angles system data prove the following

(1)

The planets orbital distances are defined based on their neighbors and NO mass is required to define it- Newton is wrong- planet orbital distance is Not defined based on this planet mass (also planet motion doesn’t depend on its mass)

Shortly- the mass is not related for the orbital distance definition at all

(2) The gravitation equation is wrong because it contradicts the planets order- for example (Mercury- Venus – the Earth) this order tells more mass needs longer orbital distance while the gravitation equation tells more mass needs shorter distance- clearly the equation contradicts the planets order- also Jupiter the greatest mass is not the more near planet to the sun – when we asked the physicist he told this is happened because of the planets initial conditions- my equation proves no initial conditions have effects on any distance – all distances are defined by the same one rule and the angles system supports the equation concept proves that (the planets orbital distances are defined based on each other and no mass is required in this definition)      

Planet Diameter Equation (My 4th equation)

My Planet Diameter Equation (v1/v2)= (s/r)= I

v = Planet Velocity                          

r = Planet Diameter

I= Planet Orbital Inclination   

s= Planet Rotation Periods Number In Its Orbital Period

v2, s, r and I are belonged to one planet and v1 is belonged to another planet

The planet (v1) is defined by test the minimum error 

Earth Equation uses Neptune velocity                        

Mars Equation uses Pluto velocity

Jupiter Equation uses the Earth moon velocity      

Saturn Equation uses Mars velocity

Uranus Equation uses Neptune velocity (As Earth)

Neptune Equation uses Saturn velocity

Pluto Equation uses the Earth moon velocity (As Jupiter)

Example  Neptune Equation (89143 /49528) = 9.7/ 5.4 =1.8                  

89143                   = Neptune rotation periods number in Neptune orbital period

49528 km   = Neptune diameter            

9.7 km/s      = Saturn velocity and

5.4 km/s      = Neptune velocity             

1.8 degrees= Neptune Orbital Inclination

59800 days = Neptune orbital period (and Neptune rotation period =16.1 hours)

All planets diameters follow this equation perfectly 

Notice

This equation is discussed with matter creation and definition (item no. I) also the equation is analyzed and discussed with all details in the paper discussions 

Planet velocity equation (My 5th equation)

Planet velocity definition is important point of study because many planet data is defined based on its velocity- specifically

Planet diameter is defined based on the rate (v1/v2) by my planet diameter equation –discussed before – and

Planet orbital distance is defined by the rate (v1/v2)^2 –and

Planet orbital period is defined by the rate (v1/v2)^3

Please note – Kepler stated (Planet orbit defines its velocity) and it’s fact proved by the planets data – but Newton stated Planet motion depends on its mass- this is NOT Fact and Planet velocity is defined without any effect of its mass as the data shows

(I have refuted Newton theory of the sun gravity and his theory for mass gravity) 

Now – let’s ask - How Is Planet Velocity Defined?

Planet velocity is defined by Five Rules let’s see them in following

(i) First Rule 

v1v2 = constant= 322  (my 5th equation)

47.4 km/s (Mercury velocity) x 6.8 km/s (Mercury velocity)                    =322

35 km/s (Venus velocity)         x 4.7 km/s (Pluto velocity) x 2                   =322

29.8 km/s (The Earth velocity)         x 5.4 km/s (Neptune velocity) x 2     =322

24.1 km/s (Mars velocity)       x 13.1 km/s (Jupiter velocity)           =322 (Max error 2%)

The rule (v1v2=322) tells the velocities are defined in pairs and not individually, each planet velocity has its own complementary- the rule tells the velocities are reflected on one another- the reflection of energy and data is discussed later. 

In this rule we interest for the constant (322)- let’s ask- why the constant = 322? 

The constant 322 depends on the speed 1.16 million km per second because

(1160000 seconds = 322 hours) - Means

Mercury (47.4 km/s) moves in 6.8 hours a distance = 1.16 million km and

Uranus (6.8 km/s) moves in 47.4 hours a distance   = 1.16 million km

Shortly -we realize that the constant 322 is produced based on the speed 1.16 million km per second- means- the planets velocities are complementary each other because they are defined as functions in this same speed 1.16 million km per second

(This is similar to electron and positron are produced from Gamma ray, The two particles depend on Gamma energy in their masses)

Based On This Data

I concluded there’s a light beam its speed 1.16 million km per second and from this light beam energy the solar system is created- and the planets velocities are defined as functions in this speed 1.16 million km per second and that causes the velocities to be complementary each other-

(Note the speed 1.16 million km per second is proved strongly in my paper)

(ii) Second Rule 

v1v2 = 1

The velocity here uses the solar day (86400 seconds) – let’s prove that-

Mercury moves per solar day           = 4.095 million km

Venus moves per solar day               = 3.024 million km

The Earth moves per solar day                  = 2.574 million km

The Moon moves per solar day                  = 2.4 million km

Mars moves per solar day                = 2.082 million km

Jupiter moves per solar day              = 1.1318 million km

Saturn moves per solar day              = 0.838 million km

Uranus moves per solar day             = 0.5875 million km

Neptune moves per solar day           = 0.4665 million km

Pluto moves per solar day                = 0.406 million km

AND

0.406 (Pluto velocity)              x 2.4 (the moon velocity)             = 1         (error 2.5%)

0.4665 (Neptune velocity)       x 2.082 (Mars velocity)               = 1          (error 2.5%)

0.5875 (Uranus velocity)                  x 3.024 (Venus velocity)/1.772   = 1 (error 2.5%)

0.838 (Saturn velocity)            x 1.1318 (Jupiter velocity)         = 1 (error 5%)

(1.772 = π^½)

The second rule tells very similar meaning (v1v2= constant= 1)

The data uses the velocities per solar day for that the constant is changed from 322 into 1 but the rule is the same- (v1v2= Constant)

I want to say- the rule (v1v2 = Constant) tells that (The Velocities Are Reflected On Each Other) this conclusion is simple one (A x 1/A= constant=1)  

The rule proves the energy is reflected in the solar system and this reflection has effect on the planets data and for that the planets velocities are defined by this energy  reflection and the velocities are produced complementary each other as a result.

Notice the second rule causes confusion because the complementary player is changed- for example Pluto is complementary with Venus (in the first rule 35 x 4.7 x 2 = 322) but Pluto is complementary with the Earth moon in the second rule (0.406 x 2.4 = 1) that tells the players are changed which is illogical idea- how can we solve this problem? The third rule solves it – let’s see this rule in following 

(iii) Third Rule 

v1/v2 = 0.8 (based on the planets order)

47.4 km/s (Mercury velocity) x 0.8   = 38 (35 km/s = Venus velocity error 7.25%)

35 km/s (Venus velocity)         x 0.8   = 27.78 (The moon velocity)

29.8 km/s (The Earth velocity)         x 0.8   = 24.1 (Mars velocity)                          (error 1%)

24.1 km/s (Mars velocity)       x 0.8   = 2 x 9.7 (Saturn velocity)

13.1 km/s (Jupiter velocity)     x 0.8   = 2 x 5.4 (Neptune velocity)       (error 3%)

6.8 km/s (Uranus velocity)      x 0.8   = 5.4 (Neptune velocity)

5.4 km/s (Neptune velocity)    x 0.8   = 4.3 (Pluto velocity 4.7 the error 7.25%)

Please note

The error 7.25 is found by the rate 1.0725 – that means

47.4 km/s (Mercury velocity) x 0.8   = 38 = 1.0725 x 35 km/s (Venus velocity)

5.4 km/s (Neptune velocity) x 0.8     = 4.3= 4.7 km/s (Pluto velocity) / 1.0725

29.8 km/s (Earth velocity)                = 27.78 km/s (The moon velocity) x 1.0725

We know the rate 1.0725 is found by Lorentz length contraction effect- and we know this rate has effect on around 40% of all planets data – that’s why we see this rate has effect on the planets velocities definition-

Let’s remember the question-

In the rule (v1v2=322) we found that Pluto is complementary with Venus because

4.7 km/s (Pluto velocity) x 35 km/s (Venus velocity) x 2 = 322

But in the rule (v1v2 =1) we found Pluto is complementary with the moon because

0.406 mkm (Pluto Velocity Daily) x 2.4 mkm (The Moon Velocity Daily) = 1

The question asked – if the planets velocities are defined in pairs complementary each other and not individually how can the players be changed? 

The answer tells – the planets velocities are rated by (0.8) based on the planets order means – the moon velocity daily 2.4 mkm = Venus velocity daily 3.024 mkm x 0.8

The rate (0.8) defines all planets velocities depend on each other by order-

Now let’s see Planet velocity final definition– because- the definition uses three planets velocities together and not only two – let’s put that clearly in following-

 (iv) The Planet Velocity Final Definition

 (A)

47.4 km/s (Mercury velocity) x 0.8 = 38 km/s (Venus velocity 35 km/s)

Venus moves per solar day 3.024 million km -But

1/3.024 = 0.3307 million km = Uranus moves per solar day 0.5875 million km /1.77

(note 1.77 = π^½) and (38 = 35 x 1.0725)

For that

47.4 km/s (Mercury velocity) x 6.8 km/s (Uranus velocity) = 322

(B)

35 km/s (Venus velocity) x 0.8 = 27.78 km/s (The Moon velocity)

The moon moves per solar day 2.4 million km -But

½.4 = 0.406 million km = Pluto moves per solar day 0.406 million km

For that

35 km/s (Venus velocity) x 4.7 km/s (Pluto velocity) x 2 = 322

©

29.8 km/s (The Earth velocity) x 0.8 = 24.1 km/s (Mars velocity)

Mars moves per solar day 2.082 million km -But

½.082 = 0.4665 million km = Neptune moves per solar day 0.4665 million km

For that

29.8 km/s (The Earth velocity) x 5.4 km/s (Neptune velocity) x 2 = 322

(D)

13.1 km/s (Jupiter velocity) x 0.8= 2 x 5.24km/s (Neptune velocity 5.4 km/s error 3%)

Neptune moves per solar day 0.4665 million km - But

1/0.4665 = 2.082 million km = Mars moves per solar day 2.082 million km

For that

13.1 km/s (Jupiter velocity) x 24.1 km/s (Mars velocity) = 322

Shortly

Three planets velocities are defined in each equation- that tells the planet velocity definition is a process more complex than the simple equation (v1v2= constant)

Notice

The 9 planets velocities total is 176 km/s – if we add the Earth moon velocity (29.8 km/s) the total will be 205.8 km/s

The planets velocities are complementary also for this velocity 205.8 km/s – let’s see

205.8 km/s = Mercury velocity (47.4 km/s) x Pluto velocity (4.7 km/s) / 1.0725

205.8 km/s = Venus velocity (35 km/s)     x Neptune velocity (5.4 km/s) x 1.0725

205.8 km/s = Earth velocity (29.8 km/s)   x Uranus velocity (6.8 km/s)

205.8 km/s = Jupiter velocity (13.1 km/s)          x Neptune velocity (5.4 km/s) x 3

Mercury velocity = 2 Mars velocity by that Pluto will be used for Mars also

Max error (3%)

Please Note- Saturn is exceptional because

205.8 km/s = 9.7 km/s (Saturn velocity) x 21.4

Where 21.4 hours = 2 x 10.7 hours (Saturn rotation period) -Means- the distance is passed by all planets motions in one hour equal the distance is passed by Saturn in 2 rotation periods (21.4 hours) that tells more analysis is required for Saturn velocity- as we should do later.

A QUESTION

(Why Is The Rate (0.8) Used To Define Each Planet Velocity Based On Its neighbor?) Kepler stated (Planet orbit defines its velocity) and

My planet orbital distance equation proves each planet orbit is defined based on its neighbor – means- my equation uses only 2 neighbor planets orbital distances

Here also-Planet velocity is defined based on its neighbor – means- this connection enabled Kepler to conclude his statement (Planet orbit defines its velocity)

But Why The Rate (0.8)??

The rate (0.8) is found by the energy reflection effect on Planets velocities definition, for that we analyze the energy reflection process deeply in the paper discussion

(v) Fourth Rule 

5.9 x 0.8 = 4.7 km/s (Pluto velocity) BUT (5.9)^2 = 35 km/s (Venus velocity)

And

6.8 x 0.8 = 5.4 km/s (Neptune velocity) BUT (6.8)^2 = 47.4 km/s (Mercury velocity)

And

8.5 x 0.8 = 6.8 km/s (Uranus velocity) BUT (8.5)^2 = 2 x 35 km/s

And

12.12 x 0.8 = 9.7 km/s (Saturn velocity) BUT (12.12)^2 = 3 x 47.4 km/s And

16.4 x 0.8 = 13.1 km/s (Jupiter velocity) BUT (16.4)^2 = 9 x 29.8 km/s (Earth velocity)

Discussion

The data shows, the inner planets velocities are defined based on the outer planets velocities- that explains how the rules (v1v2=constant) is created

The data is produced by the reflection of energy and that shows why the planets velocities are reflected on each other-

(vi) Fifth Rule   (Pluto Velocity Analysis)

DATA

4.7 km /s (Pluto velocity)        = 3/2 (π) km /s

And

5.4 km /s (Neptune velocity) x 4.7 km /s (Pluto velocity) = 8π

And

π x 6.8 km/s (Uranus velocity)          = 4 x 5.4 km/s (Neptune velocity)

And

4 x (4.7)^2 = 6.8 km/s (Uranus velocity) x 13.1 km/s (Jupiter velocity)

And

(4.7)^3 = 5.4 km/s (Neptune velocity) x 9.7 km/s (Saturn velocity) x 2 = (205.8/2)

205.8 = the 9 planets velocities total + the Earth moon velocity

Discussion

The data shows a real puzzle- because- Pluto velocity can’t be defined simply by some simple rules –even the previous 4 rules can’t define this velocity-

The data shows- The planet velocity is defined by very complex rule more strong than the previous 4 rules (Specifically Pluto velocity) 

I want to say- the designer has a reason to define Pluto velocity by some complex system- the planets motions interactions causes this complex system-

The next data can explain better this meaning

More Data

13.1 km/s x 29.8 km/s x 142984      = 47.4 km/s x 9.7 km/s x 120536

13.1 km/s x 9.7 km/s x 142984                  = 5.4 km/s x 27.8 km/s x 120536

9.7 km/s x 5.4 km/s x 142984                    = 4.7 km/s x 13.1 km/s x 120536

13.1, 29.8, 47.4 km/s are the velocities of Jupiter, The Earth, Mercury respectively

9.7, 5.4, 27.8 km/s are the velocities of Saturn, Neptune, The Moon respectively

4.7 km/s = Pluto velocity

142984 km = Jupiter diameter and 120536 km = Saturn diameter

The data tells the planets velocities are defined by real complex system

(vii) Planet Orbital Inclination Definition

DATA

(Mercury velocity 47.4 km/s) = (Uranus velocity 6.8 km/s)    x 7

(Mercury orbital inclination = 7 degrees)

(The Moon velocity 27.8 km/s) = (Neptune velocity 5.4 km/s)         x 5.1

(The Moon orbital inclination = 5.1 degrees)

(Mars velocity 24.1 km/s)       = (Saturn velocity 9.7 km/s)    x 2.5

(Saturn orbital inclination = 2.5 degrees)

(Mars velocity 24.1 km/s)       = (Jupiter velocity 13.1 km/s) x 1.9

(Mars orbital inclination = 1.9 degrees)

(Venus velocity 35 km/s)         = (Jupiter velocity 13.1 km/s) x 1.3 x 2

(Jupiter orbital inclination = 1.3 degrees)

(Neptune velocity 5.4 km/s)    = (Uranus velocity 6.8 km/s)   x 0.8

(Uranus orbital inclination = 0.8 degrees)

(Saturn velocity 9.7 km/s)       = (Neptune velocity 6.8 km/s)           x 1.8

(Neptune orbital inclination = 1.8 degrees)

Discussion  

The data shows that the planet orbital inclination is defined as a rate between two velocities- but- no clear rule is used by planet velocity - for example Mercury uses the rule (v1v2=constant because 47.4 x 6.8 = 322 and v1/v2= 47.4/6.8 = 7)

this rule is used almost for the inner planets- but- the outer planets orbital inclinations don’t follow this rule- because Neptune is complementary with the Earth but Neptune velocity is used with Uranus and Saturn to define Uranus and Neptune orbital inclinations- means- the rule (v1/v2 = inclination) is used for the inner planets but the outer planets use another rate and almost their orbital inclinations are created based on the rate (v1/v2) defined by my planet diameter equation- 

Gerges Francis Tawdrous +201022532292

Physics Department-  Physics & Mathematics  Faculty 

Peoples’ Friendship university of Russia – Moscow  

Curriculum Vitae                 https://www.academia.edu/s/b88b0ecb7c

E-mail                            mrwaheid@gmail.com, mrwaheid1@yahoo.com

                                      gergesgerges@yandex.ru                  

ORCID                          https://orcid.org/0000-0002-1041-7147

Facebook                       https://www.facebook.com/gergis.tawadrous

VK                                 https://vk.com/id696655587

Tumblr                           https://www.tumblr.com/blog/itsgerges 

Researcherid                  https://publons.com/researcher/3510834/gerges-tawadrous/

Google                                https://scholar.google.com/citations?user=2Y4ZdTUAAAAJ&hl=en

Livejournal                     https://gerges2022.livejournal.com/profile

Pocket                                                                    https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar

PUBLICATIONS

box                                https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv

Academia                       https://rudn.academia.edu/GergesTawadrous

List of publications        http://vixra.org/author/gerges_francis_tawdrous

Slideshare                            https://www.slideshare.net/Gergesfrancis

Text
itsgerges
itsgerges


Best Regards

The Sun Is Created Based On The Planets Motions (Revised 2)

or

or

or

My Research Presentation

I- Research Methodology 

II- Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition

III- My 5 Equations 

(1st equation) Planet orbital distance equation- the equation proves planet orbital distance is defined based on its neighbor orbital distance and no planet mass is used for this definition- Newton is wrong-

(4th equation) Planet diameter equation- the equation proves planet diameter is created based on a geometrical rule (NO Random Creation- the big bang theory is wrong) -also the equation proves the matter is created in pairs (as electron and positron are produced by Gamma ray 1.2 Mev)

(5th equation) Planet velocity equation- the equation proves planet mass has no effect on this planet velocity definition

IV- The Research Discovery

The Gravitational Waves Are Produced By The Planets Motions Energies And Not By The Gravitational Field- Moreover- There’s No Gravitational Field

V- The Gravitational Waves Reflection Analysis  

The Gravitational Waves Reflection Proves The Waves Are Produced By The Planets Motions Energies

VI- The Research Hypothesis

The Sun Is Not Doing Nuclear Fusion To Produce Its Rays- Instead- The Sun Rays Are Produced By The Gravitational Waves Motions Energies- And The Gravitational Waves Are Produced By The Planets Motions Energies- Means- The Sun Rays Is Created By The Planets Motions Energies Total- Shortly- The Sun Is A Phenomenon Created After All Planets Creation And Motion Because The Sun Is Created By The Planets Motions Energies. 

That explains why the sun corona temperature is 5 million Kelvin but the sun surface temperature is 5800 Kelvin- because the energy is not produced from the sun body but the energy comes from out of the sun body for that the energy out of the sun is so greater than the energy inside the sun (the energy comes from the gravitational waves which are produced by the planets motions energies total)    

The Hypothesis Explanation

The Sun Rays Creation Process

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

This new article tells the gravitational waves can move by speed of light and can produce a light beam- I claim The Sun Rays are produced based on this method by the gravitational waves motions and not by the sun nuclear fusion process- also –No star rays is produced by the nuclear fusion process but all rays are created by the gravitational waves motions energies as the article states.  

Here we have four questions to answer

  1. How can the gravitational waves be produced by the planets motions energies?
  2. How can the gravitational waves move by speed of light?
  3. How can the gravitational waves motions produce a light beam?
  4. Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

1st Question

How Can The Gravitational Waves Be Produced By Planets Motions Energies?

Planet motion produces energy (½ mv^2) but where’s this motion energy? Planet can NOT store its motion energy inside its body because It would raise its temperature- and no planet temperature is raised by its motion- logically- planet motion energy is stored in the space in moving waves –Means- planet motion in space is similar to a fish swimming in the sea- the fish swimming creates waves in the sea and similar to that - planet motion energy creates waves in the space- and - fish swims because it hits the water by its body and that creates waves in the water- and these waves move by a velocity equal the fish velocity because of the reaction force- similar to that- Planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal this planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by equal velocity (47.4 km/s)

Shortly- the planets move and their motions create waves in the space and each wave moves by velocity equal its planet velocity

AND the planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)

AND  in Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity= 205.8 km/s where The 9 planets velocities total=176 km/s but I add the Earth moon velocity (29.8 km/s) that makes the total to be 205.8 km/s – I add the moon velocity because the energy is stored finally in the moon orbit-

Note- The moon and the Earth revolve around the sun together for that the moon velocity is considered equal the Earth velocity relative to (the sun) –

NOW the unified wave moves by (205.8 km/s) is the gravitational wave-

The scientists discovered these waves in the space and they called them (gravitational waves) supposing these waves are produced by the sun gravitational field- BUT Planet motion energy must be stored in the space as moving waves – as proved by the previous analysis -means- even if There’s NO Gravitational field at all there’s a strong reason to find waves in the space because these waves are created by the planets motions energies

Note- I refute the sun gravitational field theory- and prove the sun has no massive gravity and also NO planet moves by the sun gravity

The Conclusion

The Unified Wave Its Velocity 205.8 Km/S Is The Gravitational Wave

Notice - the new article still believes that the gravitational waves are produced by the gravitational field- I refuse this idea and prove the waves are produced by the planets motions energies but I need the article because it tells the waves can move by speed of light and can produce the light beam where I suppose the sun rays is created by this method 

The Answer Of The Questions No. (2) And No. (3) 

2ndQuestion   How Can The Gravitational Waves Move By Speed Of Light? AND

3rdQuestion How Can The Gravitational Waves Motions Produce A Light Beam?

What Do We Have?

We have One unified wave moves by velocity 205.8 km/s

What Do We Need?

We need to accelerate the unified wave to move by speed of light (C=300000 km/s) and this wave should produce (A Light Beam)

We know the light beam is produced from (C^2= Squared Speed Of Light)

Technically- How To Solve This Problem?

We Need To Square The Wave Velocity

Let’s see my hypothesis (The Gravitational Waves Reflection Causes To Square The Wave Velocity) - let’s see if this hypothesis can solve the problem

(a)

(205.8)^2 x 7.1 = 300000 km/s = C = (speed of light)

Where

205.8 km/s= the velocity of the unified wave (the gravitational wave)

7.1 is Lorentz length contraction effect rate for speed (0.99 C)

Let’s discuss the equation

The unified wave moves by (205.8 km/s) – and this wave is reflected- the wave reflection causes to square its velocity – for that the velocity (205.8 km/s) is squared and be (205.8 km/s)^2= 42354 km/s

But Lorentz length contraction effect rate causes to increase the distance 42354 km to be (42354 x 7.1 = 300000 km) – means- the speed 42354 km/s is accelerated to be 300000 km/s = C=speed of light by Lorentz length contraction effect – we understand the rate 7.1 causes to contract the distances but here the rate increases the distances because the wave reflection causes to reflect the geometrical effects.

Conclusion No. (1)

The Wave Reflection Causes To accelerate the unified wave from (205.8 km/s) to move by speed of light (C=300000 km/s)

(b)

Now we have a gravitational wave moves by speed of light (C=300000 km/s)

This wave is reflected one more time

The gravitational wave reflection causes to square its speed by that – the wave speed was = speed of light (C=300000 km/s) before the reflection and after the reflection this speed will be (C^2=Squared Speed Of Light)

The light beam is produced from this value (C^2=Squared Speed Of Light)

Now we know how the unified wave (205.8 km/s) can be accelerated to move by speed of light (C=300000 km/s) and how this wave can produce a light beam

Conclusion No. (2)

The Gravitational Wave Reflection Causes To Square The Wave Velocity

This is the main useful result from the wave reflection- because without the squaring of the wave velocity no acceleration can be done for the wave and by that the gravitational wave can’t move by speed of light Nor produce any light beam

Notice (1)

The waves are reflected three times in the solar system and the abstract provides strong proves for these reflections and more proves are found in the paper- the waves reflection causes basic changes in planets data and I suppose – the waves reflection causes also to square the waves velocity

Notice (2)

The rate 7.1 is produced by Lorentz length contraction effect as a result for motion by speed (.99C= 297000 km/s)- I proved this fact in (Item no. 5-6 Can Relativistic Effects Be Found In The Solar System?)

THE SUN POINT CREATION

The sun point of space has geometrical features enable to produce the sun rays and that means – the sun rays can be created only in the sun corona and far from the sun NO light beam can be created – let’s see the sun geometrical features in following

(i)

The Sun Point Is A Stationary Point Its Velocity 1 km/s = Zero Approximately

This is important feature – Because

All motions are done relative to the sun point of space – for example- Pluto velocity is 4.7 km/s –means- Pluto moves by 4.7 km/s relative to the sun point of space – Shortly- the whole solar system is in motion (space and planets are in motion) but the sun point is stationary (static point moves by velocity 1 km/s = Zero approximately) Means- the solar system is similar to a sea of water and the sun is similar to a vortex or whirlpool found on the sea page – the vortex doesn’t move with the sea waves -Shortly- the sun point of space is the stationary point in the solar system and all motions are done relative to the sun point of space-

Example – Venus moves by 35 km/s that means Venus moves by 35 km/s relative to the sun point of space – also we know Venus motion produces energy and this energy creates waves in the space and these waves move by velocity 35 km/s – means- these waves move by 35 km/s relative to the sun point of space-

(ii)

Why Is It Necessary For The Sun Point To Be Stationary Point? Because

1- The Gravitational Wave (Unified Wave) Moves By Speed Of Light Relative To The Sun

2- The Gravitational Wave Can NOT Move By Speed Greater Than Speed Of light

3- The Wave Reflection Causes To Square The Different Speed Between The Gravitational Wave Speed And The Sun Point Motion Speed

4- If The Different Speed Is Less Than Speed Of Light (C=300000 Km/S) The Speed Squaring Process Will Never Produce The Value (C^2= Squared Speed Of Light) – means- No Light Beam Can Be Created

Now we see the necessity to make the sun point as stationary point moves by  (Zero approximately =1 km/s) – because – if the sun point moves by any higher speed than (1 km/s) the different speed will be less than speed of light and the squared value will be less than (C^2) and No light beam can be created

Now let’s ask- while the space is in motion as the sea of water – how can this stationary point be created? let’s answer in following

(iii)

The planets were created before the sun creation and the planets revolve around a point in space (any point in space) the revolution creates two velocities on both sides of the revolution- the two velocities are equal in value opposite in direction- the total be Zero- means- the revolution motion creates a stationary point in the revolution center-

By That -the sun point of space is created as a stationary point- and the sun point is the only stationary point in the solar system- for that all motions are done relative to the sun point of space-

4th Question

Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays? the question is logical because

Planet motion energy (½ mv^2) is so small energy and the sun rays energy is massive energy -for that- It’s Logical Question To Know How Can The Planets Motions Energies Total Be Sufficient To Produce The Sun Rays?

Let’s answer in following

(1)

The secret is the rates of time using-

The planets motions use different rates of time- by that- the planets motions energies can be accumulated during long period of time to produce massive energy sufficient to produce the sun rays – let’s give examples

Example No. (1)

(One Solar Day Of The Sun Clock = 365.25 Solar Days Of The Earth Clock)

By this rate of time– The Earth motion energy for one complete year can be used by the sun in one solar day – in fact- the solar planets motions energies total during one complete year (365.25 solar days) is accumulated and stored in one energy and be used by the sun motion on one solar day that causes to accumulate massive energy to be used (notice 1461 days = 365+365+365+366) 

Example No. (2)

(One Second Of The Sun Clock=1461Seconds Of The Gravitational Wave Clock)

We remember the unified wave (the gravitational wave) moves by 205.8 km/s -And – the gravitational wave moves in 1461 seconds a distance = 300000 km -BUT the Sun clock doesn’t see this period 1461 seconds but sees only the period (ONE SECOND) – means-

The distance 300000 km is passed in (ONE SECOND)only for the sun clockThat causes the gravitational wave to move by speed of light (C=300000 km/s) relative to The Sun – (the rate of time using and effect is explained in details in item no VII)

VII- The Solar System Description Refutation

(The Sun Is The Planets Motions Result But The Description Supposes The Sun Is The Planets Motions Reason) and (The Matter Is Created Depending On Its Motion But The Description Supposes The Matter Is Created Independently From Any Motion)

VIII – The Planets Motions Use Different Rates Of Time

IX  - The Physicist Wrong Vision Proves

X   - The Refutations Of Many Theories In The Physics Book 

XI - The Proves For My Theory

(There’s A Light Beam Moves By Speed 1.16 Million Km Per Second)

XII-The Solar System History And Neptune Orbit Creation

First Item - Research Methodology

I use the planets data analysis to discover the planets creation and motion facts–

In details- I try to discover how the planet get its data- for example – why Jupiter diameter is 142984 km? why Neptune axel tilt is 28.3 deg? why Pluto orbital period is 90560 days? This method helps greatly to discover the solar system facts let’s provide two examples to explain how this method works

Example No. (1)

Why Is The Moon Orbital Apogee Radius = 406000 Km?

The moon daily displacement =88000 km and during 29.53 days (the moon day period) the displacements total be = 2.598 million km = 2π x 413600 km

The data tells us the moon orbital apogee radius should be 413600 km and also it tells, because the moon daily displacement (88000 km) is so long, the moon should revolve around the Earth through this apogee orbit its radius (413600 km) only and can’t revolve around the Earth through any more near orbit…

Not Facts

The moon orbital apogee radius =406000 km only and the moon revolves around the Earth through near orbits and can reach to perigee radius (363000 km). 

How Can The Moon Do That?

 

The intelligent moon creates an angle (θ) between its motion direction and its orbit horizontal level by that the real displacement (L) through the orbit be less than (88000 km) because it be (L = 88000 km cos θ), as a result the total displacements be less than (2.598 million km) and that makes the moon orbital apogee radius to be decreased from 413600 km to 406000 km.

We should pay attention for the angle (θ), because this angle controls the moon motion features – where- with the angle (θ) increasing the real displacement (L) be shorter and the moon can revolve around the Earth through more near orbits – but –with the angle (θ) deceasing the real displacement (L) be longer and that pushes the moon far from the Earth to more far orbits- The moon orbital motion equation depends on this angle (θ) it tells θ1 = θ0 +1.7 deg where (θ1) = today angle and (θ0) =yesterday angle and 1.7 deg is used as the moon motion degrees per solar day for the equation

Example No. (2)

Can Mars Itself Cause The Earth Moon Creation?

Giant-impact hypothesis tells (NO) – but let’s see the planets data analysis   

I Suppose - Mars Original Orbit Was Between Mercury And Venus

The order (Mercury – Mars – Venus – Earth) shows correct order in planets diameters (and masses), and orbital distances - BUT – Mars had migrated from its original orbit (between Mercury and Venus) to its current one (227.9 million km) and Mars had collided with Venus and then with the Earth in its migration motion – and Mars itself has caused the Earth moon creation- My Mars Migration Theory answers many left questions by Giant-Impact Hypothesis – for example -

Why Does Venus Have No Moon? Mars had migrated from its original orbit (between Mercury and Venus) – and moved to its current orbit (227.9 million km) – BUT- Mars had moved by a force – and then Mars had collided with Venus –and Mars had pushed ALL DEBRIS with it in its Motion Direction because of its strong motion - Venus had found no debris around and for that Venus couldn’t create its moon –But – The Earth mass is greater than Venus’ and the debris lost some of their momentum for that the Earth could attracted some debris and created its moon-Mars has 2 moons and this fact supports my theory because Mars with small mass could attract two  moons because the debris were around it while Venus has greater mass but couldn’t create its own moon because the debris are moved with Mars motion- the rest debris are attracted by Jupiter gravity and created the asteroid belt 

Shortly

The planet data analysis compares between the theory and the planets data to see if there’s harmony between them and if the data logical analysis supports the theory 

Second Item - Major Problems In The Physics Book

(1) The Physicist Wrong Vision Contradicts The Nature System 

(2) Planet Motion Energy Definition

(3) Mass Gravity Force Analysis

(4) The Matter Creation And Its Nature Definition 

1stProblem The Physicist wrong Vision Contradicts The Nature System 

The Physicist Vision

The physicist supposes there’s (a unit of building)- by that- the physicist sees the matter (mass) as a wall and this wall is consisted of bricks (small similar units) and the physicist searches for this (unit of building)–

For that the physicist divided the matter and found the particles and then the particle is divided into Molecules and the Molecule is divided into atoms and the atom is divided into nucleus and electron moves around and the nucleus is divided into proton and Neutron- and the proton is divided into quarks …etc

The physicist searches for the building unit- for that he divides anything to reach to this building unit- 

The Nature System Vision

The Nature designer aims to create INTEGRATION- as the marriage– male and female- For that- the matter is created complementary one another-means- The Matter Is Created In Pairs (as Gamma ray 1.2 Mev produces electron and positron)

No building unit- AND

I want to show how the physicist causes fatal error for the research method while the physicist divides the elements (from matter to particle to molecule to atom to proton to quarks …etc) this division from out into inner till reach to very small unit which the physicist considered the building unit – that causes to destroy the geometrical design of the integration process- Shortly- the physicist sees a universe (never be created by the designer)- while the designer created the integration is a goal and created tools to perform this integration the physicist destroyed the integration tools while he searched for the building unit which is not found at all.

NOTICE

Another point shows the physicist wrong vision is (The Planet Motion)

While the solar planets move as gears in one machine and all planets motions are unified into one unified general motion- means- all planets motions are unified and produce one result only (one unified motion)- the physicist supposes each planet motion is independent-by that- in place of one machine of gears moves and produces one unified motion (one result) the physicist told us each planet motion is independent and No unification is found for the planets motions –here – one more time the physicist sees very different picture from the real one- in place of one hand has five fingers the physicist sees five independent moving fingers

2ndProblem  Planet Motion Energy Definition

Let’s remember this question where’s Planet Motion Energy?

We agreed planet motion produces energy (½ mv^2) and this energy must be stored in the space as moving waves because planet can NOT store its motion energy inside its body otherwise this planet temperature would be raised- that tells- the space has moving waves produced by planet motion energy

Also –we agreed- planet motion energy creates waves in the space and these waves move by velocity equal this planet velocity-

Shortly- for example- Mercury (47.4 km/s) moves in the space and its motion energy produces waves in the space and these waves move by velocity (47.4 km/s) –this analysis creates 3 difficulties for the physics book let’s see them

First Difficulty

This analysis tells the space has moving waves are produced by planets motions energies– But- the scientists discovered these waves and they told these waves are produced by the gravitational field- and they called them (gravitational waves)- I prove the sun doesn’t produce a gravitational field and has no massive gravity and no planet moves by the sun gravity – But- here we need to answer (from what source these waves are produced?) because planet motion energy analysis forces us to accept that these waves are produced by the planets motions energies

Here – we need to answer (from what source these waves are produced?)

I prove the gravitational waves are produced by the planets motions energies and not by any gravitational field.

I provided two major proves

(1st proof) I proves there’s no gravitational field and the sun has no massive gravity and no planet moves by the sun gravity

(2nd proof) the gravitational waves reflection proves the waves are produced by the planets motions energies because the waves reflection causes effects on the planets data

Second Difficulty

Now we know planet motion energy is stored in the space as moving waves (the gravitational waves)- But- the planets move since long period of time means the planets motions should cause to store massive motion energy in space during this long period- Now -where’s this stored massive energy? also the energy can NOT be stored in space forever- so what’s happening for this stored massive energy? I prove the sun rays are created from this stored massive energy and not from the sun nuclear fusion process- this is my research hypothesis – in all cases we should know how this stored massive energy be used because this massive energy can cause risk for the solar system stability.

Third Difficulty

Newton Mass gravity definition is disproved by planet motion energy

Because

Suppose the moon moves by the Earth mass gravity and the moon motion produces energy (½ mv^2) now let’s ask- From What Source The Moon Motion Energy Is Provided? What’s the moon motion reason? The mass gravity- means- the mass should provide the motion energy- means – if The moon moves by the Earth gravity that necessitates to decrease the masses of the Earth and the moon by the motion energy- here’s the problem- Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass-  this decrease is done because of the motion energy

The analysis tells us–the physicist supposes planet motion produces NO energy this is the only one solution for the problems created by the physicist neglect to observe planet motion energy-

3rdProblem Mass Gravity Force Analysis

The Refutation Of The Sun Gravitational Field

The Sun Doesn’t Produce A Gravitational Field Nor Has Massive Gravity – let’s prove that in following

(i)

The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time- 

(ii)

No Planet Moves By The Sun Gravity–Newton is wrong- because- Planet moves by the force caused its creation- means- planet creation and motion is done by one force only- otherwise this planet would be broken if two forces have effects on it-

Suppose planet is created (by any force) and the sun gravity attracted this planet and forced it to revolve around the sun by the sun gravity (as Newton imagined) that would force this planet to move against its internal structure and that will cause this planet to be broken-

Imagine a human is forced to walk on his hands in place of his legs- this human will be dead by this motion-

That’s why the planet creation and motion is done by one force only- Newton mistake is that he didn’t know how the planet is created- and he considered - the creation force is a historical force has no effect on the current motion- Shortly-the sun didn’t cause to create any planet and the sun doesn’t cause any planet to move

(iii)

We agreed that, mass gravity force can NOT cause any motion- again Newton is wrong- because –any motion will produce energy- suppose the moon moves by the Earth mass gravity- the moon motion produces energy- and – from what source this energy is provided? From the masses of the Earth and the moon –here’s the problem  

Where Any Motion Is Done By Mass Gravity Will Cause To Decrease This Mass

BUT Mass gravity is a fact - the mass gravity creates a bond between two masses (The Earth and the moon are bond by their masses gravity ) if some outer force causes the Earth to move the moon will move with the Earth and in this case the outer force will provide the motion energy for the Earth and the moon.

(iv)

The planets order contradicts the gravitation equation- for example- Jupiter the greatest mass is not the most near planet to the sun- when we asked the physicist told us this problem is done by (the planets initial conditions)- all these are wrong- planet orbital distance does NOT depend on the sun mass nor on this planet mass- planet orbital distance depends on its neighbor planet orbital distance – my equation proves this fact- let’s see it

Planet orbital distance equation (my 1st equation)

d^2= 4do (d-do)

where d=planet orbital distance

do= its neighbor orbital distance

Example (1) Venus orbital distance (108.2)^2 = 4 x 57.9 x (50.3)                             

d= 108.2 million km = Venus Orbital Distance       d0= 57.9 million km  = Mercury Orbital Distance

50.3million km=The Distance Between Venus And Mercury  Venus Depends On Mercury

Example (2) Saturn orbital distance (1433)^2= 4 x 778.6 x 655

d= 1433 million km    = Saturn Orbital Distance     d0= 778.6 million km  = Jupiter Orbital Distance

655million km=The Distance Between Saturn And Jupiter Saturn Depends On Jupiter

All planets orbital distances are defined based on their previous neighbor planets orbital distances- the equation is correct and discussed in item no. (III)- Shortly- planet mass has no any effect on this planet orbital distance definition.

Notice

Planet orbital distance definition depends on its neighbor orbital distance this fact is proved by many different methods my equation is one method only of them, all these methods don’t use any planet mass- all planets orbits are defined based on their neighbor planets orbits (item No. III has more proves)

(v)

Also-Newton told-planet motion depends on its mass- means-planet velocity depends on its mass- this also is wrong - I define planet velocity (my 5th equation)- planet velocity is defined by many rules all of them don’t use any planet mass- at all Planet mass has no rule in this planet velocity definition.

The Conclusion

The Sun Doesn’t Produce Any Gravitational Field

4th Problem The Matter Creation And Its Nature Definition

In following we compare between the physics book theory about the matter creation and my theory about it- the discussion contains Two points

I- The Physics Book Theory About The Creation of the Matter (Mass)

  1. The Matter Is Created Independently From Any Outer Motion – means- even if the matter motion is stopped the matter is still found and never be perished (the motion here means the outer motion and not the atoms motions)
  2. The Matter Is Motionless By Nature
  3. The Matter Needs Mass Gravity Force To Cause Its Motion
  4. The Matter Data And Dimensions Are Not Changed By Its Motion
  5. The big bang theory tells planet is created by random creation- for example- Jupiter diameter is created by unknown value and Jupiter is collided many times in its history and these collisions caused Jupiter diameter (and mass) to be decreased- based on that– Jupiter diameter value (142984 km) is found by random process and without any geometrical reason behind- by that- the big bang theory prevent us to use any planet data to discover the creation and motion rules of this planet.
  6. Note – The physicist doesn’t use planet data in forming a theory to explain this planet motion-for example- Jupiter diameter is 142984 km and the physicist has a theory explains Jupiter motion but if Jupiter diameter is changed into 180000 km the theory will have no change because the physicist doesn’t consider Jupiter diameter is a player in its motion- that’s why the big bang theory is wrong because it supposes the change in diameter and mass doesn’t cause a change in motion 
  7. Shortly- the physics book doesn’t tell how the matter is created nor what’s the matter nature- we remember Einstein problem in physics- he told (All researches in particle electromagnetic properties can’t predict this particle behavior in the daily life physics) that shows two different branches of the physics one for the electromagnetism and the other for the mass gravity physics

II- My Theory About The Creation of the matter (mass) –

The Matter Main Features Are: 

  1. The Matter Is Created In Pairs  Means- No Single Matter Is Created -This conclusion depends on Gamma ray experiment -From Gamma ray (1.2 Mev) electron and positron are created- by this experiment- the matter is created in pairs from electromagnetic waves- the produced pair particles motions depend on each other (or related to each other) (notice the creation system is male and female–two complementary matters-that tells the source of energy must be electromagnetic wave)
  2. The matter is created depending on its motion- means- the motion is found before the matter creation- this conclusion depends on my planet diameter equation because planet diameter is created depending on this planet velocity (for example Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)- means–Planet motion is defined before its creation -later explained
  3. Lorentz transformation proves Matter dimensions are effected by high speed motion- also- Lorentz transformation proves the matter and space are created from the same energy for that particle length and distance both are contracted by the same one equation (Lorentz length contraction effect)
  4. The Matter Is Created Depending On Light Motion –

The Discussion Proves These Features Strongly

The Matter Creation Depends On 5 Main Facts  Which Are

  1. Gamma Ray Can Produce Electron And Positron
  2. Lorentz Transformation
  3. My Planet Diameter Equation
  4. The Coherence Of Light (Young Interference) 
  5. Planet Diameter Creation Depends On This Planet Orbit

(Item No. i) Gamma Ray Can Produce Electron And Positron    From Gamma ray (1.2Mev) one electron and one positron are created- I prove the matter is created by this method- means- the matter is created in pairs and no single matter is created

(Item No. ii) Lorentz Transformation

Lorentz transformation tells

If a particle moves by high speed motion (near to speed of light), this particle length would be contracted and its mass would be increased and its time would be dilated

I accept this meaning clearly and find this meaning supports my theory strongly BUT Many physics Books tell the following

(NO Real Change Is Done For Any Particle Data Moves By High Speed Motion But All Changes Are Illusions Of Measurements)-

Means- while a particle is moving by high speed motion and the experiments results show contraction in its length and increasing in its mass and dilation in its time – these changes are just illusions in measurements and the particle itself has no change in any data - tenth of books tell this meaning clearly and with confirmation and the physicist killed Lorentz work and made Lorentz transformation measures illusions and not facts- regardless the empirical proves which supports Lorentz transformation  

I refuse these books idea because

  1. The Physics Is The Measurements Science And What’s Measured Is The Fact
  2. If no real changes are done how the problem of Michelson and Morelly experiment is solved?- also- Why the synchronous events in one frame can’t be synchronous in another (as Einstein stated) where no change is found for any data- the distances are Not contracted nor the time is dilated nor the mass is increased why the events can NOT be synchronous in any frame?  
  3. If the particle own data is measured correctly while it moves by my motion velocity and these measurements are suffered from illusions because the particle moves by high speed motion relative to my motion that means (I’m the universe reference point)
  4. We notice- Lorentz length contraction equation can’t distinguish between particle length and a distance, both can be contracted by the same one equation- that supports my theory tells (Matter And Space Are Created From The Same Energy)–
  5. My planet diameter equation proves planet diameter is created depending on this planet motion and also proves the matter and space are created from the same one energy which supports Lorentz transformation 

NOTICE  

The major importance of Lorentz transformation is

  1. The transformation proves there’s a connection between particle dimensions and its  motion means the motion has effect on particle dimensions definition and by that the matter (mass) can’t be independent because its existence depends on a motion- shortly (The Matter Existence Depends On Its Motion
  2. The matter and space are created from the same energy- because- particle length and the distance both are contracted by the same equation (Lorentz length contraction effect) shortly (Matter And Space Are Created From The Same One Energy) (This theory is proved by my planet diameter equation)

(Item No. iii) My Planet Diameter Equation

My Planet Diameter Equation (v1/v2)= (s/r)= I

v = Planet Velocity                          

r = Planet Diameter

I= Planet Orbital Inclination   

s= Planet Rotation Periods Number In Its Orbital Period

v2, s, r and I are belonged to one planet and v1 is belonged to another planet

The planet (v1) is defined by test the minimum error 

Earth Equation uses Neptune velocity                        

Mars Equation uses Pluto velocity

Jupiter Equation uses the Earth moon velocity      

Saturn Equation uses Mars velocity

Uranus Equation uses Neptune velocity (As Earth)

Neptune Equation uses Saturn velocity

Pluto Equation uses the Earth moon velocity (As Jupiter)

Example  Neptune Equation (89143 /49528) = 9.7/ 5.4 =1.8                  

89143                   = Neptune rotation periods number in Neptune orbital period

49528 km   = Neptune diameter            

9.7 km/s = Saturn velocity and

5.4 km/s      = Neptune velocity             

1.8 degrees= Neptune Orbital Inclination

59800 days = Neptune orbital period (and Neptune rotation period =16.1 hours)

Discussion

(1)

The Equation Concept  Planet diameter should be a function in its orbital distance –otherwise- this planet would be broken by its motion- BUT- the designer can’t create a function has only 2 variables (Planet diameter and its orbital distance)- because– If this planet changes its orbit (orbital distance) its diameter would be broken also because the diameter is a direct function in the orbital distance without any other variables -As A Result- the designer created planet diameter as a function in this planet rotation period and the planet rotation period is created as a function in this planet velocity and the planet velocity is created as a function in this planet orbital distance- by that- the function between Planet diameter and its orbital distance is created but also it contains many variables (rotation period, orbital period and velocity)- by that- if  the Planet changes its orbital distance- this planet orbital period, and velocity and rotation period would be changed but its diameter will be saved

(2)

Matter Definition Based On My Planet Diameter Equation

My equation tells, Planet diameter is created depending on its velocity- for example Neptune diameter is 49528 km because it velocity is 5.4 km/s where the velocity is used in the diameter definition equation- means- Planet motion is defined before this planet creation- how can that be possible? let’s answer in following

  • The original energy was in motion and planet matter is created from this moving original energy and planet matter dimensions are defined by this original energy motion features- after Planet creation, the planet moves with this original energy motion means the planet moves this same motion based on which the planet data and dimensions are created that’s why Planet data is in full harmony with its motion features- that explains how planet diameter is created based on its velocity
  • Shortly- the matter is similar to a muscle in a creature- the muscle dimensions depend on the blood motion- similar to that- the matter dimensions depend on this energy motion from which this matter is created-
  • Also space is similar to the sea of water- and the matter is similar to a whirlpool (vortex) is found on the sea page- the matter creates for itself a distinguished picture different from the space picture and the matter moves by a different velocity from the space motion velocity- as the whirlpool (vortex) on the sea page- it’s created by the sea water but it has a distinguish picture from the sea waves and it moves by a different velocity from the sea waves- that explains how the moving energy can effect on the matter creation data- for example- we have a whirlpool (vortex) its diameter is 2 meters- why does this diameter equal= 2 meters? The diameter is created depends on the water motion velocity, pressure, amount and motion angle and many other features of (the moving water)- the moving water creates this whirlpool with diameter 2 meters and as long as the water motion is not changed this diameter will not be changed also- (notice- The Gravitational Waves Prove The Space Has Motion And Not Static)

NOTICE   Also (No Planet Moves By The Sun Gravity) Newton is wrong, because planet moves by the energy from which this planet is created- as explained here – means– The Matter Is Not Motionless By Nature- The Matter moves with the energy from which this matter is created-

(3)

Matter Existence Depends On Its Motion

Shortly-if the motion is stopped the matter will be perished- again the matter is similar to a muscle in a creature body- if the blood motion is stopped the muscle will be perished- this is the fact- Based on that- Neptune velocity is 5.4 km/s if Neptune stops its motion Neptune diameter and matter will be perished-

The fact I prove is (The Matter Creation Depends On Its Motion) – Lorentz transformation and my planet diameter equation supports this fact strongly 

DEEP DISCUSSION

(4)

The Matter Is Created In Pair And No Single Matter Is Created

Planet velocity is defined based on the rule (v1v2=constant= 322) let’s prove that

322 = 47.4 km/s (Mercury velocities)         x 6.8 km/s  (Uranus velocities)                            

322 = 35 km/s  (Venus velocity)                 x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)                    x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)                x 13.1 km/s (Jupiter velocity)                        

322 = (17.9 km/s)^2 (Ceres velocity)                   (Max error 2%)

The idea is understandable – let’s summarize it in following

(i)

The planets velocities are created complementary one another based on the rule (v1v2=constant= 322) and

(ii)

Planet data is created depending on its velocity- means- planet velocity is the first data in this planet creation and based on the velocity all other data is created- as we see in the planet diameter equation, planet diameter and all creation data is created depending on this planet velocity- means- based on (v1/v2) but planet orbital distance is defined based on  (v1/v2)^2 and planet orbital period is defined based on (v1/v2)^3

Based on this system planet data is created but we know that planet orbital distance is defined before planet creation and based on the orbit, planet velocity is defined and then all data is defined based on the planet velocity-

(iii)

Now the idea is clear- let’s summarize it

The planets velocities are created complementary one another based on the rule (v1v2=322) and planet diameter is created depending on its velocity for that reason planet diameter is created complementary to another planet diameter- let’s prove that

341.7 million km = Jupiter diameter 142984 km          x Pluto diameter 2390 km

341.7 million km = Jupiter radius 71492 km       x Mercury diameter 4879 km (2%)

341.7 million km  = Saturn diameter 120536 km x 4 Mars diameter 6792 km (4%)

341.7 million km = Uranus diameter 51118 km  x Earth radius 6378 km (5%)

341.7 million km = Neptune diameter 49528 km x 2 The Moon diameter 3475 km

Clearly we see the planets diameters are complementary one another- because the matter is created in pairs and no single matter is created

Notice (1)

Suppose the physicist can create a type of single matter which has no complementary can that disprove my theory tells (The Matter Is Created In Pair And No Single Matter Is Created?) NO NEVER

Because- the matter is created from the original energy and the energy uses a system depends on matters in pairs complementary one another-  means any type of matter can’t be used by the original energy will be neglected and useless because the energy uses matters in pairs  

(Item No. v) The Coherence Of Light (Young Interference)

I provide proves tell Gamma Ray and Young experiments are used in the solar planets creation – let’s remember these experiments

(1st Experiment) Gamma ray (1.2 Mev) can produce electron and positron

(2nd Experiment) the coherence of light experiment (Young Interference)

Let’s provide the proves for the using of these two experiments in the planets creation

Gamma Ray Experiment

There are two facts prove this experiment concept is used in the planets creation

First Fact Planet creation data is defined based on its velocity- this fact is proved by my planet diameter equation because planet diameter is created depending on this planet velocity as explained before (Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s)-means- Planet velocity is the first data in this planet creation process and based on this velocity all planet creation and motion data is created

Second Fact Planet velocity is complementary one another, which is proved by the rule (v1v2= 322 = constant)- that shows the planets data must be complementary one another as I have proved in the diameters values analysis

Shortly – The planets data are complementary one another (similar to the electron and positron are created from Gamma ray)

The Coherence of light Experiment (Young Interference)

There are two facts prove this experiment concept using in the solar system creation

1st Fact

The planets order is typical for Young interference- if we consider planet diameter is equivalent to the fringe breadth by that the planets order be typical for Young interference where the greatest fringe is in the middle (the greatest planet Jupiter) and the fringes breadth is deceased gradually on both sides

(I Proved Mars Original Orbit Was Between Mercury And Venus- so the original inner planets order was Mercury – Mars – Venus – The Earth) which shows gradual decreasing in diameters- the outer planets diameters also is decreased gradually      

2nd Fact

There’s a coherence of light in the solar system- what does that mean?

Means- while planet orbit has energy of a light beam- another light beam enters this orbit by that there are two light beams in the same orbit- these two light beams create coherence of light- the planets orbits creation explain this fact in details- but here I want to prove this fact by simple direct proof before the planets orbits creation discussion –let’s write this proof here

We have seen that the planets velocities are complementary one another by the rule (v1v2=constant=322) and planet all data is created depending on its velocity- by that the planets diameters also follow this rule where (R1R2= constant) as I have proved in my planet diameter equation

Now let’s ask – can the planets orbits complementary one another? NO

So- how this rule (v1v2=constant= 322) is found?

By the energy reflection- means- the energy is reflected in the solar system and this reflection of energy causes the velocities to be reflected on one another and that produced the rule (v1v2=constant= 322)

We note the planets can’t be reflected on each other because the planets are connected with their orbits- and the energy reflection needs freedom in motion- means- this reflection of the planets velocities are done by effect of the energy reflection- please note- the energy reflection is a proved fact in the solar system- this fact is proved by hundreds of the planets data because the energy reflection cause effects on the planets data- shortly- the planets data is created by effects of the energy reflection-

Here we see the coherence of light is created because the orbits have energy where the space is energy and (Another energy is reflected and moved through all orbits and caused to create the planets data) by that each orbit has two energies together- I prove both energies are light beams-for that the two light beams create a coherence of light

I want to say- there are two facts prove the solar system has coherence of light which are the reflection of energy and the planets order

The planets orbits creation explain this theory in details I discuss it in item no. (**)

NOTICE

Please Note – I proved Mars original orbit was between Mercury and Venus and Mars is migrated to its current orbit behind the Earth- by that the inner planets original order was (Mercury – Mars – Venus – The Earth) here we see planets diameters are decreased gradually from the Earth to Mercury where Jupiter was the planet beside the Earth- means – the planets diameters are decreased gradually from Jupiter to Mercury- and the outer planets – the planets diameters also are decreased gradually- as I explained – if we compare planet diameter with fringe- the planets order be typical to Young interference – but – the order is reflected each other –let’s see that

The inner planets (Mercury – Mars – Venus – The Earth)- the order tells greater diameter necessitates longer orbital distance – but

The outer planets (Jupiter– Saturn– Uranus– Neptune –Pluto)- the order tells greater diameter necessitates shorter distance

Here we see the orders are reflected one another- but in Young interference there’s no reflection- I want to say- the planets orders are reflected because of the sun position- if the sun is not found no reflection will be found- that means- the reflection of energy caused to create the sun in the solar system because the sun creation causes the planets order to be reflected one another- my paper proves the sun is created after all planets creation and motion – and the sun is created by the reflected energy 

(Item No. vi) Planet Diameter Creation Depends On This Planet Orbit

The solar planets matters and their distances are created from one energy and this one energy is provided by one light beam and this light beam moves by speed = 1.16 million km per second (The speed is proved strongly and decisively)

The light (its speed 1.16 million km per second) built the solar system orbits starting from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each other (this fact is proved by my planet orbital distance equation) after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light)- we understand this is one light beam its speed was 1.16 million km per second before the space creation (In Mercury Orbit) and its speed becomes 300000 km/s after the space creation (in Pluto orbit) as result for the energy consumption in the space creation- 

In Pluto orbit - the light could Not move any further to build any more orbits because any additional space creation will consume more energy and that will decrease the light speed to be less than 300000 km/s (the known speed of light) – and – No known light moves by speed less than 300000 km/s – means- the light had no energy to move any further after Pluto orbit- for that- the light returns to its origin point (Mercury orbit) for that the light is reflected with speed (300000 km/s) from Pluto orbit to Mercury orbit passing through the built orbits– no energy is required in this motion for that the light beam moves with speed of light (300000 km/s) till Mercury orbit.

Please note- the light (300000 km/s) is reflected from Pluto to Mercury

The reflection of the light beam (300000 km/s) Caused To Create The Solar Planets

Comments

  • The light (1.16 million km per second) created the orbits with energy means the created orbits have energies- and each planet orbit energy is less than its previous neighbor orbit because the planets velocities are decreased gradually- almost the energy is less by rate 80% because the velocities are rated with (0.8)   
  • Each planet diameter is created based on its orbit energy- the planet is similar to a tree planted in a ground and the planet orbit is this ground- that’s why each planet diameter depends on this planet velocity and orbital inclination- please note Mars diameter equation proves this fact because Mars original orbit was between Mercury and Venus and Mars diameter is created based on this orbit energy and Mars had migrated from its original orbit to its current one behind the Earth but Mars diameter equation still shows Mars original orbital inclination (5.1degrees) while Mars current orbital inclination is 1.9 degrees- Mars diameter is created based on this inclination (5.1 deg) for that this inclination is seen in Mars diameter equation frequently (please review my planet diameter equation)    
  • The Occurrence Of The Coherence Of Light - The light beam (300000 km/s) is reflected and passed through all created orbits- that shows there two light beams are found in the same area (in any orbit)- because in each orbit there’s this orbit energy which is found with the orbit creation by the light (1.16 million km per second) for that we say (Space Is Energy) because any orbit has energy found with its creation- and also the reflected light beam (300000 km/s) passed through all orbits- by that- in any orbit there are two different light beams (two different energies) and these light beams create A Coherence together- 
  • The Amazing Coherence Of Light There’s a major interesting point here-the light beam (300000 km/s) created a coherence with the light 1.16 million km per second! BUT HOW?? because the light 1.16 million km per second is consumed and its energy is used for the space creation and the rest energy is this light beam moves by known speed of light (300000 km/s)!! how can the light beam (300000 km/s) meet the original light beam the 1.16 million km per second to create this coherence of light?
  • Please note- the speed 1.16 million km per second is the major used speed in the solar system data- means- the speed 1.16 million km per second is the secret by which the solar system data can be understood because all data is created as function in this speed-I prove that in the next pages- but this information is written to explain that the light 1.16 million km per second is consumed but its energy still works and causes continuous effect- BUT HOW??   

Let’s write the answer

  • The light (300000 km/s) is reflected to move from Pluto to Mercury (while the original light 1.16 million km per second moved from Mercury to Pluto) means the light (300000 km/s) moved in opposite direction for the motion of the original light 1.16 million km per second- MEANS- the light (300000km/s) moved in the opposite direction of space to reach to Mercury- BUT NOT ONLY- in fact- the light (300000 km/s) moved also in the opposite direction OF TIME and moved into its own past – and in past – this light beam (300000 km/s) met the original light beam 1.16 million km per second – and in past – the two light beams created the coherence of light and then this coherence of light results have effects on our present time-
  • Shortly- the coherence of light in the solar system proves the light beam (300000 km/s) moved on the time-axis and this is an empirical proof for the time-axis motion where the light can move simply on the time axis
  • Notice – this motion can help us to create the time machine- because- if the light can move into the past that means we may use this motion and take photos of the past events and this will be our time machine which can go into the past and make photos and videos for the past events – even the events since thousands of years we can see in videos or in photos – this motion of light can give us a great option to create our machine of time      
  • Notice  the original light beam 1.16 million km per second can not move into the future to meet the light beam (300000 km/s) because in future the original light 1.16 million km per second is NOT found because its energy is consumed in the space creation- but- the light beam (300000km/s) can move into the past because in the past the light beam (300000 km/s) was part in the original light beam 1.16 million km per second and by that the two light beams be found in the same time   
  • Notice – we can not travel ourselves into the past- because planet diameter is created depending on its velocity- as proved by my planet diameter equation- means- the matter is created depending on its motion velocity- and the velocity is a motion in defined direction- the light is free in motion and doesn’t forced to move in any direction for that the light has this option to move on the time axis but the matter is created depending on a motion in defined direction (no freedom in motion) for that the matter can’t move on the time axis because the motion force the matter to move in a defined direction – the matter moved just to the future– and the matter can’t move into the past-  
  • Planet Creation Machine Please note–we see the coherence of light is done by the two light beams 300000 km/s and 1.16 million km per second (because the light beam 300000 km/s can reach to the light 1.16 million km per second by moving into its past)- shortly – here we have 2 light beams in any orbit- and these two light beams cause two motions – we can imagine these two motions are perpendicular on each other – this perpendicular motions create a wave and planet is created as a wave (Particle is a wave also)- that explains how the planets are created 
  • Please note-  The reflection of energy is very effective in the solar planets data because the reflection of energy caused the planets to be created- the matter can’t be created by the energy of any orbit alone but the reflection of energy adds second energy inside each orbit- by that- two energies are found in any orbit (two light beams) by these two light beams the light coherence is created and also the planets are created as waves-that explains why the planets data prove the reflection of energy because the planets are created by this energy reflection- as when we plant a tree we need a ground and we need seeds to be put in this ground- two players- the planets are created by two energies (two light beams coherence) and for that the planets velocities are defined based on the two speeds (300000 km/s) and (1.16 million km per second) as planet velocity definition proves.
  • Please note  the Matter Is Created In Pairs (as electron and positron from Gamma rays 1.2 Mev) – this is the main system of creation but -In planets creation the rule is used with some complex method- the complementary is found for the planets velocities and the planets data is created depending on these velocities- the same concept but the method is more complex- this similar to the creature creation- the cell reproduction is done by split the cell into two new cells- but in higher creatures the reproduction use more complex methods but the cell method is still the base of these complex methods  
  • Please note  the previous analysis tries to conclude how the planet matter is created – I put all available facts to reach to this conclusion- the matter real mechanism may be still not clear but many provided facts help to reach to this mechanism- also- we know the main concept behind the matter creation which is (The Matter Is Created In Pairs And Not Single Matter Is Created)
  • This Concept Is Proved Strongly And Clearly By The Gamma Rays Experiment And The Planets Data

 (Item No. vii) The Proves Of The Light Speed 1.16 million km per second

THE SPEED PROVES

In following I prove the speed 1.16 million km per second is found

The paper provides many powerful proves – but - here I refer to 4 proves only

(1st Proof)

Planet Velocity Analysis proves the speed 1.16 million km per second

Data

322 = 47.4 km/s (Mercury velocities)  x 6.8 km/s  (Uranus velocities)                         

322 = 35 km/s  (Venus velocity)       x 4.7 km/s (Pluto velocity) x 2                     

322 = 29.8 km/s (the Earth velocity)          x 5.4 km/s (Neptune velocities) x 2  

322 = 24.1 km/s (Mars velocity)       x 13.1 km/s (Jupiter velocity)                        

322 = (17.9 km/s)^2 (Ceres velocity)                               (Max error 2%)

Discussion

This is one rule used to define planet velocity- we know this rule (v1v2 = constant =322) – other rules are discussed in planet velocity definition- here we ask only

Why the constant is 322?? Because 1160000 seconds = 3600 x 322 hours

Means – for example

Mercury (47.4 km/s) moves in 6.8 hours a distance 1.16 million km – and

Uranus (6.8 km/s) moves in 47.4 hours a distance 1.16 million km-

Means- the light moves 1.16 million km but we see it as 1160000 seconds and based on this period the constant 322 hours is defined and based on this constant the planets velocities are defined- means- the planets velocities are defined as functions in the speed 1.16 million km per second

(2nd Proof) the planets orbital circumferences total is defined by light speed 1.16 million km per second- let’s prove that 

100733 million km = 86400 seconds x 1160000 km/s

100733 million km = The Planets Orbital Circumferences Total

86400 seconds       = The solar day

Means- light its speed 1.16 million km per second passes in a solar day a distance = 100733 million km = The Planets Orbital Circumferences Total

The planets data analysis proves that the solar day is the major period of time in the solar system- that because- all planets rotation periods are defined based on it- the paper proves this fact strongly

 (3rd Proof)

The planets orbits and orbital distances are created from the energy of the light beam its speed is 1.16 million km per second- for that- this speed is registered in the distances data – let’s prove that in following

Example

778.6 million km (Jupiter orbital distance) = 1160000 km/s x 671 seconds

721 million km (Jupiter Mercury distance) = 1160000 km/s x 629 seconds

Where

671 million km = Jupiter Venus Distance

629 million km = Jupiter Earth Distance

This example tells that

The light (its speed 1.16 million km per second) created the distances based on each other- means

The light uses 671 million km (Jupiter Venus Distance) as a period of time 671 seconds to pass the distance 778.6 million km (Jupiter Orbital Distance)   

Also -the light uses 629 million km (Jupiter Earth Distance) as a period of time 629 seconds to pass the distance 721 million km (Jupiter Mercury Distance)   

By this method the light (1.16 million km per second) creates the distances based on each other- means – the distances be created in one network and by one design

the previous data is example for so many other distances let’s see them in following

(778.6 / 671)= (721/629) = (629/551)= (2x551/940)= (4900/4188) = (5906/5127)= (5127/4437) = (4345/3717)= 1.16

Where

778.6 million km = Jupiter Orbital Distance 

721 million km    = Jupiter Mercury Distance 

671 million km    = Jupiter Venus Distance 

629 million km    = Jupiter Earth Distance 

551 million km    = Jupiter Mars Distance 

940 million km    = Earth Orbital Circumference

4188 million km  = 2 x 2094  million km (Jupiter Uranus Distance)

4900 million km  = Jupiter Orbital Circumference

5906 million km  = Pluto Orbital Distance

5127 million km  = Pluto Jupiter Distance

4437 million km  = Mercury Neptune Distance

4345 million km  = The Earth Neptune Distance

3717 million km  = Jupiter Neptune Distance

The paper provides so many other powerful proves for the speed 1.16 million km

Notice

 (1.16/0.3) x 2π = 24.3

The equation tells, because the solar system is created by light beam its speed 1.16million km per second with its other speed 300000 km/s

For that - the space is created in curved lines (2π) and the time is created based on the solar day (24 hours)- that explains why the planets orbital circumferences total depends on the solar day period

(4th Proof)

300000 = (205.8)^2 x 7.1 where

The 9 planets velocities total 176 km/s and I add the Earth moon velocity 29.8 km/s the total be 205.8 km/s - the unified wave velocity (205.8 km/s)

7.1 is Lorentz length contraction effect produced by speed 99% of speed of light-

Shortly- the reflection of energy causes to square the wave velocity for that the unified wave velocity (205.8 km/s) is squared by the energy reflection

Now (205.8 km/s)^2 = 42354

The rate 7.1 causes to increase the distance from (42354 km) to (42354 x 7.1= 300000 km)- note-although 7.1 is Lorentz length contraction rate but it increases the distances in place of the contraction effect because the reflection of energy causes to reflect the geometrical effects-

shortly the equation (300000=(205.8)^ x 7.1) proves the planets velocities are defined as function in the known speed of light (300000 km/s)   

that proves the planets velocities are defined based on the two speeds of light –the known speed of light 300000 km/s and the original speed of light 1.16 million km per second.

NOTICE

Lorentz length contraction effect for a velocity 99% of speed of light (297000 km/s) is (7.1) as seen in the equation but the solar system uses this rate with modification

(7.1/100)+ 1 = 1.0725

And this final rate (1.0725) controls 40% of all planets data (distances, periods, axial tilts and other data)- this effect is a proof for the motion by high velocity because this rate (1.0725) controls 40% of all data in the solar system and no explanation except Lorentz length contraction effect- more proves are in (Item No. 5-6 Can Relativistic Effects Be Found In The Solar System?)

(Item No. viii) Planet creation depends on light motion

The previous analysis proves planet diameter is created depending on its orbit- specifically- planet diameter depends on its velocity and the velocity depends on its orbit- this fact is proved by my planet diameter equation (where planet diameter is created depending on its velocity) and by Kepler statement (Planet orbit defines its velocity) – but-

Why Does Planet Orbit Define Its Velocity?

Where I proved no planet moves by the sun gravity- by that the planet orbital distance has no effect on this planet motion or velocity nor planet mass has any effect on its velocity-So - Why Does Planet Orbit Define Its Velocity? The next data proves there’s a connection between planet velocity and its orbit through light motion

DATA

300000 km                              = 4.7 km/s (Pluto velocity) x 3600 x 17.73

5906 s x 300000 km/s   = 1773 million km

300000 km                              = 5.4 km/s (Neptune velocity) x 3600 x 15.43

5144 s x 300000 km/s   = 1543 million km                   ((5144= 4495 x (1.0725)^2)

300000 km                              = 9.7 km/s (Saturn velocity) x 3600 x 8.6

2870 s x 300000 km/s   = 8600 million km                  

300000 km                              = 6.8 km/s (Uranus velocity) x 3600 x 12.26

4085 s x 300000 km/s   = 1226 million km                  

300000 km                              = 13.1 km/s (Jupiter velocity) x 3600 x 6.36

2120 s x 300000 km/s   = 636 million km          

Where

5906 million km            = Pluto Orbital Distance

4495 million km            = Neptune Orbital Distance

2872 million km            = Uranus Orbital Distance = 2 x Saturn Orbital Distance

4900 million km            = Jupiter Orbital Circumference

Notice

18048 million km (Uranus Orbital Circumference) = 4.4 x 4085 million km

4900 million km (Jupiter Orbital Circumference)   = 2.3 x 2120 million km

4.4 = 2.2 x 2 (with 2.3 the error 5%)

Discussion

The data shows each outer planet velocity is related to its orbital distance by effect of the light motion (300000 km/s)- Uranus and Jupiter shows the rate 4.4 which related to Jupiter (3.1 deg Jupiter axial tilt + 1.3 deg Jupiter orbital inclination)- the energy is reflected from Uranus to Jupiter that causes the two planets use the same rate.

The data proves the planets motions depend on light motion and explains how the planet orbit defines its velocity

Notice

0.8 = (27.8 /35) = (24.1/29.8) = (10.8/13.1) = (5.4/6.8) = (17.2/21.4) = 19.8/24)

Where

35 km/s       = Venus velocity  

29.8 km/s    = The Earth velocity  

27.8 km/s    = The moon velocity  

13.1 km/s    = Jupiter velocity  

6.8 km/s      = Uranus velocity  

5.4 km/s      = Neptune velocity   note (10.8 = 5.4)

17.2 hours = Uranus Rotation Period

21.4 hours = 2 x 10.7 h Saturn Rotation Period

19.8 hours = 2 x 9.9 h Jupiter Rotation Period

24 hours     = The solar day period

The data shows harmony between the planets velocities and their rotation periods

Third Item - My 5 Equations 

My 5 Equations Prove Planets Creation and Motions Data Is Defined By Geometrical Rules (NO Random Creation)-I provide here the three main equations (1st, 4th and 5th) let’s refer to them in following 

Planet orbital distance equation (My 1st equation)

d^2= 4do (d-do)

where d= planet orbital distance and do= its previous neighbor orbital distance

Example (1) Venus orbital distance (108.2)^2 = 4 x 57.9 x (50.3)                             

d= 108.2 million km = Venus Orbital Distance

d0= 57.9 million km  = Mercury Orbital Distance

50.3million km=The Distance Between Venus And Mercury  Venus Depends On Mercury

Example (2) Saturn orbital distance (1433)^2= 4 x 778.6 x 655

d= 1433 million km    = Saturn Orbital Distance

d0= 778.6 million km  = Jupiter Orbital Distance

655million km=The Distance Between Saturn And Jupiter Saturn Depends On Jupiter

The equation depends on the planets order, just 2 neighbor planets can be used

The equation exceptions are, Earth depends on Mercury Not Venus – and Mars depends on Venus Not Earth And Pluto depends on Uranus Not Neptune

The Equation Concept Support

let’s suppose–There’s a right triangle by the 3 points The Sun, Mercury and Venus)- by that - Venus angle is (61 degrees) because Venus orbital distance (108.2 mkm) x cos (61) = Venus Mercury distance (50.3 mkm) – and

Earth angle is (51 degrees) because Earth orbital distance (149.6 mkm) x cos (51) = Earth Mercury distance (91.7 mkm) – and

Mars angle is (41.7 degrees) because Mars orbital distance (227.9mkm) x cos (41.7)= Mars Mercury distance (170 mkm)- and

Jupiter angle is (22.2 degrees) because Jupiter orbital distance (778.6 mkm) x cos (22.2)= Jupiter Mercury distance (721 mkm)

Similar to that – Saturn angle is 16.5, Uranus angle is 11.6 deg, Neptune angle is 9.2 deg and Pluto angle is 8 deg- these angles follow the same system

for example -Pluto angle is (8 degrees) because Pluto orbital distance (5906 mkm) x cos (8)= Pluto Mercury distance (5848 mkm) –

NOTICE No. (1)

The right angle and its triangle is (a hypothesis) – but we can prove it’s a fact because (v1/v2) = (θ1/ θ2) -means – these angles are rated with their planets velocities – for example (Neptune velocity 5.4/ Pluto velocity 4.7) = (9.2 deg /8 deg)

NOTICE No. (2) these angles are complementary one another for that

940 = 61 x 2 x 8 = 51 x 2 x 9.2 = 41.7 x 22.2

(61 degrees) is Venus angle and (51 degrees) is The Earth angle and (41.7 degrees) is Mars angle and (8 degrees) is Pluto angle and (9.2 degrees) is Neptune angle and (22.2 degrees) is Jupiter angle

DISCUSSION

The equation and angles system data prove the following

(1)

The planets orbital distances are defined based on their neighbors and NO mass is required to define it- Newton is wrong- planet orbital distance is Not defined based on this planet mass (also planet motion doesn’t depend on its mass)

Shortly- the mass is not related for the orbital distance definition at all

(2) The gravitation equation is wrong because it contradicts the planets order- for example (Mercury- Venus – the Earth) this order tells more mass needs longer orbital distance while the gravitation equation tells more mass needs shorter distance- clearly the equation contradicts the planets order- also Jupiter the greatest mass is not the more near planet to the sun – when we asked the physicist he told this is happened because of the planets initial conditions- my equation proves no initial conditions have effects on any distance – all distances are defined by the same one rule and the angles system supports the equation concept proves that (the planets orbital distances are defined based on each other and no mass is required in this definition)      

Planet Diameter Equation (My 4th equation)

My Planet Diameter Equation (v1/v2)= (s/r)= I

v = Planet Velocity                          

r = Planet Diameter

I= Planet Orbital Inclination   

s= Planet Rotation Periods Number In Its Orbital Period

v2, s, r and I are belonged to one planet and v1 is belonged to another planet

The planet (v1) is defined by test the minimum error 

Earth Equation uses Neptune velocity                        

Mars Equation uses Pluto velocity

Jupiter Equation uses the Earth moon velocity      

Saturn Equation uses Mars velocity

Uranus Equation uses Neptune velocity (As Earth)

Neptune Equation uses Saturn velocity

Pluto Equation uses the Earth moon velocity (As Jupiter)

Example  Neptune Equation (89143 /49528) = 9.7/ 5.4 =1.8                  

89143                   = Neptune rotation periods number in Neptune orbital period

49528 km   = Neptune diameter            

9.7 km/s      = Saturn velocity and

5.4 km/s      = Neptune velocity             

1.8 degrees= Neptune Orbital Inclination

59800 days = Neptune orbital period (and Neptune rotation period =16.1 hours)

All planets diameters follow this equation perfectly 

Notice

This equation is discussed with matter creation and definition (item no. I) also the equation is analyzed and discussed with all details in the paper discussions 

Planet velocity equation (My 5th equation)

Planet velocity definition is important point of study because many planet data is defined based on its velocity- specifically

Planet diameter is defined based on the rate (v1/v2) by my planet diameter equation –discussed before – and

Planet orbital distance is defined by the rate (v1/v2)^2 –and

Planet orbital period is defined by the rate (v1/v2)^3

Please note – Kepler stated (Planet orbit defines its velocity) and it’s fact proved by the planets data – but Newton stated Planet motion depends on its mass- this is NOT Fact and Planet velocity is defined without any effect of its mass as the data shows

(I have refuted Newton theory of the sun gravity and his theory for mass gravity) 

Now – let’s ask - How Is Planet Velocity Defined?

Planet velocity is defined by Five Rules let’s see them in following

(i) First Rule 

v1v2 = constant= 322  (my 5th equation)

47.4 km/s (Mercury velocity) x 6.8 km/s (Mercury velocity)                    =322

35 km/s (Venus velocity)         x 4.7 km/s (Pluto velocity) x 2                   =322

29.8 km/s (The Earth velocity)         x 5.4 km/s (Neptune velocity) x 2     =322

24.1 km/s (Mars velocity)       x 13.1 km/s (Jupiter velocity)           =322 (Max error 2%)

The rule (v1v2=322) tells the velocities are defined in pairs and not individually, each planet velocity has its own complementary- the rule tells the velocities are reflected on one another- the reflection of energy and data is discussed later. 

In this rule we interest for the constant (322)- let’s ask- why the constant = 322? 

The constant 322 depends on the speed 1.16 million km per second because

(1160000 seconds = 322 hours) - Means

Mercury (47.4 km/s) moves in 6.8 hours a distance = 1.16 million km and

Uranus (6.8 km/s) moves in 47.4 hours a distance   = 1.16 million km

Shortly -we realize that the constant 322 is produced based on the speed 1.16 million km per second- means- the planets velocities are complementary each other because they are defined as functions in this same speed 1.16 million km per second

(This is similar to electron and positron are produced from Gamma ray, The two particles depend on Gamma energy in their masses)

Based On This Data

I concluded there’s a light beam its speed 1.16 million km per second and from this light beam energy the solar system is created- and the planets velocities are defined as functions in this speed 1.16 million km per second and that causes the velocities to be complementary each other-

(Note the speed 1.16 million km per second is proved strongly in my paper)

(ii) Second Rule 

v1v2 = 1

The velocity here uses the solar day (86400 seconds) – let’s prove that-

Mercury moves per solar day           = 4.095 million km

Venus moves per solar day               = 3.024 million km

The Earth moves per solar day                  = 2.574 million km

The Moon moves per solar day                  = 2.4 million km

Mars moves per solar day                = 2.082 million km

Jupiter moves per solar day              = 1.1318 million km

Saturn moves per solar day              = 0.838 million km

Uranus moves per solar day             = 0.5875 million km

Neptune moves per solar day           = 0.4665 million km

Pluto moves per solar day                = 0.406 million km

AND

0.406 (Pluto velocity)              x 2.4 (the moon velocity)             = 1         (error 2.5%)

0.4665 (Neptune velocity)       x 2.082 (Mars velocity)               = 1          (error 2.5%)

0.5875 (Uranus velocity)                  x 3.024 (Venus velocity)/1.772   = 1 (error 2.5%)

0.838 (Saturn velocity)            x 1.1318 (Jupiter velocity)         = 1 (error 5%)

(1.772 = π^½)

The second rule tells very similar meaning (v1v2= constant= 1)

The data uses the velocities per solar day for that the constant is changed from 322 into 1 but the rule is the same- (v1v2= Constant)

I want to say- the rule (v1v2 = Constant) tells that (The Velocities Are Reflected On Each Other) this conclusion is simple one (A x 1/A= constant=1)  

The rule proves the energy is reflected in the solar system and this reflection has effect on the planets data and for that the planets velocities are defined by this energy  reflection and the velocities are produced complementary each other as a result.

Notice the second rule causes confusion because the complementary player is changed- for example Pluto is complementary with Venus (in the first rule 35 x 4.7 x 2 = 322) but Pluto is complementary with the Earth moon in the second rule (0.406 x 2.4 = 1) that tells the players are changed which is illogical idea- how can we solve this problem? The third rule solves it – let’s see this rule in following 

(iii) Third Rule 

v1/v2 = 0.8 (based on the planets order)

47.4 km/s (Mercury velocity) x 0.8   = 38 (35 km/s = Venus velocity error 7.25%)

35 km/s (Venus velocity)         x 0.8   = 27.78 (The moon velocity)

29.8 km/s (The Earth velocity)         x 0.8   = 24.1 (Mars velocity)                          (error 1%)

24.1 km/s (Mars velocity)       x 0.8   = 2 x 9.7 (Saturn velocity)

13.1 km/s (Jupiter velocity)     x 0.8   = 2 x 5.4 (Neptune velocity)       (error 3%)

6.8 km/s (Uranus velocity)      x 0.8   = 5.4 (Neptune velocity)

5.4 km/s (Neptune velocity)    x 0.8   = 4.3 (Pluto velocity 4.7 the error 7.25%)

Please note

The error 7.25 is found by the rate 1.0725 – that means

47.4 km/s (Mercury velocity) x 0.8   = 38 = 1.0725 x 35 km/s (Venus velocity)

5.4 km/s (Neptune velocity) x 0.8     = 4.3= 4.7 km/s (Pluto velocity) / 1.0725

29.8 km/s (Earth velocity)                = 27.78 km/s (The moon velocity) x 1.0725

We know the rate 1.0725 is found by Lorentz length contraction effect- and we know this rate has effect on around 40% of all planets data – that’s why we see this rate has effect on the planets velocities definition-

Let’s remember the question-

In the rule (v1v2=322) we found that Pluto is complementary with Venus because

4.7 km/s (Pluto velocity) x 35 km/s (Venus velocity) x 2 = 322

But in the rule (v1v2 =1) we found Pluto is complementary with the moon because

0.406 mkm (Pluto Velocity Daily) x 2.4 mkm (The Moon Velocity Daily) = 1

The question asked – if the planets velocities are defined in pairs complementary each other and not individually how can the players be changed? 

The answer tells – the planets velocities are rated by (0.8) based on the planets order means – the moon velocity daily 2.4 mkm = Venus velocity daily 3.024 mkm x 0.8

The rate (0.8) defines all planets velocities depend on each other by order-

Now let’s see Planet velocity final definition– because- the definition uses three planets velocities together and not only two – let’s put that clearly in following-

 (iv) The Planet Velocity Final Definition

 (A)

47.4 km/s (Mercury velocity) x 0.8 = 38 km/s (Venus velocity 35 km/s)

Venus moves per solar day 3.024 million km -But

1/3.024 = 0.3307 million km = Uranus moves per solar day 0.5875 million km /1.77

(note 1.77 = π^½) and (38 = 35 x 1.0725)

For that

47.4 km/s (Mercury velocity) x 6.8 km/s (Uranus velocity) = 322

(B)

35 km/s (Venus velocity) x 0.8 = 27.78 km/s (The Moon velocity)

The moon moves per solar day 2.4 million km -But

½.4 = 0.406 million km = Pluto moves per solar day 0.406 million km

For that

35 km/s (Venus velocity) x 4.7 km/s (Pluto velocity) x 2 = 322

©

29.8 km/s (The Earth velocity) x 0.8 = 24.1 km/s (Mars velocity)

Mars moves per solar day 2.082 million km -But

½.082 = 0.4665 million km = Neptune moves per solar day 0.4665 million km

For that

29.8 km/s (The Earth velocity) x 5.4 km/s (Neptune velocity) x 2 = 322

(D)

13.1 km/s (Jupiter velocity) x 0.8= 2 x 5.24km/s (Neptune velocity 5.4 km/s error 3%)

Neptune moves per solar day 0.4665 million km - But

1/0.4665 = 2.082 million km = Mars moves per solar day 2.082 million km

For that

13.1 km/s (Jupiter velocity) x 24.1 km/s (Mars velocity) = 322

Shortly

Three planets velocities are defined in each equation- that tells the planet velocity definition is a process more complex than the simple equation (v1v2= constant)

Notice

The 9 planets velocities total is 176 km/s – if we add the Earth moon velocity (29.8 km/s) the total will be 205.8 km/s

The planets velocities are complementary also for this velocity 205.8 km/s – let’s see

205.8 km/s = Mercury velocity (47.4 km/s) x Pluto velocity (4.7 km/s) / 1.0725

205.8 km/s = Venus velocity (35 km/s)     x Neptune velocity (5.4 km/s) x 1.0725

205.8 km/s = Earth velocity (29.8 km/s)   x Uranus velocity (6.8 km/s)

205.8 km/s = Jupiter velocity (13.1 km/s)          x Neptune velocity (5.4 km/s) x 3

Mercury velocity = 2 Mars velocity by that Pluto will be used for Mars also

Max error (3%)

Please Note- Saturn is exceptional because

205.8 km/s = 9.7 km/s (Saturn velocity) x 21.4

Where 21.4 hours = 2 x 10.7 hours (Saturn rotation period) -Means- the distance is passed by all planets motions in one hour equal the distance is passed by Saturn in 2 rotation periods (21.4 hours) that tells more analysis is required for Saturn velocity- as we should do later.

A QUESTION

(Why Is The Rate (0.8) Used To Define Each Planet Velocity Based On Its neighbor?) Kepler stated (Planet orbit defines its velocity) and

My planet orbital distance equation proves each planet orbit is defined based on its neighbor – means- my equation uses only 2 neighbor planets orbital distances

Here also-Planet velocity is defined based on its neighbor – means- this connection enabled Kepler to conclude his statement (Planet orbit defines its velocity)

But Why The Rate (0.8)??

The rate (0.8) is found by the energy reflection effect on Planets velocities definition, for that we analyze the energy reflection process deeply in the paper discussion

(v) Fourth Rule 

5.9 x 0.8 = 4.7 km/s (Pluto velocity) BUT (5.9)^2 = 35 km/s (Venus velocity)

And

6.8 x 0.8 = 5.4 km/s (Neptune velocity) BUT (6.8)^2 = 47.4 km/s (Mercury velocity)

And

8.5 x 0.8 = 6.8 km/s (Uranus velocity) BUT (8.5)^2 = 2 x 35 km/s

And

12.12 x 0.8 = 9.7 km/s (Saturn velocity) BUT (12.12)^2 = 3 x 47.4 km/s And

16.4 x 0.8 = 13.1 km/s (Jupiter velocity) BUT (16.4)^2 = 9 x 29.8 km/s (Earth velocity)

Discussion

The data shows, the inner planets velocities are defined based on the outer planets velocities- that explains how the rules (v1v2=constant) is created

The data is produced by the reflection of energy and that shows why the planets velocities are reflected on each other-

(vi) Fifth Rule   (Pluto Velocity Analysis)

DATA

4.7 km /s (Pluto velocity)        = 3/2 (π) km /s

And

5.4 km /s (Neptune velocity) x 4.7 km /s (Pluto velocity) = 8π

And

π x 6.8 km/s (Uranus velocity)          = 4 x 5.4 km/s (Neptune velocity)

And

4 x (4.7)^2 = 6.8 km/s (Uranus velocity) x 13.1 km/s (Jupiter velocity)

And

(4.7)^3 = 5.4 km/s (Neptune velocity) x 9.7 km/s (Saturn velocity) x 2 = (205.8/2)

205.8 = the 9 planets velocities total + the Earth moon velocity

Discussion

The data shows a real puzzle- because- Pluto velocity can’t be defined simply by some simple rules –even the previous 4 rules can’t define this velocity-

The data shows- The planet velocity is defined by very complex rule more strong than the previous 4 rules (Specifically Pluto velocity) 

I want to say- the designer has a reason to define Pluto velocity by some complex system- the planets motions interactions causes this complex system-

The next data can explain better this meaning

More Data

13.1 km/s x 29.8 km/s x 142984      = 47.4 km/s x 9.7 km/s x 120536

13.1 km/s x 9.7 km/s x 142984                  = 5.4 km/s x 27.8 km/s x 120536

9.7 km/s x 5.4 km/s x 142984                    = 4.7 km/s x 13.1 km/s x 120536

13.1, 29.8, 47.4 km/s are the velocities of Jupiter, The Earth, Mercury respectively

9.7, 5.4, 27.8 km/s are the velocities of Saturn, Neptune, The Moon respectively

4.7 km/s = Pluto velocity

142984 km = Jupiter diameter and 120536 km = Saturn diameter

The data tells the planets velocities are defined by real complex system

(vii) Planet Orbital Inclination Definition

DATA

(Mercury velocity 47.4 km/s) = (Uranus velocity 6.8 km/s)    x 7

(Mercury orbital inclination = 7 degrees)

(The Moon velocity 27.8 km/s) = (Neptune velocity 5.4 km/s)         x 5.1

(The Moon orbital inclination = 5.1 degrees)

(Mars velocity 24.1 km/s)       = (Saturn velocity 9.7 km/s)    x 2.5

(Saturn orbital inclination = 2.5 degrees)

(Mars velocity 24.1 km/s)       = (Jupiter velocity 13.1 km/s) x 1.9

(Mars orbital inclination = 1.9 degrees)

(Venus velocity 35 km/s)         = (Jupiter velocity 13.1 km/s) x 1.3 x 2

(Jupiter orbital inclination = 1.3 degrees)

(Neptune velocity 5.4 km/s)    = (Uranus velocity 6.8 km/s)   x 0.8

(Uranus orbital inclination = 0.8 degrees)

(Saturn velocity 9.7 km/s)       = (Neptune velocity 6.8 km/s)           x 1.8

(Neptune orbital inclination = 1.8 degrees)

Discussion  

The data shows that the planet orbital inclination is defined as a rate between two velocities- but- no clear rule is used by planet velocity - for example Mercury uses the rule (v1v2=constant because 47.4 x 6.8 = 322 and v1/v2= 47.4/6.8 = 7)

this rule is used almost for the inner planets- but- the outer planets orbital inclinations don’t follow this rule- because Neptune is complementary with the Earth but Neptune velocity is used with Uranus and Saturn to define Uranus and Neptune orbital inclinations- means- the rule (v1/v2 = inclination) is used for the inner planets but the outer planets use another rate and almost their orbital inclinations are created based on the rate (v1/v2) defined by my planet diameter equation- 

Gerges Francis Tawdrous +201022532292

Physics Department-  Physics & Mathematics  Faculty 

Peoples’ Friendship university of Russia – Moscow  

Curriculum Vitae                 https://www.academia.edu/s/b88b0ecb7c

E-mail                            mrwaheid@gmail.com, mrwaheid1@yahoo.com

                                      gergesgerges@yandex.ru                  

ORCID                          https://orcid.org/0000-0002-1041-7147

Facebook                       https://www.facebook.com/gergis.tawadrous

VK                                 https://vk.com/id696655587

Tumblr                           https://www.tumblr.com/blog/itsgerges 

Researcherid                  https://publons.com/researcher/3510834/gerges-tawadrous/

Google                                https://scholar.google.com/citations?user=2Y4ZdTUAAAAJ&hl=en

Livejournal                     https://gerges2022.livejournal.com/profile

Pocket                                                                    https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar

PUBLICATIONS

box                                https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv

Academia                       https://rudn.academia.edu/GergesTawadrous

List of publications        http://vixra.org/author/gerges_francis_tawdrous

Slideshare                            https://www.slideshare.net/Gergesfrancis

Link
draegerit
draegerit

DUINO EDU - LED, Helligkeit per serieller Schnittstelle steuern

DUINO EDU - LED, Helligkeit per serieller Schnittstelle steuern
bit.ly
Text
itsgerges
itsgerges


Best Regards

The Planets Were Moving In Their Orbits Before The Sun Creation (Revised)
https://app.box.com/s/dufa274dvpay3fqn6syz6sefjljfwnx9
or
https://app.box.com/s/89vxxtv3hc8si245fwxpbw0ts9b126nz
or
https://www.tumblr.com/itsgerges/762780127698567168/the-planets-were-moving-in-their-orbits-before-the?source=share
or
https://gerges2022.livejournal.com/239300.html

The Sun Creation
The sun is created depending on the planets motions- because- the sun rays is created by the planets motions energies- In details- Planet motion produces energy (½ mv^2) and from this energy the sun rays is created- means- the sun is not doing nuclear fusion to produce its rays but the planets motions energies total is used to produce the sun rays– that explains why the sun corona temperature is 5 million Kelvin but the sun surface temperature is 5800 Kelvin- because the energy is not produced from the sun body but the energy comes from out of the sun body (from the planets motions energies total)- This theory is discussed based on 5 hypotheses.
The First Hypothesis
The Sun Rays Is Created By The Gravitational Waves Motions Energies
This Is Extraordinary: Gravity Can Create Light, All on Its Own
https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83
This new article tells the gravitational waves can move by speed of light and can produce a light beam-
I suppose -the sun rays is produced based on this method by the gravitational waves motions and not by the sun nuclear fusion- also – I claim No star rays is produced by the nuclear fusion process but all rays are created by the gravitational waves motions energies as the article states.
The Second Hypothesis
The gravitational waves are produced by the planets motions energies- and not by the gravitational field- moreover- The sun is Not producing any gravitational field-
The Third Hypothesis
The gravitational waves are reflected in the solar system- the wave reflection causes changes for the waves properties and data- the major change is that- the reflection causes to square the wave velocity- means- the gravitational wave moves by velocity (V), if this wave is reflected, it would move by velocity (V^2) after the reflection-
The gravitational waves are reflected three times in the solar system- two times in the outer planets and one time only in the inner planets-
The Fourth Hypothesis
The Planets Motions Use Different Rates Of Time
The rate of time use is useful because it enables to accumulate the planets motions energies during a period of time- understandable- Planet motion energy is small energy and the sun rays is massive energy and that necessitates to accumulate the planets motions energies total during a period of time to store motion energy sufficient to be used for the sun rays creation- Shortly- if the planets motions don’t use rates of time, no massive motion energy can be provided and for that NO enough energy will be found to produce the sun rays-means- No light beam can be created
The rate of time depends on the velocities rate
Example (one hour of Mercury clock = 1.6 hours of the Earth clock) because Mercury velocity =1.6 the Earth velocity– the hypothesis is explained and proved in details

The Fifth Hypothesis
Neptune Motion Causes Negative Effects On The Sun Rays Production Process are
(1) Neptune motion caused the gravitational waves to be reflected two times in the outer planets where one reflection is enough for the required process- the wave reflection is repeated by Neptune negative effect on the solar system motion
(2) Neptune caused to decrease the gravitational wave speed by one percent- where the gravitational wave moves by speed of light Neptune caused to decrease this speed by 1% creating a speed = (99% of the speed of light=297000 km/s) and by this speed (0.99C) the relativistic effects are created in the solar system

NOTICE
The solar system is one machine performs one Job- and this Job is The Sun Rays Production - All planets motions are used as parts to perform this one Job-

The Sun Rays Production Is Done By Two Basic Tasks
(1st task) The Provision Of The Sufficient Energy For The Sun Rays Production- and the sufficient energy is prepared by the motions of the five planets (Saturn- Jupiter- Venus- The Earth- The Moon – and Mars) because these five planets motions are used to create the general rate of time based on which The Sun Rays Are Created.
(discussed in details in the 3rd hypothesis)

(2nd task) The mechanism by which the light beam is created- and this mechanism is the relative motion- the gravitational waves move relative to the sun point of space- by this relative motion the sun rays are created- means- the required energy is prepared and provided by the aforementioned five planets- and when the sufficient energy be provided this energy is sent to the planets which create the mechanism and the mechanism uses the sufficient energy to produce The Sun Rays
The mechanism depends on the motions of 3 planets (Mercury- Venus and the moon)
Specially Venus, because Venus reflects the wave toward Mars and defines its trajectory angle to create the relative motion between the wave and the sun point of space- the relative motion is discussed in details in the explanation of the (first and second hypotheses)

The Explanation Of The First And Second Hypotheses

Let’s remember The 1st Hypothesis
This Is Extraordinary: Gravity Can Create Light, All on Its Own
https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83
The article tells the gravitational waves can move by speed of light and can produce a light beam – I suppose
(The Sun Rays Is Created By The Gravitational Waves Motions Energies And Not By The Sun Nuclear Fusion -Also All Stars Rays Are Created By This Method And No Rays Is Created By The Nuclear Fusion Process)
And –The 2nd Hypothesis
The gravitational waves are produced by the planets motions energies- and not by the gravitational field- moreover- The sun is Not producing any gravitational field-
The two hypotheses explain how the sun rays creation depends on the planets motions because The Sun Rays Are Produced By The Gravitational Waves Motions Energies as the article states AND The Gravitational Waves Are Produced By The Planets Motions Energies-
The two hypotheses are discussed together in 4 Points

First Point (The Gravitational Waves Source)

The gravitational waves are produced by the planets motions energies- and not by the gravitational field- moreover- The sun is Not producing any gravitational field-
I provide 2 major proves for this hypothesis which are- (1st proof/ Planet Motion Energy Analysis) and (2nd proof /The Sun Gravitational Field Refutation)

1st Proof / Planet Motion Energy Analysis
Planet motion produces energy (½ mv^2), Let’s ask, where’s Planet motion energy? the planet can NOT store its motion energy inside its body because it would raise its temperature and No planet temperature is raised by its motion- logically- the planet motion energy is stored in the space in waves form- means- Planet motion energy creates waves in the space- the planet motion in the space is similar to a fish swimming in the sea- as the fish swimming creates waves in the water the planet motion energy creates waves in the space- let’s see this picture clearly- the fish swims because it hits the water by its body and that creates waves in the water- we conclude, the water waves move by a velocity equal the fish velocity because of the reaction force- similar to that- Planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal the planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by equal velocity (47.4 km/s)- based on this idea- All planets move and their motions energies create waves in the space where each wave moves by velocity equal its planet velocity –
AND
I suppose these waves are the gravitational waves
AND
The planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)
AND
In Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity = 205.8 km/s why?
The 9 planets velocities total=176 km/s but I add the Earth moon velocity (29.8 km/s) that makes the total to be 205.8 km/s – I add the moon velocity because the energy is stored finally in the moon orbit-
Note- the moon velocity is 27.8 km/s BUT the Earth and the moon revolve around the sun together for that the moon velocity should be considered equal the earth velocity relative to (the sun) –
The 1st Proof Conclusion
The Planet Motion Energy Creates Waves In The Space
Means - The Space Must Have Moving Waves
Now -the scientists had discovered waves in the space- And- they considered these waves are produced by The Sun Gravitational Field – BUT Why?
The planet motion energy analysis proves the waves must be produced by the planets motions energies- Now let’s refute the sun gravitational field theory- the refutation gives support for the conclusion that – the gravitational waves are produced by the planets motions energies and NOT by the gravitational field because there’s NO Gravitational field.

2nd Proof / The Refutation Of The Sun Gravitational Field
The Sun Doesn’t Produce A Gravitational Field Nor Has Massive Gravity – let’s prove that in following
(1)
The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time-
(2)
No Planet Moves By The Sun Gravity – Newton is wrong- because- the planet moves by the force caused its creation- means- the planet creation and motion is done by one force only- because- if two forces have effects on the same one planet this planet would be broken- now- suppose the planet is created (by any force) and the sun gravity attracted this planet and forced it to revolve around the sun by the sun mass massive gravity (as Newton imagined) that would force the planet to move against its inner creation and will cause this planet to be broken- this is similar to a human is forced to walk on his hands in place of his legs and when this human refuses to do that (they told him we can force you by our power) for that this human walk on his hands forcedly and later this human is dead by this motion- shortly- the planet is NOT broken by its motion because the planet creation force is the force causes this planet motion- it’s one force caused the planet creation and motion-
Newton mistake is that he didn’t know how the planet is created and by that he didn’t realize that planet creation and motion are done together by the same one source- simply- the sun didn’t cause to create any planet and for that the sun doesn’t cause any planet to move- this analysis shows logical base but left us with puzzles to know (by what rule the planet moves?) and (Why is the sun found in the solar system if it doesn’t cause the planets motions?) these questions are answered in the paper abstract and discussions.
(3)
The mass gravity force can NOT cause any motion- again Newton is wrong- the mass gravity creates a bond between two masses- (the Earth and the moon are bond by the mass gravity)- by that they are similar to a lorry and its trailer – if the lorry moves the trailer will move with the lorry- but the mass gravity can NOT cause any motion- why? suppose the moon moves by the Erath gravity force- the moon moves and produces energy (1/2mv^2) and we have to ask from what source this energy will be provided?- from the mass itself- means if the Earth causes the moon to move the Earth and the moon masses should be decreased by the motion energy- this is a wrong definition for the mass gravity- the mass gravity creates a bond between two masses (The Earth and the moon) if some outer force causes the Earth to move the moon will move with the Earth and in this case the outer force will provide the motion energy for the Earth and the moon-
(4)
The planets order contradicts Newton gravitation equation- where- the gravitation equation tells (greater mass necessitates shorter distance)- clearly- Jupiter the greatest mass is not the most near planet to the sun- means- the planets order contradicts the equation- when we asked the physicist told us this problem is done by (the initial conditions)- all these are nonsense clearly- planet orbital distance does NOT depend on the sun mass nor on the planet mass- planet orbital distance depends on the neighbor planet orbital distance – my equation proves this fact- let’s see it
Planet orbital distance equation (my 1st equation)
d^2= 4do (d-do) where d= planet orbital distance and do= its neighbor distance

Example- Venus orbital distance (108.2)2 = 4 x 57.9 x (50.3)
d= 108.2 million km = Venus Orbital Distance
d0= 57.9 million km = Mercury Orbital Distance
50.3million km=The Distance Between Venus And Mercury Venus Depends On Mercury

All planets orbital distances are defined based on their previous neighbor planets orbital distances- the equation is correct perfectly and all planets orbital distances are defined by it- my paper tests and discusses this equation
Shortly- planet mass has no any effect on this planet orbital distance definition.
Notice
Planet orbital distance definition depends on its neighbor orbital distance this fact is proved by many other different methods my equation is one method only of them, all these methods don’t use any planet mass- all planets orbits are defined based on their neighbor orbits- (Please note- Newton gravitation equation is wrong- I don’t critic it by many critics to short the discussion- but- the fact is that- the light beam created all planets orbits before any planet creation- the light created each planet orbit depends on its neighbor orbit- I prove this fact in the paper discussion- logically this fact kills the gravitation equation because the orbit is created before the planet creation)
Notice -Newton is so far from the truth- let’s give one more example- Newton told us planet moves by the sun mass gravity- the fact is that- the Sun itself is created by the planets motions energies- that’s why Newton ideas are not interesting for discussion because his ideas are imaginary have no part of truth-
(5)
Also-Newton told-planet motion depends on its mass- means-planet velocity depends on its mass- this also is imaginary idea- I define planet velocity in the explanation of the 3rd hypothesis- planet velocity is defined by many rules all of them don’t use any planet mass- at all Planet mass has no rule in this planet velocity definition.

The 2nd Proof Conclusion
The Gravitational Waves Are Produced By The Planets Motions Energies And Not By The Sun Gravitational Field- Also-There’s No Gravitational Field At All

Second Point (The Gravitational Waves Nature Analysis)
Let’s ask
(1)
If The Gravitational Waves Are Produced By The Planets Motions Energies- How Can The Gravitational Waves Move By Speed Of Light While The Planets Move By Low Velocities? Or Generally– regardless the gravitational waves source- how can the gravitational waves move by speed of light? From where the energy is provided to enable the waves to move by the speed of light?
(2)
Can the gravitational waves be reflected in the solar system? what’s the result of this reflection on the waves properties, features and nature?
(3)
Can the gravitational waves energy be increased? Means can one gravitational wave move by low velocity and this wave motion is accelerated to move by high velocity motion? again from what source the energy is provided and how the acceleration is done?
(4)
If the gravitational waves are produced by the same gravitational field (The physics book states “the gravitational waves are produced by the sun gravitational field”) does that mean all gravitational waves move by equal velocities? can some waves move faster than the others? why and how?
(5)
If the planets data are reflected on each other – can we discover the geometrical reason behind this features? Planet velocity is example where the velocities are defined by the rule (v1v2= constant) this rule tells the velocities are reflected on one another- why the velocities are reflected on each other? what’s the geometrical reason behind? suppose the gravitational waves are reflected in the solar system, why this cause the planets data to be reflected on each other?

(6)
If The Gravitational Waves Move By Speed Of Light- How Can These Waves Produce A Light Beam? Because the light beam production needs the value (C^2= squared speed of light) but the waves moves by speed of light only (C=300000 km/s) how the value (C^2) can be produced by the waves motions?
(7)
If the gravitational waves produce a light beam, does that mean the waves use electric field to produce this light beam? Is there another method to produce a light beam doesn’t use electric field or charges?
(8)
If the gravitational waves are reflected in the solar system can we discover that? can we prove that? and can we know in what planet orbit the reflection is done and if the waves are reflected many times?

The Gravitational Waves Properties, Features and nature
Here I compare between the two theories about the gravitational waves source and their effects on the waves properties-
1st Theory (The Physics Book Theory)
The physics book states, the gravitational waves are produced by the sun gravitational field- this theory tells little about the gravitational waves properties and nature because the mass gravity concept is puzzled and not understood for that the waves properties and features are puzzled also- let’s test this idea- In The Sun gravitational field theory no one knows how the mass gravity force works and if the gravity needs time to work- or if the gravity creates a geometrical design to practice the effect of one mass on the other- the mechanism is not clear and for that the gravitational waves are not clear- for example – no one knows why the gravitational waves can move by speed of light or what waves move by this speed and in what planet orbit or if the wave motion velocity is accelerated gradually from low velocity to high velocity– we shortly know nothing about these gravitational waves- let’s ask more questions- are these waves reflected and what’s the result of this reflection on the waves properties and nature- where do these waves go? And what’s the useful result of these waves energy? can these waves energy be used at all? are there just moving energy in space without an useful goal or result? And
The new article tells the gravitational waves move by speed of light can produce a light beam? How these waves can produce a light beam by their motion?
DEEP ANALYSIS
I wish the respectful reader notices the major change in vision by this article-because- the physics book states the sun rays is produced by the sun nuclear fusion- here- the source of energy is the sun mass and the used method is the sun nuclear fusion- and the light beam is produced
Let’s put the new article here again
This Is Extraordinary: Gravity Can Create Light, All on Its Own
https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83
The article tells, the gravitational waves can move by speed of light and can produce a light beam-
the light beam is created by the gravitational waves motions- the article tells- the light beam can be produced by the Motion Energy –
The article tells (The High Velocity Motion Can Produce A Light Beam)- here the article removed simply The Sun Nuclear Fusion Machine- the whole machine be useless because the light beam can be produced by (the motion energy)- I wish the respectful reader sees the miracle and wonder behind-
There are 2 major changes
(1st Change) The source of energy
The source of energy is the motion energy– No longer the sun mass be used as the sun rays source of energy- BUT – the motion energy is used as the source of energy – here- the fatal error of the sun nuclear fusion theory is seen clearly – because- the solar system is so rich in motion energy- the moving planets since thousands of years provide massive motion energy stored in the space- and by that- the solar system is very rich system in the motion energy- and we should ask (why do we need an outer source of energy?) why the solar system doesn’t use its massive motion energy to produce the light beam? Also if the massive motion energy is not used- where’s this massive energy? because it can cause continuous risk for the soalr system stability if no way to use this stored massive energy
The sun nuclear fusion theory is completely wrong because it doesn’t see the massive motion energy stored in the solar system
(2nd Change) the light beam production machine
The gravitational waves motions can produce the light beam- this is stated by the article but how? by what method the gravitational waves can produce the light beam? The article doesn’t explain how the gravitational waves can produce a light beam? But I put an explanation for this method in my theory discussion

2nd Theory (My Theory)
I suppose the gravitational waves are produced by the planets motions energies- let’s remember my theory because we will use it in the waves properties discussion
I asked –where any moving body produce energy by its motion =(½ mv^2),
where’s Planet motion energy? The planet can NOT store its motion energy inside its body because it would raise its temperature and No planet temperature is raised by its motion- logically- the planet motion energy is stored in the space in waves form- means- Planet motion energy creates waves in the space- the planet motion in the space is similar to a fish swimming in the sea- as fish swimming creates waves in the water planet motion energy creates waves in the space- means planet moves and creates waves in space and these waves move by velocity equal this planet velocity
by that- for example- Mercury (47.4 km/s) moves in the space and creates waves move by equal velocity (47.4 km/s)- based on this idea- All planets move and their motions create waves move by these planets velocities –
AND
I suppose these waves are the gravitational waves
AND
The planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)
AND
In Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity = 205.8 km/s = the planets velocities total

I explained this theory before in more details- now – let’s discover the gravitational waves properties and features in details- let’s put this analysis in the next point (third point) because we need to analyze the wave reflection process to discover the waves properties and features

Third Point (The Gravitational Waves Reflection)

Let’s ask
Question No.(1)
If the gravitational waves move by velocity 205.8 km/s, how can they move by speed of light? How the velocity 205.8 km/s can be accelerated to be 300000 km/s (speed of light) and where this acceleration is done?
Another question can help greatly this discussion
Question No.(2)
If The Gravitational Waves Move By Speed Of Light (C=300000 Km/S)- How Can These Waves Produce A Light Beam?
Let’s think how to answer this question- these gravitational waves move by speed of light (C=300000 km/s) but the light beam production needs the value (C^2= squared speed of light)- means- the wave velocity is squared- and how can the wave velocity to be squared?
This feature I have discovered in the solar system- the waves are reflected and the reflection causes to square the velocities- means- the gravitational waves are reflected in the solar system- the gravitational waves before the reflection moved by speed of light (C=300000 km/s) and the reflection causes the velocity to be squared- by that- after the reflection the gravitational waves speed is squared and changed from the speed of light (C=300000 km/s) to be (C^2= squared speed of light) and the light beam is created from this value (C^2)
Means- the waves reflection is the method by which the speed of light (C=300000 km/s) is changed into (C^2)- that means- without the waves reflection NO light beam can be created.
Notice– the waves reflection is proved strongly in the solar system because it causes to reflect the planets data- means- huge amount of planets data proves the waves reflection–we may remember one example – planet velocity is defined by the rule (v1v2=constant) this rule proves the planets velocities are reflected on each other
The paper provides hundreds of similar data proves the waves reflection
AND
The waves reflection causes to square the velocity- this feature is repeated in the solar system frequently – because- the waves are reflected three times in the solar system for that the velocity squaring is a feature repeated with each reflection and by that the planets data provides a strong proof for it-
Shortly- The waves reflection causes to square the velocities- now- let’s use this feature to know how the unified wave its velocity (205.8 km/s) can move by speed of light (C=300000 km/s)- (Please note this unified wave is the gravitational wave)

The Gravitational Waves Move By Speed Of Light
The unified wave (the gravitational wave) moves by 205.8 km/s and it’s reflected, the waves reflection causes to square the velocities
(205.8 km/s)^2 = 42683 km/s
Means the unified wave after the reflection moves by a velocity 42683 km/s
BUT
If a particle moves by speed (=0.99 C=297000 km/s), this high velocity motion causes to create relativistic effects specially Lorentz length contraction effect with rate 7.1
Means- the distances should be contracted by the rate 7.1
BUT
The waves reflection causes to reflect the geometrical effects and by that the rate (7.1) will cause to increase the length in place of the length contraction- means- the distances will be increased with (7.1) as a result for Lorentz length contraction effect
The velocity 42683 km/s will be 42683 x 7.1 = 300000 km/s (Speed Of Light)
That explains how the gravitational waves move by (205.8 k/s) can move by speed of light (C=300000 km/s)
NOTICE No. (1)
Please note the important observation
Without 7.1 the velocity will be only 42683 km/s (even after the waves reflection) and NOT the speed of light
That tells- the light beam production process depends on the previous light beam production process- means- a motion by (99%) of speed of light should be found before the wave reflection occurrence and without this motion with (0.99 C) the gravitational waves can’t move by speed of light because we need a source for Lorentz length contraction effect with rate (7.1)
That tells the light production process is done in chain process, the new light beam production depends on the old light beam and if this dependency is removed the gravitational waves can NOT move by the speed of light and No light beam can be created in this case
NOTICE No. (2)
We need to pay more attention for the importance of the motion by the speed of light- because the technique of the machine depends on the waves reflection- means- the waves can increase its velocity only by the reflection process – now the reflection causes to square the velocities- this is very important news why??
Because - If the waves move by speed of light (C=300000 km/s), the waves reflection will produce the value (C^2= squared speed of light) and from this value the light beam can be produced
Now – suppose the wave velocity is less than speed of light- suppose the wave moves by speed = (90%) of the speed of light= (270000 km/s) - the waves reflection will square this speed that will produce (0.81 C^2) which is NOT (C^2= squared speed of light) and as a result No Light Beam Can Be Produced (CONT)
Gerges Francis Tawdrous +201022532292
Physics Department- Physics & Mathematics Faculty
Peoples’ Friendship university of Russia – Moscow

Curriculum Vitae https://www.academia.edu/s/b88b0ecb7c
E-mail mrwaheid@gmail.com, mrwaheid1@yahoo.com
gergesgerges@yandex.ru
ORCID https://orcid.org/0000-0002-1041-7147
Facebook https://www.facebook.com/gergis.tawadrous
VK https://vk.com/id696655587
Tumblr https://www.tumblr.com/blog/itsgerges
Researcherid https://publons.com/researcher/3510834/gerges-tawadrous/
Google https://scholar.google.com/citations?user=2Y4ZdTUAAAAJ&hl=en
Livejournal https://gerges2022.livejournal.com/profile
Pocket https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar

PUBLICATIONS
box https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv
Academia https://rudn.academia.edu/GergesTawadrous
List of publications http://vixra.org/author/gerges_francis_tawdrous
Slideshare https://www.slideshare.net/Gergesfrancis

Text
itsgerges
itsgerges


Best Regards

The Planets Were Moving In Their Orbits Before The Sun Creation (Revised)
https://app.box.com/s/dufa274dvpay3fqn6syz6sefjljfwnx9
or
https://app.box.com/s/89vxxtv3hc8si245fwxpbw0ts9b126nz
or
https://www.tumblr.com/itsgerges/762780127698567168/the-planets-were-moving-in-their-orbits-before-the?source=share
or
https://gerges2022.livejournal.com/239300.html

The Sun Creation
The sun is created depending on the planets motions- because- the sun rays is created by the planets motions energies- In details- Planet motion produces energy (½ mv^2) and from this energy the sun rays is created- means- the sun is not doing nuclear fusion to produce its rays but the planets motions energies total is used to produce the sun rays– that explains why the sun corona temperature is 5 million Kelvin but the sun surface temperature is 5800 Kelvin- because the energy is not produced from the sun body but the energy comes from out of the sun body (from the planets motions energies total)- This theory is discussed based on 5 hypotheses.
The First Hypothesis
The Sun Rays Is Created By The Gravitational Waves Motions Energies
This Is Extraordinary: Gravity Can Create Light, All on Its Own
https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83
This new article tells the gravitational waves can move by speed of light and can produce a light beam-
I suppose -the sun rays is produced based on this method by the gravitational waves motions and not by the sun nuclear fusion- also – I claim No star rays is produced by the nuclear fusion process but all rays are created by the gravitational waves motions energies as the article states.
The Second Hypothesis
The gravitational waves are produced by the planets motions energies- and not by the gravitational field- moreover- The sun is Not producing any gravitational field-
The Third Hypothesis
The gravitational waves are reflected in the solar system- the wave reflection causes changes for the waves properties and data- the major change is that- the reflection causes to square the wave velocity- means- the gravitational wave moves by velocity (V), if this wave is reflected, it would move by velocity (V^2) after the reflection-
The gravitational waves are reflected three times in the solar system- two times in the outer planets and one time only in the inner planets-
The Fourth Hypothesis
The Planets Motions Use Different Rates Of Time
The rate of time use is useful because it enables to accumulate the planets motions energies during a period of time- understandable- Planet motion energy is small energy and the sun rays is massive energy and that necessitates to accumulate the planets motions energies total during a period of time to store motion energy sufficient to be used for the sun rays creation- Shortly- if the planets motions don’t use rates of time, no massive motion energy can be provided and for that NO enough energy will be found to produce the sun rays-means- No light beam can be created
The rate of time depends on the velocities rate
Example (one hour of Mercury clock = 1.6 hours of the Earth clock) because Mercury velocity =1.6 the Earth velocity– the hypothesis is explained and proved in details

The Fifth Hypothesis
Neptune Motion Causes Negative Effects On The Sun Rays Production Process are
(1) Neptune motion caused the gravitational waves to be reflected two times in the outer planets where one reflection is enough for the required process- the wave reflection is repeated by Neptune negative effect on the solar system motion
(2) Neptune caused to decrease the gravitational wave speed by one percent- where the gravitational wave moves by speed of light Neptune caused to decrease this speed by 1% creating a speed = (99% of the speed of light=297000 km/s) and by this speed (0.99C) the relativistic effects are created in the solar system

NOTICE
The solar system is one machine performs one Job- and this Job is The Sun Rays Production - All planets motions are used as parts to perform this one Job-

The Sun Rays Production Is Done By Two Basic Tasks
(1st task) The Provision Of The Sufficient Energy For The Sun Rays Production- and the sufficient energy is prepared by the motions of the five planets (Saturn- Jupiter- Venus- The Earth- The Moon – and Mars) because these five planets motions are used to create the general rate of time based on which The Sun Rays Are Created.
(discussed in details in the 3rd hypothesis)

(2nd task) The mechanism by which the light beam is created- and this mechanism is the relative motion- the gravitational waves move relative to the sun point of space- by this relative motion the sun rays are created- means- the required energy is prepared and provided by the aforementioned five planets- and when the sufficient energy be provided this energy is sent to the planets which create the mechanism and the mechanism uses the sufficient energy to produce The Sun Rays
The mechanism depends on the motions of 3 planets (Mercury- Venus and the moon)
Specially Venus, because Venus reflects the wave toward Mars and defines its trajectory angle to create the relative motion between the wave and the sun point of space- the relative motion is discussed in details in the explanation of the (first and second hypotheses)

The Explanation Of The First And Second Hypotheses

Let’s remember The 1st Hypothesis
This Is Extraordinary: Gravity Can Create Light, All on Its Own
https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83
The article tells the gravitational waves can move by speed of light and can produce a light beam – I suppose
(The Sun Rays Is Created By The Gravitational Waves Motions Energies And Not By The Sun Nuclear Fusion -Also All Stars Rays Are Created By This Method And No Rays Is Created By The Nuclear Fusion Process)
And –The 2nd Hypothesis
The gravitational waves are produced by the planets motions energies- and not by the gravitational field- moreover- The sun is Not producing any gravitational field-
The two hypotheses explain how the sun rays creation depends on the planets motions because The Sun Rays Are Produced By The Gravitational Waves Motions Energies as the article states AND The Gravitational Waves Are Produced By The Planets Motions Energies-
The two hypotheses are discussed together in 4 Points

First Point (The Gravitational Waves Source)

The gravitational waves are produced by the planets motions energies- and not by the gravitational field- moreover- The sun is Not producing any gravitational field-
I provide 2 major proves for this hypothesis which are- (1st proof/ Planet Motion Energy Analysis) and (2nd proof /The Sun Gravitational Field Refutation)

1st Proof / Planet Motion Energy Analysis
Planet motion produces energy (½ mv^2), Let’s ask, where’s Planet motion energy? the planet can NOT store its motion energy inside its body because it would raise its temperature and No planet temperature is raised by its motion- logically- the planet motion energy is stored in the space in waves form- means- Planet motion energy creates waves in the space- the planet motion in the space is similar to a fish swimming in the sea- as the fish swimming creates waves in the water the planet motion energy creates waves in the space- let’s see this picture clearly- the fish swims because it hits the water by its body and that creates waves in the water- we conclude, the water waves move by a velocity equal the fish velocity because of the reaction force- similar to that- Planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal the planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by equal velocity (47.4 km/s)- based on this idea- All planets move and their motions energies create waves in the space where each wave moves by velocity equal its planet velocity –
AND
I suppose these waves are the gravitational waves
AND
The planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)
AND
In Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity = 205.8 km/s why?
The 9 planets velocities total=176 km/s but I add the Earth moon velocity (29.8 km/s) that makes the total to be 205.8 km/s – I add the moon velocity because the energy is stored finally in the moon orbit-
Note- the moon velocity is 27.8 km/s BUT the Earth and the moon revolve around the sun together for that the moon velocity should be considered equal the earth velocity relative to (the sun) –
The 1st Proof Conclusion
The Planet Motion Energy Creates Waves In The Space
Means - The Space Must Have Moving Waves
Now -the scientists had discovered waves in the space- And- they considered these waves are produced by The Sun Gravitational Field – BUT Why?
The planet motion energy analysis proves the waves must be produced by the planets motions energies- Now let’s refute the sun gravitational field theory- the refutation gives support for the conclusion that – the gravitational waves are produced by the planets motions energies and NOT by the gravitational field because there’s NO Gravitational field.

2nd Proof / The Refutation Of The Sun Gravitational Field
The Sun Doesn’t Produce A Gravitational Field Nor Has Massive Gravity – let’s prove that in following
(1)
The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time-
(2)
No Planet Moves By The Sun Gravity – Newton is wrong- because- the planet moves by the force caused its creation- means- the planet creation and motion is done by one force only- because- if two forces have effects on the same one planet this planet would be broken- now- suppose the planet is created (by any force) and the sun gravity attracted this planet and forced it to revolve around the sun by the sun mass massive gravity (as Newton imagined) that would force the planet to move against its inner creation and will cause this planet to be broken- this is similar to a human is forced to walk on his hands in place of his legs and when this human refuses to do that (they told him we can force you by our power) for that this human walk on his hands forcedly and later this human is dead by this motion- shortly- the planet is NOT broken by its motion because the planet creation force is the force causes this planet motion- it’s one force caused the planet creation and motion-
Newton mistake is that he didn’t know how the planet is created and by that he didn’t realize that planet creation and motion are done together by the same one source- simply- the sun didn’t cause to create any planet and for that the sun doesn’t cause any planet to move- this analysis shows logical base but left us with puzzles to know (by what rule the planet moves?) and (Why is the sun found in the solar system if it doesn’t cause the planets motions?) these questions are answered in the paper abstract and discussions.
(3)
The mass gravity force can NOT cause any motion- again Newton is wrong- the mass gravity creates a bond between two masses- (the Earth and the moon are bond by the mass gravity)- by that they are similar to a lorry and its trailer – if the lorry moves the trailer will move with the lorry- but the mass gravity can NOT cause any motion- why? suppose the moon moves by the Erath gravity force- the moon moves and produces energy (1/2mv^2) and we have to ask from what source this energy will be provided?- from the mass itself- means if the Earth causes the moon to move the Earth and the moon masses should be decreased by the motion energy- this is a wrong definition for the mass gravity- the mass gravity creates a bond between two masses (The Earth and the moon) if some outer force causes the Earth to move the moon will move with the Earth and in this case the outer force will provide the motion energy for the Earth and the moon-
(4)
The planets order contradicts Newton gravitation equation- where- the gravitation equation tells (greater mass necessitates shorter distance)- clearly- Jupiter the greatest mass is not the most near planet to the sun- means- the planets order contradicts the equation- when we asked the physicist told us this problem is done by (the initial conditions)- all these are nonsense clearly- planet orbital distance does NOT depend on the sun mass nor on the planet mass- planet orbital distance depends on the neighbor planet orbital distance – my equation proves this fact- let’s see it
Planet orbital distance equation (my 1st equation)
d^2= 4do (d-do) where d= planet orbital distance and do= its neighbor distance

Example- Venus orbital distance (108.2)2 = 4 x 57.9 x (50.3)
d= 108.2 million km = Venus Orbital Distance
d0= 57.9 million km = Mercury Orbital Distance
50.3million km=The Distance Between Venus And Mercury Venus Depends On Mercury

All planets orbital distances are defined based on their previous neighbor planets orbital distances- the equation is correct perfectly and all planets orbital distances are defined by it- my paper tests and discusses this equation
Shortly- planet mass has no any effect on this planet orbital distance definition.
Notice
Planet orbital distance definition depends on its neighbor orbital distance this fact is proved by many other different methods my equation is one method only of them, all these methods don’t use any planet mass- all planets orbits are defined based on their neighbor orbits- (Please note- Newton gravitation equation is wrong- I don’t critic it by many critics to short the discussion- but- the fact is that- the light beam created all planets orbits before any planet creation- the light created each planet orbit depends on its neighbor orbit- I prove this fact in the paper discussion- logically this fact kills the gravitation equation because the orbit is created before the planet creation)
Notice -Newton is so far from the truth- let’s give one more example- Newton told us planet moves by the sun mass gravity- the fact is that- the Sun itself is created by the planets motions energies- that’s why Newton ideas are not interesting for discussion because his ideas are imaginary have no part of truth-
(5)
Also-Newton told-planet motion depends on its mass- means-planet velocity depends on its mass- this also is imaginary idea- I define planet velocity in the explanation of the 3rd hypothesis- planet velocity is defined by many rules all of them don’t use any planet mass- at all Planet mass has no rule in this planet velocity definition.

The 2nd Proof Conclusion
The Gravitational Waves Are Produced By The Planets Motions Energies And Not By The Sun Gravitational Field- Also-There’s No Gravitational Field At All

Second Point (The Gravitational Waves Nature Analysis)
Let’s ask
(1)
If The Gravitational Waves Are Produced By The Planets Motions Energies- How Can The Gravitational Waves Move By Speed Of Light While The Planets Move By Low Velocities? Or Generally– regardless the gravitational waves source- how can the gravitational waves move by speed of light? From where the energy is provided to enable the waves to move by the speed of light?
(2)
Can the gravitational waves be reflected in the solar system? what’s the result of this reflection on the waves properties, features and nature?
(3)
Can the gravitational waves energy be increased? Means can one gravitational wave move by low velocity and this wave motion is accelerated to move by high velocity motion? again from what source the energy is provided and how the acceleration is done?
(4)
If the gravitational waves are produced by the same gravitational field (The physics book states “the gravitational waves are produced by the sun gravitational field”) does that mean all gravitational waves move by equal velocities? can some waves move faster than the others? why and how?
(5)
If the planets data are reflected on each other – can we discover the geometrical reason behind this features? Planet velocity is example where the velocities are defined by the rule (v1v2= constant) this rule tells the velocities are reflected on one another- why the velocities are reflected on each other? what’s the geometrical reason behind? suppose the gravitational waves are reflected in the solar system, why this cause the planets data to be reflected on each other?

(6)
If The Gravitational Waves Move By Speed Of Light- How Can These Waves Produce A Light Beam? Because the light beam production needs the value (C^2= squared speed of light) but the waves moves by speed of light only (C=300000 km/s) how the value (C^2) can be produced by the waves motions?
(7)
If the gravitational waves produce a light beam, does that mean the waves use electric field to produce this light beam? Is there another method to produce a light beam doesn’t use electric field or charges?
(8)
If the gravitational waves are reflected in the solar system can we discover that? can we prove that? and can we know in what planet orbit the reflection is done and if the waves are reflected many times?

The Gravitational Waves Properties, Features and nature
Here I compare between the two theories about the gravitational waves source and their effects on the waves properties-
1st Theory (The Physics Book Theory)
The physics book states, the gravitational waves are produced by the sun gravitational field- this theory tells little about the gravitational waves properties and nature because the mass gravity concept is puzzled and not understood for that the waves properties and features are puzzled also- let’s test this idea- In The Sun gravitational field theory no one knows how the mass gravity force works and if the gravity needs time to work- or if the gravity creates a geometrical design to practice the effect of one mass on the other- the mechanism is not clear and for that the gravitational waves are not clear- for example – no one knows why the gravitational waves can move by speed of light or what waves move by this speed and in what planet orbit or if the wave motion velocity is accelerated gradually from low velocity to high velocity– we shortly know nothing about these gravitational waves- let’s ask more questions- are these waves reflected and what’s the result of this reflection on the waves properties and nature- where do these waves go? And what’s the useful result of these waves energy? can these waves energy be used at all? are there just moving energy in space without an useful goal or result? And
The new article tells the gravitational waves move by speed of light can produce a light beam? How these waves can produce a light beam by their motion?
DEEP ANALYSIS
I wish the respectful reader notices the major change in vision by this article-because- the physics book states the sun rays is produced by the sun nuclear fusion- here- the source of energy is the sun mass and the used method is the sun nuclear fusion- and the light beam is produced
Let’s put the new article here again
This Is Extraordinary: Gravity Can Create Light, All on Its Own
https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83
The article tells, the gravitational waves can move by speed of light and can produce a light beam-
the light beam is created by the gravitational waves motions- the article tells- the light beam can be produced by the Motion Energy –
The article tells (The High Velocity Motion Can Produce A Light Beam)- here the article removed simply The Sun Nuclear Fusion Machine- the whole machine be useless because the light beam can be produced by (the motion energy)- I wish the respectful reader sees the miracle and wonder behind-
There are 2 major changes
(1st Change) The source of energy
The source of energy is the motion energy– No longer the sun mass be used as the sun rays source of energy- BUT – the motion energy is used as the source of energy – here- the fatal error of the sun nuclear fusion theory is seen clearly – because- the solar system is so rich in motion energy- the moving planets since thousands of years provide massive motion energy stored in the space- and by that- the solar system is very rich system in the motion energy- and we should ask (why do we need an outer source of energy?) why the solar system doesn’t use its massive motion energy to produce the light beam? Also if the massive motion energy is not used- where’s this massive energy? because it can cause continuous risk for the soalr system stability if no way to use this stored massive energy
The sun nuclear fusion theory is completely wrong because it doesn’t see the massive motion energy stored in the solar system
(2nd Change) the light beam production machine
The gravitational waves motions can produce the light beam- this is stated by the article but how? by what method the gravitational waves can produce the light beam? The article doesn’t explain how the gravitational waves can produce a light beam? But I put an explanation for this method in my theory discussion

2nd Theory (My Theory)
I suppose the gravitational waves are produced by the planets motions energies- let’s remember my theory because we will use it in the waves properties discussion
I asked –where any moving body produce energy by its motion =(½ mv^2),
where’s Planet motion energy? The planet can NOT store its motion energy inside its body because it would raise its temperature and No planet temperature is raised by its motion- logically- the planet motion energy is stored in the space in waves form- means- Planet motion energy creates waves in the space- the planet motion in the space is similar to a fish swimming in the sea- as fish swimming creates waves in the water planet motion energy creates waves in the space- means planet moves and creates waves in space and these waves move by velocity equal this planet velocity
by that- for example- Mercury (47.4 km/s) moves in the space and creates waves move by equal velocity (47.4 km/s)- based on this idea- All planets move and their motions create waves move by these planets velocities –
AND
I suppose these waves are the gravitational waves
AND
The planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)
AND
In Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity = 205.8 km/s = the planets velocities total

I explained this theory before in more details- now – let’s discover the gravitational waves properties and features in details- let’s put this analysis in the next point (third point) because we need to analyze the wave reflection process to discover the waves properties and features

Third Point (The Gravitational Waves Reflection)

Let’s ask
Question No.(1)
If the gravitational waves move by velocity 205.8 km/s, how can they move by speed of light? How the velocity 205.8 km/s can be accelerated to be 300000 km/s (speed of light) and where this acceleration is done?
Another question can help greatly this discussion
Question No.(2)
If The Gravitational Waves Move By Speed Of Light (C=300000 Km/S)- How Can These Waves Produce A Light Beam?
Let’s think how to answer this question- these gravitational waves move by speed of light (C=300000 km/s) but the light beam production needs the value (C^2= squared speed of light)- means- the wave velocity is squared- and how can the wave velocity to be squared?
This feature I have discovered in the solar system- the waves are reflected and the reflection causes to square the velocities- means- the gravitational waves are reflected in the solar system- the gravitational waves before the reflection moved by speed of light (C=300000 km/s) and the reflection causes the velocity to be squared- by that- after the reflection the gravitational waves speed is squared and changed from the speed of light (C=300000 km/s) to be (C^2= squared speed of light) and the light beam is created from this value (C^2)
Means- the waves reflection is the method by which the speed of light (C=300000 km/s) is changed into (C^2)- that means- without the waves reflection NO light beam can be created.
Notice– the waves reflection is proved strongly in the solar system because it causes to reflect the planets data- means- huge amount of planets data proves the waves reflection–we may remember one example – planet velocity is defined by the rule (v1v2=constant) this rule proves the planets velocities are reflected on each other
The paper provides hundreds of similar data proves the waves reflection
AND
The waves reflection causes to square the velocity- this feature is repeated in the solar system frequently – because- the waves are reflected three times in the solar system for that the velocity squaring is a feature repeated with each reflection and by that the planets data provides a strong proof for it-
Shortly- The waves reflection causes to square the velocities- now- let’s use this feature to know how the unified wave its velocity (205.8 km/s) can move by speed of light (C=300000 km/s)- (Please note this unified wave is the gravitational wave)

The Gravitational Waves Move By Speed Of Light
The unified wave (the gravitational wave) moves by 205.8 km/s and it’s reflected, the waves reflection causes to square the velocities
(205.8 km/s)^2 = 42683 km/s
Means the unified wave after the reflection moves by a velocity 42683 km/s
BUT
If a particle moves by speed (=0.99 C=297000 km/s), this high velocity motion causes to create relativistic effects specially Lorentz length contraction effect with rate 7.1
Means- the distances should be contracted by the rate 7.1
BUT
The waves reflection causes to reflect the geometrical effects and by that the rate (7.1) will cause to increase the length in place of the length contraction- means- the distances will be increased with (7.1) as a result for Lorentz length contraction effect
The velocity 42683 km/s will be 42683 x 7.1 = 300000 km/s (Speed Of Light)
That explains how the gravitational waves move by (205.8 k/s) can move by speed of light (C=300000 km/s)
NOTICE No. (1)
Please note the important observation
Without 7.1 the velocity will be only 42683 km/s (even after the waves reflection) and NOT the speed of light
That tells- the light beam production process depends on the previous light beam production process- means- a motion by (99%) of speed of light should be found before the wave reflection occurrence and without this motion with (0.99 C) the gravitational waves can’t move by speed of light because we need a source for Lorentz length contraction effect with rate (7.1)
That tells the light production process is done in chain process, the new light beam production depends on the old light beam and if this dependency is removed the gravitational waves can NOT move by the speed of light and No light beam can be created in this case
NOTICE No. (2)
We need to pay more attention for the importance of the motion by the speed of light- because the technique of the machine depends on the waves reflection- means- the waves can increase its velocity only by the reflection process – now the reflection causes to square the velocities- this is very important news why??
Because - If the waves move by speed of light (C=300000 km/s), the waves reflection will produce the value (C^2= squared speed of light) and from this value the light beam can be produced
Now – suppose the wave velocity is less than speed of light- suppose the wave moves by speed = (90%) of the speed of light= (270000 km/s) - the waves reflection will square this speed that will produce (0.81 C^2) which is NOT (C^2= squared speed of light) and as a result No Light Beam Can Be Produced (cont)
Gerges Francis Tawdrous +201022532292
Physics Department- Physics & Mathematics Faculty
Peoples’ Friendship university of Russia – Moscow
Curriculum Vitae https://www.academia.edu/s/b88b0ecb7c
E-mail mrwaheid1@yahoo.com gergesgerges@yandex.ru
ORCID https://orcid.org/0000-0002-1041-7147
Facebook https://www.facebook.com/gergis.tawadrous
VK https://vk.com/id696655587
Tumblr https://www.tumblr.com/blog/itsgerges
Livejournal https://gerges2022.livejournal.com/profile
Pocket https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar
box https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv
Academia https://rudn.academia.edu/GergesTawadrous
publications http://vixra.org/author/gerges_francis_tawdrous
Slideshare https://www.slideshare.net/Gergesfrancis

Text
itsgerges
itsgerges


Best Regards

The Planets Were Moving In Their Orbits Before The Sun Creation (Revised)
https://app.box.com/s/dufa274dvpay3fqn6syz6sefjljfwnx9
or
https://app.box.com/s/89vxxtv3hc8si245fwxpbw0ts9b126nz
or
https://www.tumblr.com/itsgerges/762780127698567168/the-planets-were-moving-in-their-orbits-before-the?source=share
or
https://gerges2022.livejournal.com/239300.html

The Sun Creation
The sun is created depending on the planets motions- because- the sun rays is created by the planets motions energies- In details- Planet motion produces energy (½ mv^2) and from this energy the sun rays is created- means- the sun is not doing nuclear fusion to produce its rays but the planets motions energies total is used to produce the sun rays– that explains why the sun corona temperature is 5 million Kelvin but the sun surface temperature is 5800 Kelvin- because the energy is not produced from the sun body but the energy comes from out of the sun body (from the planets motions energies total)- This theory is discussed based on 5 hypotheses.
The First Hypothesis
The Sun Rays Is Created By The Gravitational Waves Motions Energies
This Is Extraordinary: Gravity Can Create Light, All on Its Own
https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83
This new article tells the gravitational waves can move by speed of light and can produce a light beam-
I suppose -the sun rays is produced based on this method by the gravitational waves motions and not by the sun nuclear fusion- also – I claim No star rays is produced by the nuclear fusion process but all rays are created by the gravitational waves motions energies as the article states.
The Second Hypothesis
The gravitational waves are produced by the planets motions energies- and not by the gravitational field- moreover- The sun is Not producing any gravitational field-
The Third Hypothesis
The gravitational waves are reflected in the solar system- the wave reflection causes changes for the waves properties and data- the major change is that- the reflection causes to square the wave velocity- means- the gravitational wave moves by velocity (V), if this wave is reflected, it would move by velocity (V^2) after the reflection-
The gravitational waves are reflected three times in the solar system- two times in the outer planets and one time only in the inner planets-
The Fourth Hypothesis
The Planets Motions Use Different Rates Of Time
The rate of time use is useful because it enables to accumulate the planets motions energies during a period of time- understandable- Planet motion energy is small energy and the sun rays is massive energy and that necessitates to accumulate the planets motions energies total during a period of time to store motion energy sufficient to be used for the sun rays creation- Shortly- if the planets motions don’t use rates of time, no massive motion energy can be provided and for that NO enough energy will be found to produce the sun rays-means- No light beam can be created
The rate of time depends on the velocities rate
Example (one hour of Mercury clock = 1.6 hours of the Earth clock) because Mercury velocity =1.6 the Earth velocity– the hypothesis is explained and proved in details

The Fifth Hypothesis
Neptune Motion Causes Negative Effects On The Sun Rays Production Process are
(1) Neptune motion caused the gravitational waves to be reflected two times in the outer planets where one reflection is enough for the required process- the wave reflection is repeated by Neptune negative effect on the solar system motion
(2) Neptune caused to decrease the gravitational wave speed by one percent- where the gravitational wave moves by speed of light Neptune caused to decrease this speed by 1% creating a speed = (99% of the speed of light=297000 km/s) and by this speed (0.99C) the relativistic effects are created in the solar system

NOTICE
The solar system is one machine performs one Job- and this Job is The Sun Rays Production - All planets motions are used as parts to perform this one Job-

The Sun Rays Production Is Done By Two Basic Tasks
(1st task) The Provision Of The Sufficient Energy For The Sun Rays Production- and the sufficient energy is prepared by the motions of the five planets (Saturn- Jupiter- Venus- The Earth- The Moon – and Mars) because these five planets motions are used to create the general rate of time based on which The Sun Rays Are Created.
(discussed in details in the 3rd hypothesis)

(2nd task) The mechanism by which the light beam is created- and this mechanism is the relative motion- the gravitational waves move relative to the sun point of space- by this relative motion the sun rays are created- means- the required energy is prepared and provided by the aforementioned five planets- and when the sufficient energy be provided this energy is sent to the planets which create the mechanism and the mechanism uses the sufficient energy to produce The Sun Rays
The mechanism depends on the motions of 3 planets (Mercury- Venus and the moon)
Specially Venus, because Venus reflects the wave toward Mars and defines its trajectory angle to create the relative motion between the wave and the sun point of space- the relative motion is discussed in details in the explanation of the (first and second hypotheses)

The Explanation Of The First And Second Hypotheses

Let’s remember The 1st Hypothesis
This Is Extraordinary: Gravity Can Create Light, All on Its Own
https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83
The article tells the gravitational waves can move by speed of light and can produce a light beam – I suppose
(The Sun Rays Is Created By The Gravitational Waves Motions Energies And Not By The Sun Nuclear Fusion -Also All Stars Rays Are Created By This Method And No Rays Is Created By The Nuclear Fusion Process)
And –The 2nd Hypothesis
The gravitational waves are produced by the planets motions energies- and not by the gravitational field- moreover- The sun is Not producing any gravitational field-
The two hypotheses explain how the sun rays creation depends on the planets motions because The Sun Rays Are Produced By The Gravitational Waves Motions Energies as the article states AND The Gravitational Waves Are Produced By The Planets Motions Energies-
The two hypotheses are discussed together in 4 Points

First Point (The Gravitational Waves Source)

The gravitational waves are produced by the planets motions energies- and not by the gravitational field- moreover- The sun is Not producing any gravitational field-
I provide 2 major proves for this hypothesis which are- (1st proof/ Planet Motion Energy Analysis) and (2nd proof /The Sun Gravitational Field Refutation)

1st Proof / Planet Motion Energy Analysis
Planet motion produces energy (½ mv^2), Let’s ask, where’s Planet motion energy? the planet can NOT store its motion energy inside its body because it would raise its temperature and No planet temperature is raised by its motion- logically- the planet motion energy is stored in the space in waves form- means- Planet motion energy creates waves in the space- the planet motion in the space is similar to a fish swimming in the sea- as the fish swimming creates waves in the water the planet motion energy creates waves in the space- let’s see this picture clearly- the fish swims because it hits the water by its body and that creates waves in the water- we conclude, the water waves move by a velocity equal the fish velocity because of the reaction force- similar to that- Planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal the planet velocity- for example- Mercury (47.4 km/s) moves and its motion energy creates waves in the space and these waves move by equal velocity (47.4 km/s)- based on this idea- All planets move and their motions energies create waves in the space where each wave moves by velocity equal its planet velocity –
AND
I suppose these waves are the gravitational waves
AND
The planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)
AND
In Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity = 205.8 km/s why?
The 9 planets velocities total=176 km/s but I add the Earth moon velocity (29.8 km/s) that makes the total to be 205.8 km/s – I add the moon velocity because the energy is stored finally in the moon orbit-
Note- the moon velocity is 27.8 km/s BUT the Earth and the moon revolve around the sun together for that the moon velocity should be considered equal the earth velocity relative to (the sun) –
The 1st Proof Conclusion
The Planet Motion Energy Creates Waves In The Space
Means - The Space Must Have Moving Waves
Now -the scientists had discovered waves in the space- And- they considered these waves are produced by The Sun Gravitational Field – BUT Why?
The planet motion energy analysis proves the waves must be produced by the planets motions energies- Now let’s refute the sun gravitational field theory- the refutation gives support for the conclusion that – the gravitational waves are produced by the planets motions energies and NOT by the gravitational field because there’s NO Gravitational field.

2nd Proof / The Refutation Of The Sun Gravitational Field
The Sun Doesn’t Produce A Gravitational Field Nor Has Massive Gravity – let’s prove that in following
(1)
The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time-
(2)
No Planet Moves By The Sun Gravity – Newton is wrong- because- the planet moves by the force caused its creation- means- the planet creation and motion is done by one force only- because- if two forces have effects on the same one planet this planet would be broken- now- suppose the planet is created (by any force) and the sun gravity attracted this planet and forced it to revolve around the sun by the sun mass massive gravity (as Newton imagined) that would force the planet to move against its inner creation and will cause this planet to be broken- this is similar to a human is forced to walk on his hands in place of his legs and when this human refuses to do that (they told him we can force you by our power) for that this human walk on his hands forcedly and later this human is dead by this motion- shortly- the planet is NOT broken by its motion because the planet creation force is the force causes this planet motion- it’s one force caused the planet creation and motion-
Newton mistake is that he didn’t know how the planet is created and by that he didn’t realize that planet creation and motion are done together by the same one source- simply- the sun didn’t cause to create any planet and for that the sun doesn’t cause any planet to move- this analysis shows logical base but left us with puzzles to know (by what rule the planet moves?) and (Why is the sun found in the solar system if it doesn’t cause the planets motions?) these questions are answered in the paper abstract and discussions.
(3)
The mass gravity force can NOT cause any motion- again Newton is wrong- the mass gravity creates a bond between two masses- (the Earth and the moon are bond by the mass gravity)- by that they are similar to a lorry and its trailer – if the lorry moves the trailer will move with the lorry- but the mass gravity can NOT cause any motion- why? suppose the moon moves by the Erath gravity force- the moon moves and produces energy (1/2mv^2) and we have to ask from what source this energy will be provided?- from the mass itself- means if the Earth causes the moon to move the Earth and the moon masses should be decreased by the motion energy- this is a wrong definition for the mass gravity- the mass gravity creates a bond between two masses (The Earth and the moon) if some outer force causes the Earth to move the moon will move with the Earth and in this case the outer force will provide the motion energy for the Earth and the moon-
(4)
The planets order contradicts Newton gravitation equation- where- the gravitation equation tells (greater mass necessitates shorter distance)- clearly- Jupiter the greatest mass is not the most near planet to the sun- means- the planets order contradicts the equation- when we asked the physicist told us this problem is done by (the initial conditions)- all these are nonsense clearly- planet orbital distance does NOT depend on the sun mass nor on the planet mass- planet orbital distance depends on the neighbor planet orbital distance – my equation proves this fact- let’s see it
Planet orbital distance equation (my 1st equation)
d^2= 4do (d-do) where d= planet orbital distance and do= its neighbor distance

Example- Venus orbital distance (108.2)2 = 4 x 57.9 x (50.3)
d= 108.2 million km = Venus Orbital Distance
d0= 57.9 million km = Mercury Orbital Distance
50.3million km=The Distance Between Venus And Mercury Venus Depends On Mercury

All planets orbital distances are defined based on their previous neighbor planets orbital distances- the equation is correct perfectly and all planets orbital distances are defined by it- my paper tests and discusses this equation
Shortly- planet mass has no any effect on this planet orbital distance definition.
Notice
Planet orbital distance definition depends on its neighbor orbital distance this fact is proved by many other different methods my equation is one method only of them, all these methods don’t use any planet mass- all planets orbits are defined based on their neighbor orbits- (Please note- Newton gravitation equation is wrong- I don’t critic it by many critics to short the discussion- but- the fact is that- the light beam created all planets orbits before any planet creation- the light created each planet orbit depends on its neighbor orbit- I prove this fact in the paper discussion- logically this fact kills the gravitation equation because the orbit is created before the planet creation)
Notice -Newton is so far from the truth- let’s give one more example- Newton told us planet moves by the sun mass gravity- the fact is that- the Sun itself is created by the planets motions energies- that’s why Newton ideas are not interesting for discussion because his ideas are imaginary have no part of truth-
(5)
Also-Newton told-planet motion depends on its mass- means-planet velocity depends on its mass- this also is imaginary idea- I define planet velocity in the explanation of the 3rd hypothesis- planet velocity is defined by many rules all of them don’t use any planet mass- at all Planet mass has no rule in this planet velocity definition.

The 2nd Proof Conclusion
The Gravitational Waves Are Produced By The Planets Motions Energies And Not By The Sun Gravitational Field- Also-There’s No Gravitational Field At All

Second Point (The Gravitational Waves Nature Analysis)
Let’s ask
(1)
If The Gravitational Waves Are Produced By The Planets Motions Energies- How Can The Gravitational Waves Move By Speed Of Light While The Planets Move By Low Velocities? Or Generally– regardless the gravitational waves source- how can the gravitational waves move by speed of light? From where the energy is provided to enable the waves to move by the speed of light?
(2)
Can the gravitational waves be reflected in the solar system? what’s the result of this reflection on the waves properties, features and nature?
(3)
Can the gravitational waves energy be increased? Means can one gravitational wave move by low velocity and this wave motion is accelerated to move by high velocity motion? again from what source the energy is provided and how the acceleration is done?
(4)
If the gravitational waves are produced by the same gravitational field (The physics book states “the gravitational waves are produced by the sun gravitational field”) does that mean all gravitational waves move by equal velocities? can some waves move faster than the others? why and how?
(5)
If the planets data are reflected on each other – can we discover the geometrical reason behind this features? Planet velocity is example where the velocities are defined by the rule (v1v2= constant) this rule tells the velocities are reflected on one another- why the velocities are reflected on each other? what’s the geometrical reason behind? suppose the gravitational waves are reflected in the solar system, why this cause the planets data to be reflected on each other?

(6)
If The Gravitational Waves Move By Speed Of Light- How Can These Waves Produce A Light Beam? Because the light beam production needs the value (C^2= squared speed of light) but the waves moves by speed of light only (C=300000 km/s) how the value (C^2) can be produced by the waves motions?
(7)
If the gravitational waves produce a light beam, does that mean the waves use electric field to produce this light beam? Is there another method to produce a light beam doesn’t use electric field or charges?
(8)
If the gravitational waves are reflected in the solar system can we discover that? can we prove that? and can we know in what planet orbit the reflection is done and if the waves are reflected many times?

The Gravitational Waves Properties, Features and nature
Here I compare between the two theories about the gravitational waves source and their effects on the waves properties-
1st Theory (The Physics Book Theory)
The physics book states, the gravitational waves are produced by the sun gravitational field- this theory tells little about the gravitational waves properties and nature because the mass gravity concept is puzzled and not understood for that the waves properties and features are puzzled also- let’s test this idea- In The Sun gravitational field theory no one knows how the mass gravity force works and if the gravity needs time to work- or if the gravity creates a geometrical design to practice the effect of one mass on the other- the mechanism is not clear and for that the gravitational waves are not clear- for example – no one knows why the gravitational waves can move by speed of light or what waves move by this speed and in what planet orbit or if the wave motion velocity is accelerated gradually from low velocity to high velocity– we shortly know nothing about these gravitational waves- let’s ask more questions- are these waves reflected and what’s the result of this reflection on the waves properties and nature- where do these waves go? And what’s the useful result of these waves energy? can these waves energy be used at all? are there just moving energy in space without an useful goal or result? And
The new article tells the gravitational waves move by speed of light can produce a light beam? How these waves can produce a light beam by their motion?
DEEP ANALYSIS
I wish the respectful reader notices the major change in vision by this article-because- the physics book states the sun rays is produced by the sun nuclear fusion- here- the source of energy is the sun mass and the used method is the sun nuclear fusion- and the light beam is produced
Let’s put the new article here again
This Is Extraordinary: Gravity Can Create Light, All on Its Own
https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83
The article tells, the gravitational waves can move by speed of light and can produce a light beam-
the light beam is created by the gravitational waves motions- the article tells- the light beam can be produced by the Motion Energy –
The article tells (The High Velocity Motion Can Produce A Light Beam)- here the article removed simply The Sun Nuclear Fusion Machine- the whole machine be useless because the light beam can be produced by (the motion energy)- I wish the respectful reader sees the miracle and wonder behind-
There are 2 major changes
(1st Change) The source of energy
The source of energy is the motion energy– No longer the sun mass be used as the sun rays source of energy- BUT – the motion energy is used as the source of energy – here- the fatal error of the sun nuclear fusion theory is seen clearly – because- the solar system is so rich in motion energy- the moving planets since thousands of years provide massive motion energy stored in the space- and by that- the solar system is very rich system in the motion energy- and we should ask (why do we need an outer source of energy?) why the solar system doesn’t use its massive motion energy to produce the light beam? Also if the massive motion energy is not used- where’s this massive energy? because it can cause continuous risk for the soalr system stability if no way to use this stored massive energy
The sun nuclear fusion theory is completely wrong because it doesn’t see the massive motion energy stored in the solar system
(2nd Change) the light beam production machine
The gravitational waves motions can produce the light beam- this is stated by the article but how? by what method the gravitational waves can produce the light beam? The article doesn’t explain how the gravitational waves can produce a light beam? But I put an explanation for this method in my theory discussion

2nd Theory (My Theory)
I suppose the gravitational waves are produced by the planets motions energies- let’s remember my theory because we will use it in the waves properties discussion
I asked –where any moving body produce energy by its motion =(½ mv^2),
where’s Planet motion energy? The planet can NOT store its motion energy inside its body because it would raise its temperature and No planet temperature is raised by its motion- logically- the planet motion energy is stored in the space in waves form- means- Planet motion energy creates waves in the space- the planet motion in the space is similar to a fish swimming in the sea- as fish swimming creates waves in the water planet motion energy creates waves in the space- means planet moves and creates waves in space and these waves move by velocity equal this planet velocity
by that- for example- Mercury (47.4 km/s) moves in the space and creates waves move by equal velocity (47.4 km/s)- based on this idea- All planets move and their motions create waves move by these planets velocities –
AND
I suppose these waves are the gravitational waves
AND
The planets revolve around the sun in the same one direction and for that their motions energies create waves in the space and these waves move perpendicular on the revolution direction (Toward Pluto orbit)
AND
In Pluto orbit these waves are unified together into one unified wave- this wave moves by a velocity = 205.8 km/s = the planets velocities total

I explained this theory before in more details- now – let’s discover the gravitational waves properties and features in details- let’s put this analysis in the next point (third point) because we need to analyze the wave reflection process to discover the waves properties and features

Third Point (The Gravitational Waves Reflection)

Let’s ask
Question No.(1)
If the gravitational waves move by velocity 205.8 km/s, how can they move by speed of light? How the velocity 205.8 km/s can be accelerated to be 300000 km/s (speed of light) and where this acceleration is done?
Another question can help greatly this discussion
Question No.(2)
If The Gravitational Waves Move By Speed Of Light (C=300000 Km/S)- How Can These Waves Produce A Light Beam?
Let’s think how to answer this question- these gravitational waves move by speed of light (C=300000 km/s) but the light beam production needs the value (C^2= squared speed of light)- means- the wave velocity is squared- and how can the wave velocity to be squared?
This feature I have discovered in the solar system- the waves are reflected and the reflection causes to square the velocities- means- the gravitational waves are reflected in the solar system- the gravitational waves before the reflection moved by speed of light (C=300000 km/s) and the reflection causes the velocity to be squared- by that- after the reflection the gravitational waves speed is squared and changed from the speed of light (C=300000 km/s) to be (C^2= squared speed of light) and the light beam is created from this value (C^2)
Means- the waves reflection is the method by which the speed of light (C=300000 km/s) is changed into (C^2)- that means- without the waves reflection NO light beam can be created.
Notice– the waves reflection is proved strongly in the solar system because it causes to reflect the planets data- means- huge amount of planets data proves the waves reflection–we may remember one example – planet velocity is defined by the rule (v1v2=constant) this rule proves the planets velocities are reflected on each other
The paper provides hundreds of similar data proves the waves reflection
AND
The waves reflection causes to square the velocity- this feature is repeated in the solar system frequently – because- the waves are reflected three times in the solar system for that the velocity squaring is a feature repeated with each reflection and by that the planets data provides a strong proof for it-
Shortly- The waves reflection causes to square the velocities- now- let’s use this feature to know how the unified wave its velocity (205.8 km/s) can move by speed of light (C=300000 km/s)- (Please note this unified wave is the gravitational wave)

The Gravitational Waves Move By Speed Of Light
The unified wave (the gravitational wave) moves by 205.8 km/s and it’s reflected, the waves reflection causes to square the velocities
(205.8 km/s)^2 = 42683 km/s
Means the unified wave after the reflection moves by a velocity 42683 km/s
BUT
If a particle moves by speed (=0.99 C=297000 km/s), this high velocity motion causes to create relativistic effects specially Lorentz length contraction effect with rate 7.1
Means- the distances should be contracted by the rate 7.1
BUT
The waves reflection causes to reflect the geometrical effects and by that the rate (7.1) will cause to increase the length in place of the length contraction- means- the distances will be increased with (7.1) as a result for Lorentz length contraction effect
The velocity 42683 km/s will be 42683 x 7.1 = 300000 km/s (Speed Of Light)
That explains how the gravitational waves move by (205.8 k/s) can move by speed of light (C=300000 km/s)
NOTICE No. (1)
Please note the important observation
Without 7.1 the velocity will be only 42683 km/s (even after the waves reflection) and NOT the speed of light
That tells- the light beam production process depends on the previous light beam production process- means- a motion by (99%) of speed of light should be found before the wave reflection occurrence and without this motion with (0.99 C) the gravitational waves can’t move by speed of light because we need a source for Lorentz length contraction effect with rate (7.1)
That tells the light production process is done in chain process, the new light beam production depends on the old light beam and if this dependency is removed the gravitational waves can NOT move by the speed of light and No light beam can be created in this case
NOTICE No. (2)
We need to pay more attention for the importance of the motion by the speed of light- because the technique of the machine depends on the waves reflection- means- the waves can increase its velocity only by the reflection process – now the reflection causes to square the velocities- this is very important news why??
Because - If the waves move by speed of light (C=300000 km/s), the waves reflection will produce the value (C^2= squared speed of light) and from this value the light beam can be produced
Now – suppose the wave velocity is less than speed of light- suppose the wave moves by speed = (90%) of the speed of light= (270000 km/s) - the waves reflection will square this speed that will produce (0.81 C^2) which is NOT (C^2= squared speed of light) and as a result No Light Beam Can Be Produced (CONT)
Gerges Francis Tawdrous
Physics Department- Physics & Mathematics Faculty
Peoples’ Friendship university of Russia – Moscow
Curriculum Vitae https://www.academia.edu/s/b88b0ecb7c
E-mail mrwaheid1@yahoo.com gergesgerges@yandex.ru
ORCID https://orcid.org/0000-0002-1041-7147
Facebook https://www.facebook.com/gergis.tawadrous
VK https://vk.com/id696655587
Tumblr https://www.tumblr.com/blog/itsgerges
Livejournal https://gerges2022.livejournal.com/profile
Pocket https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar

box https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv
Academia https://rudn.academia.edu/GergesTawadrous
publications http://vixra.org/author/gerges_francis_tawdrous
Slideshare https://www.slideshare.net/Gergesfrancis

Text
itsgerges
itsgerges


Best Regards

The Gravitational Waves Reflection In The Solar System (Analytical Study)

or

or

or

Abstract

Paper question

If The Gravitational Waves Are Reflected In The Solar System- How Can We Discover Or Prove That? And What’s The Useful Result Of This Reflection? 

Paper hypothesis

The Gravitational Waves Are Reflected In The Solar System- And This Reflection Causes To Square The Wave Velocity- Means- The Wave Velocity After The Reflection Be Squared The Wave Velocity Before The Reflection- 

The hypothesis explanation

  1. Preface
  2. The Gravitational Waves Source And Motion Trajectory
  3. Can The Gravitational Waves Move By Speed Of Light?
  4. Can A Light Beam Be Created By The Gravitational Waves Motion?
  5. The Sun Rays Production Mechanism
  6. The Sun Rays Production Details
  7. If the gravitational wave moves by a velocity 205.8 km/s how can this wave velocity be accelerated to be equal the speed of light (300000 km/s)?
  8. The Gravitational Waves Reflection Effects On The Motion Data
  9. The Gravitational Waves Reflection Proves (General Proves) 
  10. Venus Reflected The Gravitational Wave Toward Mars (The 3rd reflection)
  11. What’s The Negative Effect Done By Neptune Motion On The Gravitational Waves? 
  12. Can The Planets Motions Use Different Rates Of Time? 
  13. The Planets Motions Use Different Rates Of Time (Deep Analysis)   

Notice/ The Paper Definitions Are In Page No. (109) –

The Definitions Are

  1. (mass gravity definition)
  2. (The Sun Gravitational Field Theory Refutation)
  3. (the space nature)
  4. (the gravitational waves- the source and motion trajectory)  
  5. (planet velocity definition)
  6. (the data distribution in the solar system)
  7. (the star is found depending on its planets motions)
  8. (the sun is created after all planets creation and motion)
  9. (Planet Motion definition)
  10. (Planet Diameter Is Created By A Mathematical Equation)
  11. (Planet Mass definition)
  12. (The Matter Definition)
  13. (Can The Light Move Into The Past?)
  14. (Why Can Not The Matter Move Into The Past?)
  15. (Can A Mystery Be Found In The Solar System Creation?)

Paper Hypothesis Explanation And Discussion

(1st Item) Preface

The Sun Gravitational Field Theory Refutation

The Sun Doesn’t Create A Gravitational Field Nor Has Massive Gravity – there are 3 proves for this fact

(1st Proof)

The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time- 

(2nd Proof)

No Planet Moves By The Sun Gravity – Newton is wrong- because- the planet moves by the force caused its creation- means- the planet creation and motion is done by one force only- because- if two forces have effects on the same one planet this planet would be broken- now- suppose the planet is created (by any force) and the sun gravity attracted this planets and forced it to revolve around the sun by the sun mass massive gravity (as Newton imagined) that would force the planet to move against its inner creation and will cause this planet to be broken- this is similar to a human is forced to walk on his hands in place of his legs and when this human refuses to do that (they told him we can force you by our power) for that this human walk on his hands forcedly and later this human is dead by this motion- shortly- the planet is NOT broken by its motion because the planet creation force is the force causes this planet motion- it’s one force caused the planet creation and motion-

(3rd Proof)

The mass gravity force can NOT cause any motion- the mass gravity creates a bond between two masses- (the Earth and the moon are bond by the mass gravity)- by that they are similar to a lorry and its trailer – if the lorry moves the trailer will move with the lorry- but the mass gravity can NOT cause any motion- why? suppose the moon moves by the Erath gravity force- the moon moves an produces energy (1/2mv^2) and we have to ask from what source this energy will be provided- from the mass itself- means if the Earth causes the moon to move the Earth and the moon masses should be decreased by the motion energy- this is a wrong definition for the mass gravity- the mass gravity creates a bond between two masses (The Earth and the moon) if some outer force causes the Earth to move the moon will move with it and in this case the outer force will provide the motion energy for the Earth and the moon-

(2nd Item) The Gravitational Waves Source And Motion Trajectory

(1)

Planet moves and produces motion energy (1/2mv^2) and this energy can NOT be stored inside the planet body because the planet temperature would be raised by this energy and no planet temperature is raised by its motion- that forces us to suppose that the planet motion energy is stored in the space in waves form- means- the planet motion in the space is similar to the fish swimming in the sea- the fish moves because it hits the water by its body and that creates waves in the water and these waves move by the fish motion velocity (because of the reaction force)- similar to that- the planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal the planet velocity- means- Mercury (for example) moves and its motion energy creates waves in the space and these waves move by velocity = Mercury velocity (47.4 km/s) – we understand that these waves are similar to the water waves they move far from their source and can be reflected.

(2)

The planets revolve around the sun in the same direction- for that- the planets motions energies waves move toward Pluto orbit (Perpendicular on the revolution trajectory) and in Pluto orbit the planets motions energies waves are unified into one unified wave which moves by the planets velocities total – means- while the planets revolve around the sun there’s one unified wave revolves around the sun and moves by  velocity 205.8 km/s (the nine planets velocities total =176 km/s but I add the Earth moon velocity 29.8 km/s because the energy is stored finally in the Earth moon orbit-notice-the moon velocity equals the Earth velocity because they revolve together around the sun- the velocities total is 205.8 km/s )- Shortly – One unified wave revolves around the sun its velocity 205.8 km/s and This wave is found in Pluto orbit        

(3)

This unified wave (205.8 km/s) will reflect from Pluto orbit to Venus orbit- the wave reflection details will be discussed later

(4)

This unified wave is the gravitational waves- the scientists have discovered them but they called them (gravitational waves) because the scientists supposed the waves are produced by the sun gravitational field- while the waves are produced by the planets motions energies – as we have seen the logical analysis forces us to accept that the gravitational waves must be produced by the planets motions energies because no place to store the planet motion energy except in the space as moving waves- by that the waves in the space must be produced by the planets motions energies (also I have refuted the sun gravitational field theory)  

 (3rd Item) Can The Gravitational Waves Move By Speed Of Light?

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

this new article tells the gravitational waves can move by the speed of light and can produce a light beam- 

The article tells new information- its tells the light beam can be produced by gravitational waves motion energy when these waves move by speed of light – but the wave move by speed of light how can this wave produce a light beam? 

We should notice that the article still believes the gravitational waves are produced by the sun gravitational field- this theory which I have refuted completely- but here we don’t interest for the gravitational waves source but we interest for this amazing information tells the gravitational waves can move by speed of light (300000 km/s) and can produce a light beam- why is this information so amazing? Because

The sun nuclear fusion theory tells the sun rays is produced by the nuclear fusion process- the article tells there’s another method to produce a light beam –

let’s compare between the two methods

  • The sun nuclear fusion theory tells the source of energy is the sun mass which is used by the sun nuclear fusion process to produce the sun rays- means- the source of energy is the sun mass and the light production method is the nuclear fusion process
  • The article tells some very different thing- it tells the source of energy is the gravitational waves motion energy and the light production method is the gravitational waves motion by speed of light

If the sun rays is created by the gravitational waves motions that will change the whole vision about sun rays production process and may answer many left questions

Before the details discussion- let’s ask the direct and simple question-

If the gravitational waves move by speed of light (C=300000 km/s) how can these gravitational waves produce a light beam?

Let’s answer in the next item

(4thItem) Can A Light Beam Be Created By The Gravitational Waves Motion?

The paper hypothesis tells (The Gravitational Waves Are Reflected In The Solar System- And This Reflection Causes To Square The Wave Velocity- Means- The Wave Velocity After The Reflection Be Squared The Wave Velocity Before The Reflection)

The article tells (the gravitational waves can move by speed of light C=300000 km/s)   

If these waves are reflected and the reflection can square the velocities- the speed of light will be squared (C^2) and by this value (C^2 squared speed of light) a light beam can be created- that explains how the gravitational waves moves by speed of light can produce a light beam-

Shortly

If I prove the gravitational waves are reflected in the solar system and this reflection causes to square the velocities that will prove my theory tells (The Sun Is Not Doing Nuclear Fusion To Produce Its Rays Instead The Sun Rays Is Created By The Planets Motions Energies Total)

 The idea is a simple one

The gravitational waves can move by speed of light (C=300000 km/s) but the light beam can be produced only by the value (C^2)- that tells the gravitational waves velocity must be squared- the velocity is squared only by the reflection of energy – that shows the paper hypothesis importance–because without the squaring of the velocity no light beam can be produced even if the gravitational wave moves by speed of light   

I want to say- the wave reflection is the light beam production mechanism spine- because the wave reflection causes to square the wave velocity- means- if the gravitational wave moves by speed of light this speed will be squared by the reflection of the wave and by that the value (C^2 = squared speed of light) will be created by which the light beams can be produced.

The idea can be useful only if the wave reflection can square the wave velocity- the hypothesis proves will disprove the sun nuclear fusion theory completely – let’s see in following how the sun rays are produced in details

(5th Item) The Sun Rays Production Mechanism

The idea is more clear now

The gravitational waves are produced by the planets motions energies- and the planets motion energies waves are unified into one unified gravitational wave which moves by (205.8 km/s) =the planets velocities total – the waves unification is done in Pluto orbit and by that the unified velocity be (205.8 km/s) in Pluto orbit

Shortly

While the planets revolve around the sun there’s one gravitational wave revolves around the sun and moves by velocity (205.8 km/s) –

The new article tells the gravitational waves can move by speed of light (C=300000 km/s)- and these waves can produce a light beam!

The paper hypothesis tells (The Gravitational Waves Are Reflected In The Solar System- And This Reflection Causes To Square The Wave Velocity- Means- The Wave Velocity After The Reflection Be Squared The Wave Velocity Before The Reflection) -

These are all available data – and – what’s the requirement?

We have a waves move by velocity (205.8 km/s) and we want this wave to move by speed = (C^2 squared speed of light) – let’s try to do that in following

The First Reflection

The unified wave (The Gravitational Wave) moves by (205.8 km/s) is reflected from Pluto orbit to Venus orbit- this reflection of energy squares the velocities and causes this wave to move by speed of light – let’s see how

300000 = (205.8)^2 x 7.1

The motion by (0.99C) creates relativistic effects – specifically Lorentz length contraction effect by rate 7.1, Means- if a particle its length 7.1 meter moves by speed (0.99C) this particle length will be contracted and be one meter only- let’s analyze the equation

The unified wave velocity (205.8 km/s) is reflected and that caused to square the velocity (205.8 km/s)^2 = 42683 km/s now the rate (7.1) causes contraction for the lengths but because of the energy reflection the geometrical effects will be reflected also- means the rate (7.1) doesn’t cause to contract the length but increase the lengths and by that the velocity 42683 km/s will be 42683 km/s x 7.1 = 300000 km/s (speed of light = C)

Shortly- the wave reflection from Pluto to Venus causes to square the wave velocity and that accelerate the wave velocity to move by speed of light –

Means- the wave reaches Venus moves by speed of light (C=300000 km/s)       

The second Reflection (in fact the 3rd reflection)  

The unified wave (gravitational wave) reaches to Venus orbit with speed (300000 km/s)- then Venus reflects the unified wave toward Mars- this reflection causes to square the velocity- before the reflection the wave moves by speed of light and after the reflection the speed is squared and the wave shows the value (C^2 squared speed of light) by which the light beam can be created (the sun rays creation)

The idea summary tells

The unified wave is reflected two times in the solar system      

In the first time- the unified wave velocity (205.8 km/s) is accelerated to be 300000 km/s (speed of light =C)

In the second time- the unified wave velocity (300000 km/s = speed of light =C) be accelerated to be C^2 (squared speed of light) and the light beam is produced by this value C^2 (squared speed of light)

Now we understand this simple idea- but there are 2 left Major Questions

(1st Question) how the wave velocity (205.8 km/s) can be accelerated to be 300000 km/s (speed of light = C)? by what method the wave is accelerated?

(2nd Question) Are the unified wave reflected two times only in the solar system?

Let’s leave the 1st question to discuss later and answer the 2nd question in following,

How many times the unified wave reflected in the solar system?

Three times (by Pluto, by Saturn and by Venus) -while the required is only two times- so why the wave is reflected three times?

Neptune caused negative effect on the energy reflection by Pluto, by that the energy doesn’t reach to Venus- that forces Saturn to reflect the wave one more time to do the same job of Pluto reflection 

Means- the first reflection by Pluto failed to square the velocity and accelerate the wave motion to move by speed of light- this failure is done by Neptune negative effect on the wave energy- because of that- Saturn does another reflection for the wave energy and by Saturn reflection the wave velocity (205.8 km/s) is squared and the motion is accelerated to be done by speed of light (300000 km/s),

Shortly- in place of one reflection by Pluto, the unified wave is reflected two times by Pluto and by Saturn but these two reflections do only the role of one supposed reflection (from Pluto to Venus)- by this one reflection the unified wave velocity (205.8 km/s) will be accelerated to be speed of light (300000 km/s) and by that the wave reach to Venus moves by speed of light (C=300000 km/s)

Venus reflects the wave again toward Mars (the 3rd reflection), by this reflection the speed of light is squared and produced (C^2= squared speed of light) and from this value (C^2) the light beam is produced (the sun rays is created)

Notice

In Lorentz transformations study- there’s a major question asks (Can particle own data and dimensions be changed by the high velocity motion?) 

Shortly- Lorentz transformation tells– if a particle moves by high velocity motion- this particle own length will be contracted and its time will be dilated and its mass will be increased- these changes are defined by Lorentz transformations and we know these are real changes in this particle own data - BUT

Some researchers tell No Real Changes are done for the particle own data but they are illusions of measurements (means Lorentz transformations measure illusions)

I refuse this opinion - BECAUSE

  1. The Physics Is The Measurements Science And What’s Measured Is The Fact
  2. If no real changes are done how the problem of Michelson and Morelly experiment is solved?- also- we can’t understand why the synchronous events in one frame can’t be synchronous in another (as Einstein stated) where no real change is found for any data- the distances are Not contracted nor the time is dilated nor the mass is increased why the events can NOT be synchronous in any frame?  
  3. If the particle own data are measured correctly while it moves by my motion velocity and these measurements are suffered from illusions because the particle moves by high velocity motion relative to my motion velocity that means (I’m the universe reference point)
  4. We notice- Lorentz length contraction equation can’t distinguish between particle length and a distance, both can be contracted by the same one equation- that supports my theory tells (The Matter And The Space Are Created From The Same Energy)– If the space is similar to the sea of water the matter will be similar to a whirlpool (or vortex) on the sea page- both the matter and space are created from the same one energy- that gives chance to change the matter dimensions by its motion   
  5. My planet diameter equation proves the planet diameter is created depending on its velocity- means- for example– Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s- this fact is proved by my Equation strongly - that tells the motion has effect on the matter dimensions and data definition which supports the same meaning of Lorentz transformation. 

(6th Item) The Sun Rays Creation Details

The sun is NOT doing nuclear fusion to produce its rays- but- the sun rays is created by the planets motions energies- generally- the star rays is created by the gravitational waves which are produced by its planets motions energies – there are 4 facts prove that – let’s refer to these facts in following

1st Fact 

The Sun Corona Temperature is 5 millions Kelvin but the sun surface is 5800 Kelvin

This fact puzzles the scientists – No puzzle here-

Simply the sun rays is Not produced by the sun nuclear fusion but by the planets motions energies – the energy is Not produced from the sun body but by the planets motions energies – means- The energy out of the sun is greater hundreds times the energy inside the sun because the energy is provided by the planets motions energies-

The Sun Corona Temperature proves that the sun is NOT doing nuclear fusion to produce its rays – instead the planets motions energies total is used as the source of energy to produce the sun rays

2nd Fact 

The gravitational waves are created by the planets motions energies- I have proved that- simply Planet motion energy (1/2mv^2) should be stored in the space in moving waves because no other place to store this energy- that tells the gravitational waves are produced by the planets motions energies- this is a doubtless conclusion- the gravitational waves are produced by the planets motions energies-

Here we see clearly the fatal error of the sun nuclear fusion theory because the solar planets revolve around the sun moving continuously and by this motion massive motion energy must be produced and that tells massive motion energy must be stored in the space in moving waves- so we have to ask (when and how this stored energy will be used?) understandable the energy can not be stored in the space forever without using- means- the sun rays is the outlet for the stored motion energy and the using of this stored energy protects the solar system from all risks found by the unused stored energy-

The logical problem here tells, the scientists create a strange source of energy (the sun mass) to produce the sun rays by the nuclear fusion process and no one interests for the planet motion energy nor the stored massive energy in the space-

The mistake is that- the scientists supposed the planet moves and produces NO energy while the motion energy (½ mv^2) is elementary concept in the classical mechanics

The planets motions energies create a very great problem for the sun nuclear fusion theory and disproves it because No Source Of Energy Is Required where massive motion energy is stored in the solar system and needs to be used – here the sun rays is the outlet for this massive motion energy and provide the energy in very useful and peaceful method-           

3rd Fact 

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

this article tells the gravitational waves can move by the speed of light and can produce a light beam-  the question was (If the gravitational waves move by speed of light how can these waves produce a light beam?) – the answer was –

the gravitational waves are reflected and the reflection causes to square the velocity and by that the gravitational wave moves by speed of light and when this wave be reflected its velocity will be squared and by that the value (C^2= squared speed of light) by this value the light beam can be created.

here the planets data depends on this process – let’s see that-

the unified wave move by the velocity (205.8 km/s)= the planets velocities total- the square of this velocity will produce the speed of light (205.8)^2 x 7.1 = 300000 as I have explained before- then the speed of light square will produce (C^2= squared speed of light) and by this value the light beam will be created –

means- the planets data is in harmony with the light production process

please note- the energy reflection is proved strongly because the planets data is reflected by it (later we will discuss the reflection of energy proves)- means- I provide a theory shows full harmony with the planets data that prove the theory is a fact because the planets data proves it   

NOTICE

Before the Earth moon creation the planets velocities total was 176 km/s (the nine planets velocities total only without the moon velocity)- let’s try to reflect this wave

The wave reflection causes to square its velocity  (176)^=30976 km/s

Now we use Lorentz length contraction effect rate 7.1

The result is 30976 x 7.1 = 220000 km/s

Here I accelerated the unified wave its velocity (176 km/s) by the same Method I used for the velocity (205.8 km/s) but the wave (176 km/s) after acceleration produce the velocity 220000 km/s which equal (75% of speed of light) and this velocity square can NOT produce the value (C^2 squared speed of light) and by that NO Light Beam can be created

Let’s review our wave velocity

(205.8)^ x 7.1 = 300000

Means- the unified wave with velocity 205.8 km/s is the only wave can produce the light beam by the reflection of energy- that tells us – the sun is created after the Earth moon creation – and also tells the planets data is in full harmony with the sun rays creation by the gravitational waves motions- this analysis gives proof for my theory tells (The Sun Is Not Doing Nuclear Fusion To Produce Its Rays But The Sun Rays Is Created By The Planets Motions Energies Total)

4thFact 

The previous analysis proves the sun rays is created by the planets motions energies and not by the sun nuclear fusion- can we add one more crucial proof for this fact? Yes – the crucial proof tells that (the sun rays is created by a relative motion)

Means the method by which the sun rays is created is (the relative motion)- let’s examine this proof in following

(i)

As we have seen the light production depends on a gravitational wave moves by speed of light (C=300000 km/s) then this wave is reflected and by the reflection the speed of light will be squared and produced the value (C^2= squared speed of light) and by this value the light beam can be created

Means- the main player to produce the light beam is the gravitational wave moves by speed of light- then let’s ask- suppose this wave moves by speed less than speed of light what would happen? In this case the energy reflection will not produce the value (C^2= squared speed of light) and as a result NO Light Beam can be created 

Means- the process cornerstone is the wave motion by speed of light? But relative to what? The question asks (if the wave moves by speed of light relative to what?)

Of course the wave moves by speed of light relative to the sun point because the different velocity between the wave motion and the sun point motion will produce the light beam- means- the light beam is produced by a relative motion and this motion has two players which are

(1st player) the unified wave moves by 205.8 km/s and after its reflection will move by the speed of light 300000 km/s

(2nd player) the sun point of space moves by 1 km/s (stationary point)

(ii)

How can the sun point move by 1 km/s and its velocity never increased?

We understand the space is movable and not static and the gravitational waves prove the space has motion- means- no stationary point can be found in the space (as no stationary point can be found on the sea because every thing moves by the sea waves) by that the point moves by 1 km/s (a stationary point) is a point created by some design because it can Not be found by nature- let’s create this stationary point in following

The planets revolve around a point in space (any point in space) the revolution creates two velocities on both sides of the revolution- the two velocities are equal in value opposite in direction and by that the total be Zero –

Means- the revolution design creates a stationary point in the revolution center

By that the sun point (1 km/s) is created by the planets revolution around it

By the stationary point creation a relative motion is created- and this relative motion has two players as referred before

(1st player) the unified wave revolves around the sun with velocity 205.8 km/s and after its reflection the velocity will be equal the speed of light (C=300000 km/s)  

(2nd player) the sun point of space (1 km/s) (stationary point)

(iii)

We should pay attention to the sun point because it’s the process cornerstone - Why? 

Because the unified wave (gravitational wave) can not move by speed greater than speed of light (C=300000 km/s) where the speed of light is the wave velocity limit

But- the different velocity between the unified wave velocity and the sun point velocity should be equal = 300000 km/s = speed of light because any less different velocity can NOT produce the light beam –

That tells the sun point of space should be stationary point (1 km/s) and its velocity should NOT be increased in any case-

What’s The Information Told By This Analysis?

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

The article tells the gravitational waves can move by the speed of light- but- the fact is that- the different velocity between the gravitational wave and the sun point of space is the speed of light- the wave move relative to the sun point of space- as any other motion-

For example Pluto velocity is 4.7 km/s- why? because Pluto moves relative to the sun point of space and Pluto velocity 4.7 km/s and the sun point is (1 km/s) and the different velocity is 4.7 km/s- all motions are done relative to the sun point of space because the energy storing aims to- create the sun rays- by that- if the article tells the wave moves by speed of light that means the different velocity between the wave and the sun motions is the speed of light – that makes the sun stationary point 1 km/s  

Shortly – if the sun point moves by any velocity faster than 1 km/s NO Light Beam Can Be Created and NO Sun Rays can Be Produced-

The sun point velocity is the process spine

(iv)  

This analysis proves the sun rays is created by the gravitational waves energy (the planets motion energies) and not by any nuclear fusion process- and also refutes the sun nuclear fusion theory completely- why? for 2 reasons

1st Reason

The sun rotation period is (25.4 days at equator) and the sun circumference is 4.37 million km- this motion velocity is 2 km/s

Means if the sun moves by 2 km/s, the sun will rotate around its axis one complete rotation in 25.4 days

This data proves the sun point is the stationary point because the actual accounts show the sun point velocity is 2 km/s

Notice -

The solar system geometrical design supposes the velocity of the sun point is 1 km/s but the real velocity is 2 km/s – it is NOT small change in Value – it’s a great change in the whole machine- but the machine still can produce a light beam spite of that

And to produce the light beam- the machine has to depend on (2 seconds) in place of (1 second) and for that the planets motions distances total should be= (180000 million km) in place of the required distance (90000 million km) - Means – this small change in the sun point velocity (from 1 km/s to 2 km/s) causes to double the passed distances by the planets to produce the sun rays- we can imagine if the sun point moves by 15 km/s in this case it will be impossible to produce the light beam

Notice- (C^2 squared speed of light) equals 90000 million km if the period is one second- means- the planets motions distances total be 90000 million km in some period of time but the rates of time makes this period to be equivalent to one second of the sun clock that creates the value (C^2 squared speed of light)

The problem now is that- the sun velocity is 2 km/s that forces the planets to pass total distance = 180000 million km to create the rate (90000 million km for one second)

That shows the great effect of the smallest change of the sun point velocity

2nd Reason

The sun position and data is defined based on very accurate mathematical calculations 

The designer paid so great attention and incredible interest for this point- because of its massive importance and effect- for that- the designer made the sun position in the sky and the sun creation data to depend on exact mathematical calculations and strict geometrical rules to guarantee the sun point velocity Never to be faster than 1 km/s

Let’s see some examples to explain that

Example No.(1)

We See The Sun Disc= The Moon Disc which enable the total solar eclipse to be occurred because

The sun diameter / the moon diameter= Earth orbital distance/ earth moon distance

Why does the diameters rate equal = the distances rate?

Example No.(2)

4900 mkm (Jupiter orbital circumference) = 1.39 mkm (the sun diameter) x 3475 km =12104 km x 406000 km = 12756 km x 384000 km = 6792 km x 2 x 363000 km

3475 km      = the moon diameter                 12104 km    = Venus diameter

12756 km    = The Earth diameter                6792 km      = Mars diameter

 363000 km, 384000 km and 406000 km are the distances between the Earth and its moon in perigee, orbital distance and apogee radiuses respectively

The previous examples show that the sun creation data and its position in the sky are defined based on accurate mathematical calculations- but why? and what’s the useful result of these data proportionalities

The designer aimed to make the velocity of the sun point of space to be 1 km/s and He interested to guarantee that the velocity can Never be faster than 1 km/s – because any faster velocity than 1 km/s will destroy the chance of the light beam production- BUT

What’s the relationship between the sun creation data and its velocity?

This question is answered by my planet diameter equation- the equation proves that the planet diameter is defined based on this planet velocity- for example- Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s that shows the change in velocity can change the diameter (my planet diameter equation proves that strongly) and based on that, the sun diameter is effected by the sun velocity and vice versa for that reason these proportionalities are necessary to guarantee the sun point of space to be (1 km/s) and never be faster.

(v)  

The sun position and creation data by accurate mathematical calculations was necessary to guarantee the sun point of space velocity to be 1 km/s and never be faster by that the sun be the stationary point-  these calculations will be useless if the sun rays is created by the sun nuclear fusion process-

Means- the sun nuclear fusion theory doesn’t see the massive motion energy which is found in the solar system and also doesn’t see the relative motion which is the method to produce the sun rays- by that – the theory doesn’t see the accurate calculations behind the sun position and its creation data- that tells- the sun nuclear fusion theory is completely very strange theory from the solar system geometrical concept and design.

 (7th Item) If the gravitational wave moves by a velocity 205.8 km/s how can this wave velocity be accelerated to move by  the speed of light (300000 km/s)?

(1)

The wave acceleration depends on the sun rate of time (one second of the sun clock = 1461 seconds of the Earth clock) by that the unified wave (205.8 km/s) moves a distance 300000 km in 1461 seconds for the Earth clock shows the velocity is 205.8 km/s but the period is one second for The Sun clock shows the velocity 300000 km/s (speed of light) –means- the wave velocity is 205.8 km/s relative for the Earth but the same wave moves by 300000 km/s (speed of light) relative to the sun

The wave acceleration method is the sun rate of time

notice- for the motion by speed of light (C=300000 km/s) the rate of time is (1=1461) but for the motion by (C^2) the rate of time is (1=1461^2) means (1=2134521)   

BUT

The sun rate of time is found always why the acceleration is done only for the unified wave (205.8 km/s) which is sent from Pluto (and Saturn) to Venus? 

There are 2 reasons

(1st Reason)

The sun rate of time causes to accelerate any wave- but not all waves can be working- let’s remember the acceleration for the wave its velocity 176 km/s (the nine planets velocities total without the Earth moon velocity)

The wave velocity is 176 km/s - let’s try to reflect this wave

The wave reflection causes to square its velocity  (176)^=30976 km/s

Now we use Lorentz length contraction effect rate 7.1

The result is 30976 x 7.1 = 220000 km/s

Here I accelerated the unified wave its velocity (176 km/s) by the same Method I used for the velocity (205.8 km/s) but the wave (176 km/s) after acceleration produce the velocity 220000 km/s which equal (75% of speed of light) and this velocity square can NOT produce the value (C^2 squared speed of light) and by that NO Light Beam can be created – by that the acceleration of the wave 176 km/s doesn’t produce any useful result.

On the contrary, the acceleration of the unified wave (205.8 km/s) will produce the speed of light – (205.8)^2 x 7.1 = 300000 – and this speed of light will be squared by Venus reflection and the value (C^2) be produced and this value can produce a light beam- Means- all waves can be accelerated but the working wave is specific one  

(2nd Reason)

Again- The sun rate of time causes to accelerate any wave- BUT the acceleration process is done by energy- the rate of time is a method (as a generator can produce electricity) but the generator will work when you put fuel in it– the method is available but the process is done by energy-

We know the energy is reflected from (Pluto and Saturn) to Venus that tells the unified wave velocity in Pluto is 205.8 km/s but the wave velocity in Venus is 300000 km/s (speed of light) because the energy is in Venus orbit and Not in Pluto orbit-   

Notice

The wave acceleration depends on the sun rate of time- means- the motion energy must be ascending to reach to the sun corona and there the waves acceleration is done  Means

All planets see the unified wave moves by velocity (205.8 km/s)- no any acceleration for the unified wave (205.8 km/s)  is recorded in any planet because the acceleration needs the energy reaches to the sun corona (to depend on the sun rate of time)- by that the wave velocity is NOT changed for all planets

BUT

Let’s look deeply as possible

The unified wave velocity is 205.8 km/s in Pluto orbit –Now if this wave is ascending to the sun and this wave moves into the sun corona- the wave velocity in the sun corona will be 205.8 km/s only – why? because the wave is not accelerated

Then

The unified wave will be reflected by Pluto (and Saturn) toward to Venus – now – the wave has acceleration by the reflection of energy- the wave moves in Venus orbit with its velocity (205.8 km/s)- but if this wave is ascending toward the sun and moves into the sun corona – the wave velocity in the sun corona will be 300000 km/s (speed of light) why? because the wave is reflected one reflection only (the acceleration is done for one time only)

Then

The unified wave will be reflected by Venus toward to Mars– now – the wave has second acceleration by the reflection of energy- the wave moves in Mars orbit with its velocity (205.8 km/s)- but if this wave is ascending toward the sun and moves into the sun corona – the wave velocity in the sun corona will be (C^2= squared speed of light) because the wave is accelerated two times (has two reflections)

That’s exactly what’s happening

The unified wave energy is reflected from Venus to Mars and the energy be found in the distance between the Venus and Mars (especially between the Earth and Mars)

Specifically the energy is saved in the total lunar eclipse umbra (that’s why the umbra length = 1.392 million km = the sun diameter)- the energy is found in the distance around the total lunar eclipse umbra-

Then the energy moves (perpendicular) on the motion direction –

For that the energy ascending toward the sun and the energy moves into the sun corona- there the energy depends on the sun rate of time and the motion energy now can produce the value (C^2= squared speed of light) and from this value the light beam is created (the sun rays is produced)  

(8th Item) The Gravitational Waves Reflection Effects On The Motion Data

(1)

The unified wave (the gravitational wave) is reflected in the solar system three times

1st reflection the unified wave is reflected from Pluto toward Venus

2nd reflection the unified wave is reflected from Saturn toward Venus

3rd reflection the unified wave is reflected from Venus toward Mars

(means- the unified wave is reflected from Pluto to Venus by that the wave is sent from Pluto to Neptune to Uranus to Saturn but in Saturn orbit the wave is reflected one more time and after the reflection the wave continues its motion toward Venus then the wave reached Venus orbit and Venus reflected the wave toward Mars and finally the wave energy is stored in the Earth moon orbit between Venus and Mars)

Means- while the planets revolve around the sun there’s one unified wave moves by (205.8 km/s) and revolves around the sun through Earth Moon Orbit.

(2)

Please note- the unified wave velocity analysis and the reflection effect on it shows that the required reflection are two reflections only and not three- let’s explain that –

The unified wave velocity is (205.8 km/s) and in the first reflection this velocity will be squared which causes to accelerate the unified wave motion to move by speed of light (300000 km/s) means the unified wave velocity (205.8 km/s) will be accelerated to reach to the speed of light by the first reflection- in the second reflection the velocity will be squared also- now the unified wave moves by speed of light (300000 km/s) and this velocity will be squared to be (C^2= squared speed of light) by the second reflection and the value (C^2) will produce a light beam-

Means- by two reflections only the unified wave velocity (205.8 km/s) will be accelerated to be equal (C^2= squared speed of light) by which the light beam can be created and by that the sun rays will be produced by the planets motions energies- but the unified wave is reflected three times in the solar system – Why??

Neptune caused a negative effect on the energy reflected by Pluto- by that- the energy reflection by Pluto can’t be sent to Venus – Neptune negative effect caused frustration for the wave reflection by Pluto and that forced Saturn to reflect the unified wave one more time to perform the same job- shortly- the unified wave (205.8 km/s) is reflected two times (by Pluto and by Saturn), but these two reflections perform the job of one reflection only because of Neptune negative effect on Pluto reflection of energy – Neptune negative effect is explained in details in point no. (**)   

(3)

The wave energy reflection can be discovered easily because of the changes in data which are done by the reflection – let’s refer to these changes in following

  1. The data is reflected- what’s used as (A) before the reflection will be used as (1/A) after the reflection.
  2. The data which is used as (a distance) before the reflection will be used as (a period of time) after the reflection
  3. The velocities be squared – by that the rate (v1/v2) before reflection will be (v1/v2)^2 after the reflection.
  4. The energy direction is changed by the reflection usually–means-the energy moves toward Pluto will be reflected and sent toward Venus (change in the direction)
  5. The players of the rates of time are reflected also – for example (one second of the wave clock =205.8 seconds of the sun clock) before the reflection and will be (one second of the sun clock =205.8 seconds of the wave clock) after the reflection   

The planets motions use different rates of time (discussed in point no. (**))

How can the energy reflection be proved? The planets data is reflected on each other – for example- Venus orbital inclination is 3.4 degrees and Pluto orbital inclination is 17.2 degrees where sin (3.4) = 1/17.2 – in the next point I provide more proves.

(9th Item) The Gravitational Wave Reflection Proves (general proves) 

The reflection of energy is proved by powerful of data I provide here 4 proves only

(1st proof) the planet velocity analysis proves the reflection of energy

The planet velocity is defined by two rules

1st rule  my fifth equation (v1v2=constant = 322)

Let’s prove the rule in following

322 = 47.4 km/s (Mercury velocity)     x  6.8 km/s (Uranus velocity)

322 = 35 km/s (Venus velocity)           x  4.7 km/s (Pluto velocity) x 2

322 = 29.8 km/s (Earth velocity)         x  5.4 km/s (Neptune velocity) x 2

322 = 24.1 km/s (Mars velocity)          x  13.1 km/s (Jupiter velocity)

The data shows that the planets velocities are complementary one another- means- the planets velocities are created in double– means- Mercury and Uranus velocities are created together based on the rule (v1v2=322)

Please note, the rule is effective on the planet motion in different features not only the planet velocity because (for the inner planets) the planet orbital inclination be =v1/v2 for example (47.4/6.8)= 7 where Mercury orbital inclination =7 degrees. 

Means the rule (v1v2=322) not only define the planets velocities but also define many other features in the planet motion (notice, the outer planets define their orbital inclinations based on my planet diameter equation)  

2nd rule  (v1v2=1)

This rule uses the planets velocities per solar day

Pluto velocity per solar day 0.406       million km             But 1/0.406           = 2.46

Neptune velocity per solar day 0.4468 million km             But 1/0.4668         = 2.082

Uranus velocity per solar day 0.587   million km             But 1/0.587           = 1.7

Saturn velocity per solar day 0.838     million km             But 1/0.838           = 1.19

The Earth moon velocity per solar day 2.4    million km            

Mars velocity per solar day 2.082      million km  

Venus velocity per solar day 3.024      million km =1.7 x (π)^0.5

Jupiter velocity per solar day 1.1318 million km            

Pluto velocity is reversed with the Earth moon velocity

Neptune velocity is reversed with Mars velocity

Uranus velocity is reversed with Venus velocity

Saturn velocity is reversed with Jupiter velocity

The Rules Analysis

The two rules can be understood- if we suppose that the energy is reflected in the solar system- that makes the inner planets velocities to be reflected with the outer planets velocities- the reflection causes the two rules (v1v2=322) and (v1v2=1)

The constants are different because the first rule uses the planets velocities based on seconds but the second rule uses the planets velocities based on the solar day- means the constants are different between (322) and (1) because the velocities depends on different units of time and the interaction between the solar day and the second caused to use the constants (322) and (1)

1st Question- why is the constant = 322?

1160000 seconds = 322 hours

We know the solar system is created from one light beam energy and this light beam moves by speed 1.16 million km per second- that tells the planets velocities are defined based on this speed 1.16 million km per second

Notice  

322 =47.4 x 6.8 – this data tells

Mercury (47.4 km/s) moves in 6.8 hours a distance = 1.16 million km and

Uranus (6.8 km/s) moves in 47.4 hours a distance     = 1.16 million km and

That shows the planets velocities are defined based on the speed 1.16 million km per second.

2nd Question- how can the players be changed?

For example –Pluto is the complementary planet with Venus 4.7 x 2 x 35 =322

How can Pluto (0.406) be complementary with the moon (2.4)?

The players are not changed- the planet velocities are effected by Uranus orbital inclination (0.8 degrees) and that caused to change the planets velocities let’s see that in following-

0.8 x 4.095 (Mercury velocity daily)             = 1.0725 x 3.024 (Venus velocity daily)

0.8 x 3.024 (Venus velocity daily)                 = 2.4 (The moon velocity daily)

0.8 x 2.574  (The Earth velocity daily)          = 2.082 (Mars velocity daily) /1.0725

0.8 x 1.1318 (Jupiter velocity daily)              = 0.838 (Saturn velocity daily) x 1.0725

As we see Uranus orbital inclination (0.8) has effect on all planets velocities and that caused to change the velocities- the puzzle is that – when the planets velocities are effected by Uranus orbital inclination that changed the planets velocities but the change produced other planets velocities means

Mercury velocity is changed into Venus velocity and

Venus velocity is changed into the moon velocity and

The moon velocity is changed into Mars velocity and

Jupiter velocity is changed into Saturn velocity

That gives the feeling that the players are changed which is not fact

Let’s ask– why has Uranus orbital inclination this effect on the planets velocities?

Uranus Orbital Inclination (0.8) is produced by the rate between Neptune and Uranus (π/4)= 0.8 (Uranus orbital inclination 0.8 degrees) – let’s explain the reason

The energy is reflected from Pluto and passed through Neptune and Uranus and the interaction between Neptune and Uranus (π/4)= 0.8 creates effect on the energy – that caused effect on the planets velocities and data but the basic rule (v1v2=322) is still as it without change and this same rule still controls the data even after the effect of Uranus and Neptune interaction- shortly- the velocities are changed but the players are not.

(2nd proof)

The planets order proves the energy reflection

I proved Mars original orbit was between Mercury and Venus and Mars had migrated from its original orbit to its current one- by that the inner planets order be as following (Mercury – Mars- Venus – Earth)

The order tells greater diameter needs longer orbital distance

the outer planets order is

(Jupiter – Saturn – Uranus – Neptune – Pluto)

The order tells greater diameter needs shorter orbital distance

The orders are reflected on each other

Please note the planets order depends on the planet diameter and not the mass because Neptune mass is greater than Uranus mass where Neptune diameter is less than Uranus diameter. 

(3rd proof)

Each planet orbit is defined based on an angle, these angles are reflected also – let’s prove that 

(I suppose –There’s a right triangle by the three points The Sun, Mercury and Venus) 

Now -Venus angle is (61 degrees) because Venus orbital distance (108.2 mkm) x cos (61) = Venus Mercury distance (50.3 mkm) -

Here we can replace Venus with any other planet in the same triangle to define this planet angle based on similar calculation– as a result

Earth angle is (51 degrees) because Earth orbital distance (149.6 mkm) x cos (51) = Earth Mercury distance (91.7 mkm)

Mars angle is (41.7 degrees) because Mars orbital distance (227.9mkm) x cos (41.7)= Mars Mercury distance (170 mkm)-

Jupiter angle is (22.2 degrees) because Jupiter orbital distance (778.6 mkm) x cos (22.2)= Jupiter Mercury distance (721 mkm)

Similar to that – Saturn angle is 16.5, Uranus angle is 11.6 deg, Neptune angle is 9.2 deg and Pluto angle is 8 deg- these angles follow the same system

– for example -Pluto angle is (8 degrees) because Pluto orbital distance (5906 mkm) x cos (8)= Pluto Mercury distance (5848 mkm) –

NOTICE No. (1)

The right angle and its triangle is (a hypothesis) – but we can prove it’s fact because (v1/v2) = (θ1/ θ2) -means – these angles are rated with their planets velocities – for example (Neptune velocity 5.4/ Pluto velocity 4.7) = (9.2 deg /8 deg)

NOTICE No. (2)

These angles are reflected on each other proves the energy reflection in the solar system- let’s proves that in following

940 = 61 x 2 x 8 = 51 x 2 x 9.2 = 41.7 x 22.2

(61 degrees) is Venus angle

(51 degrees) is The Earth angle

(41.7 degrees) is Mars angle

(8 degrees) is Pluto angle

(9.2 degrees) is Neptune angle

(22.2 degrees) is Jupiter angle

The data shows the angles are reflected on each other and uses behavior typical to the planets velocities behavior which proves the reflection of energy.

(4th Proof) – the next item provide the fourth proof

(10thItem) Venus Reflects The Gravitational Wave Toward Mars (The3rd reflection)

The wave 205.8 km/s is reflected (by Pluto and by Saturn) toward Venus the reflection causes to accelerate the wave velocity to move by speed of light (300000 km/s)  in Venus orbit- and then- Venus reflects the wave toward Mars which accelerate the wave velocity one more time and causes its velocity to be (C^2)- finally the wave energy is stored in the Earth moon orbit- Now we discuss this last reflection (3rd reflection) between Venus and Mars- both planets data is changed by this reflection- let’s remember the data changes by the energy reflection

  1. The data is reflected- what’s used as (A) before the reflection will be used as (1/A) after the reflection.
  2. The data which is used as (a distance) before the reflection will be used as (a period of time) after the reflection
  3. The velocities be squared – by that the rate (v1/v2) before reflection will be (v1/v2)^2 after the reflection.
  4. The energy direction is changed by the reflection usually –means- the energy moves toward Pluto will be reflected and sent toward Venus (change in the direction)
  5. The players of the rates of time are reflected also – for example (one second of the wave clock =205.8 seconds of the sun clock) before the reflection and will be (one second of the sun clock =205.8 seconds of the wave clock) after the reflection   

Let’s see these changes in Venus and Mars Data

(1)

Venus orbital circumference 680 million km will be used as Mars orbital period (687 days) based on the rate (1 million km = 1 day) –

Also

Venus orbital Period 224.7 days will be used as Mars orbital distance (227.9 million km) based on the same rate (1 million km = 1 day) –            (Data Max Error 1.5%)

(2)

Saturn orbital distance =1433 million km = Mars orbital circumference

We understand that the unified wave is reflected (from Pluto and SATURN) to Venus and Venus reflects the unified wave to Mars- by that- Saturn distance (1433 mkm) is seen in Venus data as (a period of time 224.7 days with 227.9 the different is 1.5) and Venus period of time is seen as a distance again in Mars data (227.9 mkm) and by that mars orbital circumference be 227.9 x 2π =1433 million km that explains why Saturn orbital distance = Mars orbital circumference

(3)

 Sin (3.4)= 1/17.2 BUT sin (34.4/1.0725) = 1/1.9 where

3.4 deg = Venus orbital inclination                         17.2 deg = Pluto orbital inclination

1.9 deg = Mars orbital inclination                          1.0725 = length contraction rate

The data shows similar behavior between Pluto and Mars with Venus because the wave is reflected from Pluto (and Saturn) to Venus and from Venus to Mars

(4)

Venus diameter 12104 km/ Mars diameter 6792 km = 3.4 /1.9

Venus diameter 12104 km/ Pluto diameter 2390 km = 17.2 /3.4

Saturn diameter 120536 km/ Venus diameter 12104 km = 3.4 /(2.5 x 7.1) where

3.4 degrees   = Venus Orbital Inclination

17.2 degrees  = Pluto Orbital Inclination

1.9 degrees    = Mars Orbital Inclination

2.5 degrees    = Saturn Orbital Inclination

7.1                 = Lorentz length contraction effect rate

The data shows similar behavior by all planets because the unified wave is reflected by all these planets (by Pluto, by Saturn and by Venus)

(5)

  1. 11.675 days x 2.082 million km               = 243 million km
  2. 10747 seconds x 35 km/s                        = 378675 km
  3. 2390 seconds x 35 km/s       x 1.0725      = 90560 km

Data No. (i) tells Mars velocity per solar day 2.082 million km moves in 116.75 days (Venus day period) a distance =243 million km where 243 days = Venus rotation period

Data No. (ii) tells Venus (35 km/s) moves in 10747 seconds a distance =378675 km (Saturn Circumference) where (10747 days = Saturn orbital period)

Data No. (iii) tells Venus (35 km/s) moves in 2390 seconds a distance =90560 km where (2390 km = Pluto diameter and 90560 days Pluto orbital period)

The data is complex but tells one information that- the receiver planet velocity is used as a rate between 2 data of the sender planet –

For example Data no. (i) it tells Mars velocity daily (2.082) is a rate between 116.75 days and 243 days (Venus day and rotation period respectively) – for the reflection one data is seen as a period and the other is seen as distance

Venus is the sender and Mars is the receiver

Data no. (ii) tells similar meaning- Venus velocity is a rate between 2 data of Saturn-

Venus (35 km/s) moves in (10747 seconds) a distance = 378675 km (Saturn Circumference) - Saturn is the sender and Venus is the receiver   

Data no. (iii) tells similar meaning- Venus velocity is a rate between 2 data of Pluto-

Venus (35 km/s) moves in (2390 seconds) a distance x1.0725 = 90560 km (Pluto orbital period 90560 days)- Pluto is the sender and Venus is the receiver  (where 2390 km = Pluto diameter)  

The data proves the ideas clearly-

Notice the rate 1.0725 is found by Lorentz length contraction effect.

(6)

There’s a perpendicularity between Saturn and Venus where 26.7 degrees (Saturn axial tilt) is seen at Venus as 26.7 +90 = 116.75 days (Venus day period)

Notice

(a) (9.5)^2 = 90 but 9.7 km/s (Saturn velocity) is different from 9.5 with (2%)

(b)  26.7 deg (Saturn axial tilt) +90 deg = 116.75 degrees but 116.75 x 0.8 = 93.4 deg (but 90 deg + 3.4 deg Venus orbital inclination)

© 93.4 deg x 1.9 deg (Mars orbital inclination) = 177.4 deg (Venus Axial Tilt)

(d) 177.4 deg  (Venus Axial Tilt) + 3.4 deg (Venus orbital inclination) = 180.8 deg = 180 +0.8 deg (Uranus orbital inclination)

The data tells there’s a perpendicularity between Saturn and Venus and between Saturn and Uranus for that the angle (180 degrees) is found between Uranus and Venus and by this angle (180 degree) Venus axial tilt and orbital inclination are created depends on Uranus orbital inclination (0.8)

(7)

Please note the reflection of energy in Saturn creates two equal distances around Saturn where Saturn orbital distance = Saturn Uranus distance=1433 million km  and also- this reflection creates 2 equal inclinations for Saturn by that Saturn orbital inclination is 2.5 degrees but Uranus orbital distance = 2 Saturn orbital distance and by effect of Uranus orbital inclination 0.8 the result will be (2/0.8) =2.5

This data tells the reflection of energy in Saturn is more complex than the reflection of energy from Venus to Mars because of Neptune negative effect on the energy- the paper provides deep discussion to explain Neptune negative effect on the solar system energy and motion.

(8)

Please note- the unified wave (the gravitational wave) moves by speed of light depends on the rate of time (one second of the sun clock =1461 seconds of the Earth clock)- where the wave moves by speed of light in Venus orbit- but the light production needs the value (C^2 = squared speed of light), the reflection of energy from Venus to Mars causes to square the velocity and produce the value (C^2 = squared speed of light), but this value (C^2) is created depending on the square rate of time which is (1 =1461^2) means (1=2134521) – means this rate is used for Mars data but the first rate (1=1461) is used for Venus data

For that

2134521 km                                       = 100 x 21345 km (Mars Circumference) – and

38025 km (Venus Circumference)      = 2.6 x 1461

378675 km (Saturn Circumference)    = 260 x 1461

260 =2.6 x 100      One more time the data shows similar behavior

THE MAIN PROOF

The solar system data shows general reflection is happened two times – let’s see that in details

(Venus reflection)  

By this reflection of energy Venus orbital circumference 680 million km will be used as Mars orbital period 687 days and it defines Jupiter orbital period (4331 days = 2π x 687 days) and also Saturn orbital period (10747 days = 4π x 687 days x (1/0.8)) where Uranus orbital inclination (0.8 degrees) creates effect on Saturn data

(Saturn reflection)  

The reflection is done by Jupiter to Uranus, by that, Jupiter orbital circumference 4900 million km will be used as Uranus orbital period 30589 days where (30589 days = 4900 days x 2π and Neptune orbital period 59800 days = 4900 days x 4π and Pluto orbital period 90560 days = 4900 days x 6π

Please note

The energy reflection at Venus passes above the Earth to Mars- where the Earth moon suffers from the length contraction effect and its motion distance daily is 2.4 mkm = 2.574 mkm (The Earth motion distance daily) / 1.0725

Similar to that 

The energy reflection at Jupiter passes above Saturn to Uranus – Where

Saturn suffers from the length contraction effect because

1433 million km (Saturn orbital distance) x 1.0725 = 2 x 778.6 million km (Jupiter orbital distance) 

Please note- the Earth moon daily displacement is 88000 km and during 10747 days the displacements total be 940 million km = The Earth orbital circumference

Where 10747 days = Saturn orbital period

Notice

We understand that the light beam production needs the unified wave to be reflected two times only in the solar system- in the first reflection the unified wave (205.8 km/s) will be accelerated to be equal the speed of light (300000 km/s) and in the second reflection the speed of light will be squared to produce the value (C^2 the squared speed of light) by which the light beam will be created- means – the light production process needs tow reflections only and we know the unified wave is reflected in the solar system three times – because – of Neptune negative effect on Pluto energy where Neptune negative effect causes a frustration for the unified wave reflection by Pluto and that forced Saturn to reflect the unified wave one more time to perform the job mentioned by Pluto reflection of energy- by that Pluto and Saturn reflections create effect of one reflection only and Venus reflection creates the final reflection to produce the value (C^2 the squared speed of light) by which the light beam can be created-

Shortly- while the unified wave is reflected in the solar system three times the real effect is done by two reflections only and for that the data shows general reflection in two times only as seen in the previous data and its discussion- means- the data refers to the real final effect of the energy reflections and not to each procedure of this reflection- shortly- if we remove Neptune from the solar system that will cause the reflections to be two reflections only because Neptune negative effect will be removed – Neptune negative effect will be discussed in point no. (**)    

(11thItem) What’s The Negative Effect Done By Neptune Motion On The Gravitational Waves? 

The story with proves is found in point no. (3) of this paper- let’s summarize it here

(1)

Mars original orbit was between Mercury and Venus and Pluto was The Mercury moon revolves around Mercury- some collision is done in the inner planets- as a result Mars had migrated from its original orbit to its current one– in its motion Mars had collided with Venus and then with the Earth and Mars is the planet caused The Earth moon creation (Giant impact hypothesis is wrong)  

Pluto was the Mercury moon and its size was equal Mercury size- Pluto also had migrated because of the same collision- Pluto had migrated to the end point in the solar system (Pluto orbital distance 5906 million km) -in that time– Neptune occupied this orbit– means Neptune original orbital distance was 5906 million km-

Shortly-

Pluto had collided with Neptune strongly and Pluto pushed Neptune out of its orbit and Pluto had occupied Neptune orbit, even Pluto put Neptune out of Pluto motion area– that’s why Pluto eccentricity distance = Pluto Neptune distance=1410 million km (Mars Migration theory is proved in point no. **)

(2)

We know the light created all planets orbits before to create any planet- here- we have a dilemma- because – Pluto pushed Neptune out of Neptune orbit and also out of all created orbits (the train be out of all railways) and Neptune had no orbit to revolve around the sun.

(3)

As we have discussed- the planet moves and produces energy (½ mv^2) and this energy is stored in the space in moving waves –

Because all planets revolve around the sun in the same direction all planets motions energies waves move toward Pluto- and in Pluto orbit all waves be unified together into one unified wave moves by 205.8 km/s  

(4)

Pluto reflected the unified wave (205.8 km/s) to be sent to Venus – Now – Pluto sends great energy toward Venus – the energy moves from Pluto to Neptune and then Neptune should send the energy to Uranus – BUT

Simply Neptune got the energy for itself and didn’t send the energy to Uranus- why? because Neptune used the energy to build its current orbit – by this energy Neptune orbit is created and Neptune orbit is very new orbit relative to all planets orbits- also Neptune orbit is created by Neptune and not by the light beam as the other orbits

(5)

Shortly Neptune captured the energy sent from Pluto, and captured Pluto itself forces it to moves with Neptune rotation period (Pluto had no rotation period), as a result, Jupiter tried to release Pluto from Neptune but Neptune captured Jupiter itself and now Neptune, Jupiter and Pluto all of them move by Neptune rotation period and the two planets follow Neptune motion

(6)

Uranus tried to find solution- for that – Uranus created an interaction with the Earth planet- by this interaction a new planet is created which is Saturn   

Uranus created Saturn for the war with Neptune- and now Saturn goes to fight with Neptune- first victory is that (Saturn set Jupiter free of Neptune capture and Jupiter got a new rotation period) and the second victory is (Saturn set Pluto free of Neptune capture and Pluto got a new rotation period) and the third victory (Saturn release the energy from Neptune) BUT

Neptune build its orbit by this energy and the rest is around (0.5%) only!

In details – Pluto sent the energy in a moving wave its velocity equal (205.8 km/s)^2 But Saturn got from Neptune a moving wave its velocity only (205.8 km/s) (without square) - The rate around (0.5%) only –but why did Saturn get this small energy at all? We should remember

The unified wave (205.8 km/s) contains all planets motions energies- if Saturn gets this wave, Saturn can reflect this wave one more time to produce the required value (205.8)^2 and send it to Venus to complete the process safely-

But if Saturn doesn’t get this unified wave (205.8 km/s) Saturn will be forced to gather the planets motions energies to create this unified wave   

Means- Saturn got the small energy (0.5 %) from Neptune But this small energy can be working to complete the process and if this energy is lost the process can not be completed that’s why this small amount of energy is very important and useful

Shortly

The situation is finished as following -  

Neptune built its orbit from Pluto energy and the rest energy (0.5%) is small amount of energy but very useful and Saturn got this energy from Neptune and the energy was in unified wave its velocity (205.8km/s) and Saturn reflected this wave toward Venus and the wave reached Venus moves by speed of light as a result for Saturn reflection by that the process to produce the sun rays can be completed safely and the planets (Pluto and Jupiter) are free now from Neptune capture- everything is so good now    

But-

Neptune tells about the revenge! Spite Neptune built its orbit from Pluto energy but still the devil dreams by the revenge

What can Neptune do to cause more problems for the sun creation?  

The unified wave reaches Venus moving by speed of light (300000 km/s), and now Neptune will cause to decrease the velocity by (1% one percent only)

Why? because the light beam is created by quantum and if the speed is less 1% that tells No Light Beam Can Be Created-

But what would happen by this speed?

The speed 99% of speed of light (297000 km/s) is high speed and causes Lorentz transformation- specially- it causes Lorentz length contraction effect with rate 7.1

Why is this very bad thing?

Because the motion energy is produced by the planets motions and these energies should be gathered into one point to be sufficient to produce the light beam- now the length contraction effect will cause difficulties to gather the planets energies because the planets energies are found in distances- here the distances will be shorter and that will create great difficulties to gather all energies in one point

Shortly- Neptune contraction effect caused to scatter the motion energy in the space and by that the motion energy will never be able to produce the sun rays – the devil works-

Now – we follow this battle from near point- how can Neptune decrease the unified wave velocity with one percent? 

Neptune causes Saturn rotation period to be 10.7 hours- this is Neptune method to decrease the wave motion velocity – how?

Saturn circumference 378675 km and Saturn velocity 9.7 km/s means Saturn needs 10.84 hours to rotate around its axis a complete rotation (360 degrees) - but the period 10.7 h causes Saturn to rotate only (355 degrees)- means- for each rotation period Saturn needs 518 seconds to compete its rotation and that means there’s a distance of Saturn circumference (5040 km) is still need to be passed while the rotation period is finished- this distance Neptune uses to decrease the wave velocity – because

Saturn velocity = 1.8 Neptune velocity and 5040 km = 1.8 x 3000 km 

The speed of light is 300000 km/s and the discount distance is 3000 km and the rest is 297000 km (99% speed of light)

Shortly- Neptune effect on Saturn motion causes to decrease the wave velocity with 1% and creates the speed 99% C by which the length contraction effect is created and by that the planets motions energies are scattered in the space –

But - Saturn still try to help us- by that-

Saturn created a bridge between Uranus and Pluto (above Neptune) and on this bridge the sun rate of time is created and by that the planets motions energies can be gathered together based on defined periods and cycles – by this rate of time the sun rays is created - but –because Saturn is busy in the rate of time creation- the battle leader now is Jupiter- by that Jupiter defines the sun position in the sky and Jupiter defines the sun diameter- the story is proved in details in point no. (3) because the planets data tell this story so clearly  

(12th Item) Can The Planets Motions Use Different Rates Of Time? 

The solar system is created from one light beam energy- means- the solar planets matters and their distances are created from one energy and this one energy is provided by one light beam and this light beam moves by speed = 1.16 million km per second- the light built the solar system starting its motion from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each another- after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light) means the light beam started the motion in Mercury orbit with speed 1.16 million km per second and reached to Pluto orbit with speed 300000 km/s

In Pluto orbit -

The light could Not move any further to build any more orbits because any additional space creation will consume more energy and that will decrease the light speed to be less than 300000 km/s (the known speed of light) – and – No known light moves by speed less than 300000 km/s – means- the light had no energy to move any further after Pluto orbit- for that- the light returns to its origin point (Mercury orbit) for that the light is reflected with speed (300000 km/s) from Pluto orbit to Mercury orbit passing through the built orbits – no energy is required in this motion for that the speed of light in Mercury orbit is 300000 km/s

By this energy (the light beam its speed 300000 km/s) all planets are created- but before the planets creation a coherence of light is occurred between the light 300000 km/s and the light 1.16 million km per second- this coherence of light is discussed in the paper definitions in details

After the coherence of light the planets are created by the light energy  (300000 km/s)

I- The Solar Planets Creation

Now

We can imagine that the energy of the original light beam (1.16 million km per second) is consumed to create the sea of water and the rest energy is one wave moves through this sea of water where this wave moves by speed of light (300000 km/s)

Means

The solar system is one energy (wave) moves by speed of light (C=300000 km/s)

And

The solar system needed to create a stationary point moves by zero velocity 

We understand (It’s impossible to find this stationary point) -BECAUSE

The solar system is similar to this wave of water or to the moving sea water and every thing is moving in it – NO stationary point can be found- for that the solar system has to create this stationary point –

The stationary point creation needs two procedures – let’s refer to them here

1st Procedure

The wave its velocity 300000 km/s revolves around a point in space (any point in space), the revolution motion creates 2 equal velocities on the revolution both sides - the two velocities are equal in value and opposite in direction- their total be Zero-shortly- the revolution motion creates A Stationary Point in the center of the revolution. 

2nd Procedure

The previous idea is correct- but –the velocity 300000 km/s is a huge one and to decrease it to Zero velocity this is a complex process– for that- the wave (300000 km/s) created small waves with low velocities to use them as steps to decrease the velocity to Zero- the small waves are The Planets- (The planet is a small wave moves by low velocity relative to the original wave its velocity 300000 km/s) 

Why Are These Small Waves Required?

Because the velocity 300000 km/s is decreased to Zero by using these small waves and their low velocities- the low velocities are used as steps to decrease the unified wave velocity (300000 km/s) to be (Zero)- this process decreases the velocity gradually from 300000 km/s to Zero depending on these small waves velocities (the planets velocities)  

Means- the planets are created for this process to decrease the wave velocity from 300000 km/s to Zero- and The Planet Is A Small Wave Moves By Low Velocity 

Shortly – the solar system has one complete system of velocities, Starting from Zero to 300000 km/s where the planets velocities are the steps between the two velocities –

The Proof

The unified wave velocity (205.8 km/s) proves this fact because

300000 = (205.8)^2 x 7.1

We know 7.1 is Lorentz length contraction effect produced by speed 99% of speed of light-

Shortly- the unified wave velocity (205.8 km/s) is defined as a function in the speed of light (300000 km/s) and that explains why the reflection of the wave accelerate the wave velocity to move by speed of light and not to move by any less velocity – simply-because the unified wave velocity is created as a function in the speed of light- and this unified wave velocity = the planets velocities total that tells the planets velocities definition depends on the speed of light

Shortly

By the wave revolution the stationary point is created in the revolution center and this point will be the sun (its velocity is 1 km/s=zero approximately) and the moving wave created the solar planets as small waves move by small velocities (or as geometrical points carried by the wave motion) -As a result – a relative motion is created between the moving wave (300000 km/s) and the sun point of space (1km/s)

II- The Solar Planets Definition

The planets are geometrical points created on the same one light beam (one wave of energy)- means- the light beam is similar to the sea of water and the planets are similar to ships sail on this sea of water- means- the planets motions depend on this light beam motion and by that the motion by speed of light (C=300000 km/s) is the motor by which the planets move- means- all planets motions depend on the light beam motion by speed of light (C=300000 km/s) –

Means- the planets are similar to carriages in one train and the light beam is the engine of this train- the light moves carrying all planets with it  

BUT if the planets are geometrical points found on one light beam and these points move by this light motion how can these planets to move by low velocities?

Because the planets motions use different rates of time –

for example – one second of the light clock = 6330 seconds of Mercury clock by that Mercury moves in (6330 s) a distance 300000 km which is passed by the light motion in one second.

(13th Item)  The Planets Motions Use Different Rates Of Time (Deep Analysis)   

  1. Preface (Proved Facts)
  2. The Rate Of Time Use Reason (The Solar System Creation Theory)
  3. The Planet Creation and Motion Description
  4. The Difficulty To Prove The Rate Of Time Use
  5. The Rate Of Time Importance And Creation
  6. The Energy Reflection Effect On The Rates Of Time 

(The Energy Reflection is explained and proved in Point No. 6)

  • The Solar System Main Rates Of Time
  • The Solar System Motion Depends on Mercury Clock
  • The Time Creation In The Solar System
  • The Earth Motion Effect On The Planets Motions Rates Of Time
  • The Rate Of Time Between Mercury And The Earth
  • The Rate Of Time Between Mercury And The Sun
  • The Rate Of Time Between The Sun And The Planets
  • The Rate Of Time Between The Sun And The Earth
  • Mercury behaves in place of the sun and The Earth in place of the planets
  • The Rate Of Time Of Saturn
  • The Rate Of Time Of Mars
  •  The Solar System Motion During 24 Hours Of Mercury Clock
  •  The Rate of time (1=1461)

20 The Used Rate Of Time For The Sun Rays Production

20-1 Preface

20-2 The Light Beam Production Method

20-3 The Light Beam Is Produced From (C^2)

20-4 The Earth Moon Motion Effect On The Sun Rays Production

20-5 The Solar System Motion Depends on Mercury Clock

20- 6 Mercury Day Period Problem

20-7 The Gravitational Waves move by speed of light (how)?

20-8   The Energy Reflection Effect

20-9   The rate (1=365.25) (the proves)

20-10 The Used Rate Of Time For The Light Beam Production

20-11 The Light Beam Production Process

21- 12 The Sun Rays Production Process Summary         

(Item no. 1) Preface (Proved Facts)

(FIRST FACT) ONE WAVE REVOLVES AROUND THE SUN

Let’s remember this idea

(1)

Planet motion energy creates waves in the space-

The space is similar to the sea of water and planet motion creates waves in the space as fish motion creates waves in the sea- let’s see the picture accurately,

We observe one swimming fish in the sea- the fish hits the sea water by its tail and pushes some water and by that the fish can swim and move- we conclude the water moves by a velocity Equal the fish velocity because of the reaction force.

Similar to that-

Mercury motion energy creates waves in the space- the wave velocity equal Mercury velocity (47.4 km/s) because of the reaction force- means – all planets motions energies create waves in the space and these waves move by these planets velocities- now these waves are similar to the water waves they move far from the source and can be reflected- now- because the planets revolve around the sun in the same one direction, the planets motions energies waves move in one direction toward Pluto (Perpendicular on the revolution direction) – and these waves are unified together in Pluto orbit and by that one unified wave is produced moves by 176 km/s (the 9 planets velocities total)-

And this wave (176 km/s) is reflected from Pluto to Venus- and finally

There’s one wave revolves around The Sun its velocity (205.8 km/s)

(because the energy is stored finally in the Earth moon orbit that necessitates to add the moon velocity to the total 176+29.8 = 205.8 km/s)

(2)

I claim these waves are the gravitational waves, the scientists called them wrongly (gravitational) supposing that they are created by the sun gravitational field- I proved that (The sun does NOT create a gravitational field) and these waves are produced by the planets motions energies.

(Notice. The reflection of energy will be explained here)

Shortly, this fact tells one wave revolves around the Sun its velocity is 205.8 km/s

Means-while we see the planets revolution, this wave revolves also but we don’t see it

(SECOND FACT) THE RATE OF TIME NECESSITY

We know, There’s One Wave In The Space Revolves Around The Sun Its Velocity= 205.8 km/s 

The Sun motion velocity is (1km/s=zero approximately), means, The sun is stationary point- here we have a relative motion between 2 velocities

The wave velocity (205.8 km/s) and the sun velocity (Zero approximately)-

This relative motion is the solar system design cornerstone because

In this relative motion the planet motion energy is stored-   

Let’s explain that

Planet motion energy is stored in the space in waves form, and this energy created the one wave revolves around the sun its velocity (205.8 km/s) but

The planets still move and produce motions energies- means- more energy need to be stored- for that- the rate of time is used to increase the capacity of the energy storing.

Let’s use example

One hour of Mercury clock = 24 hours of Pluto clock-

This rate means –

While Mercury moves in a solar day (24 hours) a distance 4.09 million km, Pluto moves in this same period a distance= 9.7 million km, because, (24 hours) of Mercury clock = 24 solar days of Pluto clock- that shows in the same period Pluto moves a distance longer than double Mercury motion distance 

BUT

All These Motions Energies Are Transformed Into Waves In The Space- And All Of Them Are Parts In The One Unified Wave- Means- Pluto Motion Contributes In The One Unified Wave By Energy More Than Mercury Motion Energy- that increase the capacity to store the energy

That explains how the rate of time using effect on the planets motions

A Question - Why Should The Energy Be Accumulated?

Because, we need to use the energy and the less amount energy can’t be useful and we need massive amount of energy to use it- 

Shortly, the sun rays is created from this stored energy and the light beam production process need massive energy, and the planet motion energy is very small amount of energy can’t produce any light beam, for that, the planets motions energies have to be stored and accumulated to create the required quantum of energy which is sufficient to produce the light beam.

NOTICE

Here there are 2 facts we need to consider

First,

There’s a relative motion between the unified wave (205.8 km/s) and the sun point (1 km/s), All planets motions energies are put in this relative motion- by that, the planets be similar to fingers and this relative motion is the hand of these fingers- No planet motion energy is used out of this relative motion-

Second,

Now the relative motion has 2 velocities, the unified wave (205.8 km/s) and the sun point (1 km/s), and the planets still move and add more motion energies – this more motion energies increase the different velocity 205.8 km/s gradually till this velocity be equal speed of light 300000 km/s - The light beam is produced based on this high velocity

Let’s remember the proof

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

The article tells- the gravitational waves can move by high velocity and can produce A Light Beam– means- the different velocity should b increased from 205.8 km/s to speed of light (300000 km/s) to produce the light beam

(notice, I have proved the gravitational waves are produced by the planets motions energies and not by the sun gravitational field)

Notice

Planet Creation details can help greatly because it gives another vision for this same fact- it’s discussed in item (no.3)- 

(THIRD FACT) There Are Relativistic Effects In The Solar System

The relativistic effects are proved because they effect on the planets data – means- because the solar system have relativistic effects, the planets data are effected by these relativistic effects 

The relativistic effects prove there’s a high velocity motion found in the solar system, by that, the gravitational waves move by speed of light is a fact proved by the relativistic effects found in the solar system –

Please note- the relativistic effects in the solar system depends on the rate (7.1) while the planets velocities analysis shows this same rate (7.1) proves the high velocity motion is a real motion in the solar system

The relativistic effects are proved in point No. (5)

(FOURTH FACT) The Energy Is Reflected In The Solar System

We agreed, the planets motions energies create waves in the space and these waves move toward Pluto, and these waves are unified together into one unified wave its velocity= 205.8 km/s (The planets velocities total) and then the wave is reflected toward Venus- in fact- the unified wave is reflected three times in the solar system   

First time, the wave is reflected from Pluto toward Venus – Means, the wave is reflected from Pluto to Neptune then to Uranus to Saturn to Jupiter to Venus

But

Second time, in Saturn, the wave is reflected inside Saturn body one more time, by that Saturn body works as mirrors and the energy is reflected between them- then the energy left Saturn moves in its original direction toward Venus

Third time, Venus reflects the energy toward Mars, and the energy finally is sorted in the Earth moon orbit between Venus and Mars   

The reflection of energy is very important because of many reasons we should study but here I refer to one reason only

The reflection of energy causes to reflect the planets data-

what’s used as (A) before the reflection will be used as (1/A) after the reflection-

and-  

what’s used as (a period of time) before the reflection will be used as (a distance) after the reflection – and vice versa

these effects on the data is very important because it explains why the planets data is reflected on one another- and that also proves the gravitational waves are produced by the planets motions energies and not by a gravitational field because the data is belonged to the planets–and the reflection is done by the waves–here the gravitational field has no any effect.

the reflection of energy is proved by strong proves in point no. (6)

(Item no. 2) The Rate Of Time Use Reason (The Solar System Creation Theory)

(1)

The solar system is created from one energy- in details

The planets matters and their distances are created from one energy –this energy is provided by one light beam– and this light beam moves by a velocity 1.16 million km per second- the energy is consumed in the space and time creation- the energy consumption caused to decrease the light velocity and the rest energy is one light beam its velocity 300000 km/s (the known speed of light) 

The space and time creation is done by the equation (1.16/0.3) x 2π = 24.3

The equation tells, the space is created in curved lines (2π) and the time is created based on the solar day (24 hours) (later the reason will be explained)

Notice-the space is created from the energy (1.16 million km/ second) but the planets are created from the energy (300000 km/s)- the planets are created after the space.  

We realize this is the same one light beam and the two velocities are found as a result for the energy consumption in the space creation.

Shortly the space is created by the energy (1.16 mkm/s) but in this space there’s one wave moves by 300000 km/s from this wave the planets are created 

(2)

Shortly- the planets matters and their distances are created from One Light Beam Energy- The planets are geometrical points found on this one light beam- by that the planets are similar to knots (or nodes) on ONE rope or cable.  

The planets are carried on this light beam and move by this light beam motion

By that- The Planets Are Similar To Carriages In One Train- and the light beam motion is this train engine- the light moves carrying all planets with it- 

Light moves one motion and passes one distance in one period of time- The planets have to move this same motion and pass this same distance in this same period of time- BUT

The planets velocities are less than light velocity for that the planets use rates of time for their motions–by the rates of time- the planets move equal distances in equal periods of time and this distance equal also the light motion distance.

For example-

Mercury velocity = 1.6 the Earth velocity- that means – one hour of Mercury clock = 1.6 hours of the Earth clock- Why??

Because Mercury and the Earth are carried by the same one light beam motion- the light moves one motion and passes one distance in one period of time- by that Mercury and the Earth have to move this same motion and to pass this same distance in this same period of time- but the two planets velocities are different- for that- the planets use different rates of time based on their velocities rates and by that the planets move equal distances in the same period of time – that’s the reason to use the rates of time-

(3)

The Velocity 1.16 Million Km Per Second (The Proves)

(first proof) Planet Velocity Analysis  

I have discovered a rule tells (v1v2=322) (my fifth equation)– let’s prove it

Data

322 = 47.4 km/s (Mercury velocity)  x 6.8 km/s  (Uranus velocity)                         

322 = 35 km/s  (Venus velocity) x 4.7 km/s (Pluto velocity) x 2             

322 = 29.8 km/s (the Earth velocity) x 5.4 km/s (Neptune velocities) x 2      

322 = 24.1 km/s (Mars velocity) x 13.1 km/s (Jupiter velocity)               

322 = (17.9 km/s)^2 (Ceres velocity) (Max error 2%)

Discussion

The data tells the planets velocities are created complementary one another and based on this constant (322)- but why the constant equal =322? 

1160000 seconds = 3600 x 322 hours – means

Mercury (47.4km/s) moves a distance 1160000 km in a period (6.8 hours) and Uranus (6.8 km/s) moves a distance 1160000 km in a period (47.4 hours) – that proves the constant 322 depends on the velocity 1160000 km/s–means- All planets velocities are defined based on this velocity 1160000 km/s which proves this velocity is a fact

Notice

(The inner planets orbital inclinations are defined by the rule (v1/v2), for example, Mercury orbital inclination 7 deg = Mercury velocity 47.4/ Uranus velocity 6.8 that proves the effect of the rule (v1v2=322) on the planet motion)

(Second proof) The planets orbital circumferences total

100733 million km = 86400 seconds x 1160000 km/s

(100733 million km= The Planets Orbital Circumferences Total)

Means- the velocity 1160000 km/s passes per solar day (86400 s) a distance =100733 million km= The Planets Orbital Circumferences Total 

Shortly- the planets orbits are defined based on this velocity-

Notice / the planets motions distances total in 1461 solar days = 25920 million km = the distance is passed by light known speed (300000 km/s) in one solar day (86400s)

(1461 days = the Earth cycle = 365 +365 +365 +366)

(the distances total=the 9 planets motions distance + the Earth moon motion distance)

(Third proof) The Planets Distances Creation

The planets distances are created depending on this velocity (1160000 km/s), let’s prove that,

778.6 million km (Jupiter orbital distance) = 1160000 km/s x 671 seconds

721 million km (Jupiter Mercury distance) = 1160000 km/s x 629 seconds

629 million km (Jupiter Earth distance)      = 1160000 km/s x 551 seconds

4900 million km (Jupiter Orbital Circumference)= 1160000 km/s x 2094 seconds x 2

5906 million km (Pluto Orbital Distance)= 1160000 km/s x 5127 seconds

Where

671 million km = Jupiter Venus distance

551 million km = Jupiter Mars distance

5127 million km = Jupiter Pluto distance

Shortly, the light beam its velocity 1160000 km/s uses the distances as periods of time to create more distances based on one another– for that- the distances are created as one network and one group- Jupiter distances proves this fact clearly-  

We remember also the creation equation (1.16/0.3) x 2π = 24.3 by which the space and time are created- the equation tells- all distances are created in curves (2π) and all periods are created based on the solar day (24 hours)

This data tries to prove the velocity 1.16 million km/s is a fact and my paper provides more proves for this fact-

(Item no. 3) The Planet Creation and Motion Description

(i)

Before the solar planets creation

The solar system energy was found in one wave moves by speed of light 300000 km/s- Means-

The solar system is one wave moves by speed of light (300000 km/s)

Now

The Solar System needs To Create A Stationary Point Its velocity Zero relative to the moving wave its velocity is 300000 km/s

This is the basic information in the solar system design-

The solar system needs to create a stationary point relative to the wave motion- by that – two velocities will be found which are (v1= the wave its velocity 300000 km/s) and (v2= Zero= the stationary point relative to the wave motion)–these two velocities produce a relative motion with different velocity 300000 km/s– this relative motion is the solar system design cornerstone.

Notice– The solar system is carried by the light beam motion, NO stationary point can be found here – it’s similar to a ship on this sea water- Nothing can stop- because the motion is done forcedly by the sea water –

The stationary point will be similar to the whirlpool (vortex) on the sea page- 

But

The solar system needs to create this stationary point

Now – let’s try to create this stationary point in following

The solar system uses two procedures to do that,  

(ii)

The first procedure

The wave its velocity 300000 km/s revolves around a point in space (any point in space), the revolution motion creates 2 equal velocities on both sides of the revolution- the two velocities are equal in value and opposite in direction- their total be equal Zero-means- the revolution motion creates a stationary point in the center of the revolution. 

The second procedure

The previous idea is correct- but –the velocity 300000 km/s is a huge one and to decrease it to Zero velocity this is a complex process– for that- the wave (300000 km/s) created small waves with low velocities to use them as steps to decrease the velocity to Zero- the small waves are The Planets- (The planet is a small wave moves by low velocity relative to the original wave its velocity 300000 km/s) 

Why Are These Small Waves Required?

Because the velocity 300000 km/s is decreased to Zero by using these small waves and their low velocities- the low velocities are used as steps to decrease the unified wave velocity (300000 km/s) to be (Zero)- this process decreases the velocity gradually from 300000 km/s to Zero depending on these small waves velocities (the planets velocities)  

Means- the planets are created for this process to decrease the wave velocity from 300000 km/s to Zero- and The Planet Is A Small Wave Moves By Low Velocity  

Shortly – the solar system has one complete system of velocities, Starting from Zero to 300000 km/s where the planets velocities are the steps between the two velocities – let’s prove that here

(iii)

300000 km = 7.1 x (205.8)^2 where

7.1 is Lorentz length contraction effect for velocity 297000 km/s (99% of speed of light)

205.8 km/s = the 9 planets velocities total (176 km/s) + the Earth moon velocity

(The moon velocity =29.8 km/s = the Earth velocity because they revolve together)

Why does the data use the squared value (205.8)^2?

We know the answer- but - Let’s remember it

The planets are geometrical points on the same light beam and move with its motion- for that- the planets velocities rates creates rates of time– for example-  Mercury velocity = 1.6 the Earth velocity- that means – one hour of Mercury clock = 1.6 hours of the Earth clock- Why??

Because Mercury and the Earth are carried by the same one light beam- the light moves one motion and passes one distance in one period of time- by that Mercury and the Earth have to move this same motion and to pass this same distance in this same period of time- but the two planets velocities are different- for that- the planets use different rates of time based on their velocities rates and by that the planets move equal distances in the same period of time –

Now- the velocity (205.8 km/s) move relative to the stationary point (Zero) and creates a rate of time (1 second = 205.8 seconds) –

(one second of the unified wave clock = 205.8 seconds of the stationary point clock)

But – the energy is reflected in the solar system (I prove that in point no.6),

The energy reflection reflects the players – means

(one second of the stationary point clock = 205.8 seconds of the unified wave clock)

The stationary point will be THE SUN – by that

(one second of the sun clock = 205.8 seconds of the unified wave clock) – means

(one second of the sun clock = 205.8 seconds of any planet clock) –

Now during one second of the sun clock, the wave clock needs 205.8 seconds while the wave moves by a velocity 205.8 km/s- means –

During one second of the sun clock, the wave moves 42253 km = 300000 km /7.1

That creates the different velocity 300000 km/s between the sun motion and the wave motion-

Notice 1

The wave (205.8 km/s) moves during 1461 seconds a distance = 300000 km, and we know the Earth cycle (1461 days = 365 +365 +365 +366)

That tells, the speed of light (300000 km/s) is performed by the rate of time and that causes to create the Earth cycle-   

Notice 2

Planet velocity is created by the rate of time- means- if no rate of time can be used – No planet velocity can be created – instead- all motions will be only by speed of light (300000 km/s)- the planet can create a small velocity because it can use rate of time

We realize that clearly because

The planets motions depend on the light motion- by that – the motion is done by One Motor only which moves by speed of light (300000 km/s), the planets can only move by speed of light or create a rate of time for their smaller velocities - No more options are provided  (CONT)    

Gerges Francis Tawdrous +201022532292

Physics Department-  Physics & Mathematics  Faculty 

Peoples’ Friendship university of Russia – Moscow   (2010-2013)

Curriculum Vitae                  https://www.academia.edu/s/b88b0ecb7c

E-mail                            mrwaheid@gmail.com, mrwaheid1@yahoo.com

                                      gergesgerges@yandex.ru                   

ORCID                           https://orcid.org/0000-0002-1041-7147

Facebook                        https://www.facebook.com/gergis.tawadrous

VK                                 https://vk.com/id696655587

Tumblr                           https://www.tumblr.com/blog/itsgerges 

Researcherid                   https://publons.com/researcher/3510834/gerges-tawadrous/

Google                                https://scholar.google.com/citations?user=2Y4ZdTUAAAAJ&hl=en

Livejournal                     https://gerges2022.livejournal.com/profile

Pocket                                                                     https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar

PUBLICATIONS

box                                 https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv

Academia                       https://rudn.academia.edu/GergesTawadrous

List of publications         http://vixra.org/author/gerges_francis_tawdrous

Slideshare                            https://www.slideshare.net/Gergesfrancis

Text
itsgerges
itsgerges


Best Regards

The Gravitational Waves Reflection In The Solar System (Analytical Study)

or

or

or

Abstract

Paper question

If The Gravitational Waves Are Reflected In The Solar System- How Can We Discover Or Prove That? And What’s The Useful Result Of This Reflection? 

Paper hypothesis

The Gravitational Waves Are Reflected In The Solar System- And This Reflection Causes To Square The Wave Velocity- Means- The Wave Velocity After The Reflection Be Squared The Wave Velocity Before The Reflection- 

The hypothesis explanation

  1. Preface
  2. The Gravitational Waves Source And Motion Trajectory
  3. Can The Gravitational Waves Move By Speed Of Light?
  4. Can A Light Beam Be Created By The Gravitational Waves Motion?
  5. The Sun Rays Production Mechanism
  6. The Sun Rays Production Details
  7. If the gravitational wave moves by a velocity 205.8 km/s how can this wave velocity be accelerated to be equal the speed of light (300000 km/s)?
  8. The Gravitational Waves Reflection Effects On The Motion Data
  9. The Gravitational Waves Reflection Proves (General Proves) 
  10. Venus Reflected The Gravitational Wave Toward Mars (The 3rd reflection)
  11. What’s The Negative Effect Done By Neptune Motion On The Gravitational Waves? 
  12. Can The Planets Motions Use Different Rates Of Time? 
  13. The Planets Motions Use Different Rates Of Time (Deep Analysis)   

Notice/ The Paper Definitions Are In Page No. (109) –

The Definitions Are

  1. (mass gravity definition)
  2. (The Sun Gravitational Field Theory Refutation)
  3. (the space nature)
  4. (the gravitational waves- the source and motion trajectory)  
  5. (planet velocity definition)
  6. (the data distribution in the solar system)
  7. (the star is found depending on its planets motions)
  8. (the sun is created after all planets creation and motion)
  9. (Planet Motion definition)
  10. (Planet Diameter Is Created By A Mathematical Equation)
  11. (Planet Mass definition)
  12. (The Matter Definition)
  13. (Can The Light Move Into The Past?)
  14. (Why Can Not The Matter Move Into The Past?)
  15. (Can A Mystery Be Found In The Solar System Creation?)

Paper Hypothesis Explanation And Discussion

(1st Item) Preface

The Sun Gravitational Field Theory Refutation

The Sun Doesn’t Create A Gravitational Field Nor Has Massive Gravity – there are 3 proves for this fact

(1st Proof)

The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time- 

(2nd Proof)

No Planet Moves By The Sun Gravity – Newton is wrong- because- the planet moves by the force caused its creation- means- the planet creation and motion is done by one force only- because- if two forces have effects on the same one planet this planet would be broken- now- suppose the planet is created (by any force) and the sun gravity attracted this planets and forced it to revolve around the sun by the sun mass massive gravity (as Newton imagined) that would force the planet to move against its inner creation and will cause this planet to be broken- this is similar to a human is forced to walk on his hands in place of his legs and when this human refuses to do that (they told him we can force you by our power) for that this human walk on his hands forcedly and later this human is dead by this motion- shortly- the planet is NOT broken by its motion because the planet creation force is the force causes this planet motion- it’s one force caused the planet creation and motion-

(3rd Proof)

The mass gravity force can NOT cause any motion- the mass gravity creates a bond between two masses- (the Earth and the moon are bond by the mass gravity)- by that they are similar to a lorry and its trailer – if the lorry moves the trailer will move with the lorry- but the mass gravity can NOT cause any motion- why? suppose the moon moves by the Erath gravity force- the moon moves an produces energy (1/2mv^2) and we have to ask from what source this energy will be provided- from the mass itself- means if the Earth causes the moon to move the Earth and the moon masses should be decreased by the motion energy- this is a wrong definition for the mass gravity- the mass gravity creates a bond between two masses (The Earth and the moon) if some outer force causes the Earth to move the moon will move with it and in this case the outer force will provide the motion energy for the Earth and the moon-

(2nd Item) The Gravitational Waves Source And Motion Trajectory

(1)

Planet moves and produces motion energy (1/2mv^2) and this energy can NOT be stored inside the planet body because the planet temperature would be raised by this energy and no planet temperature is raised by its motion- that forces us to suppose that the planet motion energy is stored in the space in waves form- means- the planet motion in the space is similar to the fish swimming in the sea- the fish moves because it hits the water by its body and that creates waves in the water and these waves move by the fish motion velocity (because of the reaction force)- similar to that- the planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal the planet velocity- means- Mercury (for example) moves and its motion energy creates waves in the space and these waves move by velocity = Mercury velocity (47.4 km/s) – we understand that these waves are similar to the water waves they move far from their source and can be reflected.

(2)

The planets revolve around the sun in the same direction- for that- the planets motions energies waves move toward Pluto orbit (Perpendicular on the revolution trajectory) and in Pluto orbit the planets motions energies waves are unified into one unified wave which moves by the planets velocities total – means- while the planets revolve around the sun there’s one unified wave revolves around the sun and moves by  velocity 205.8 km/s (the nine planets velocities total =176 km/s but I add the Earth moon velocity 29.8 km/s because the energy is stored finally in the Earth moon orbit-notice-the moon velocity equals the Earth velocity because they revolve together around the sun- the velocities total is 205.8 km/s )- Shortly – One unified wave revolves around the sun its velocity 205.8 km/s and This wave is found in Pluto orbit        

(3)

This unified wave (205.8 km/s) will reflect from Pluto orbit to Venus orbit- the wave reflection details will be discussed later

(4)

This unified wave is the gravitational waves- the scientists have discovered them but they called them (gravitational waves) because the scientists supposed the waves are produced by the sun gravitational field- while the waves are produced by the planets motions energies – as we have seen the logical analysis forces us to accept that the gravitational waves must be produced by the planets motions energies because no place to store the planet motion energy except in the space as moving waves- by that the waves in the space must be produced by the planets motions energies (also I have refuted the sun gravitational field theory)  

 (3rd Item) Can The Gravitational Waves Move By Speed Of Light?

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

this new article tells the gravitational waves can move by the speed of light and can produce a light beam- 

The article tells new information- its tells the light beam can be produced by gravitational waves motion energy when these waves move by speed of light – but the wave move by speed of light how can this wave produce a light beam? 

We should notice that the article still believes the gravitational waves are produced by the sun gravitational field- this theory which I have refuted completely- but here we don’t interest for the gravitational waves source but we interest for this amazing information tells the gravitational waves can move by speed of light (300000 km/s) and can produce a light beam- why is this information so amazing? Because

The sun nuclear fusion theory tells the sun rays is produced by the nuclear fusion process- the article tells there’s another method to produce a light beam –

let’s compare between the two methods

  • The sun nuclear fusion theory tells the source of energy is the sun mass which is used by the sun nuclear fusion process to produce the sun rays- means- the source of energy is the sun mass and the light production method is the nuclear fusion process
  • The article tells some very different thing- it tells the source of energy is the gravitational waves motion energy and the light production method is the gravitational waves motion by speed of light

If the sun rays is created by the gravitational waves motions that will change the whole vision about sun rays production process and may answer many left questions

Before the details discussion- let’s ask the direct and simple question-

If the gravitational waves move by speed of light (C=300000 km/s) how can these gravitational waves produce a light beam?

Let’s answer in the next item

(4thItem) Can A Light Beam Be Created By The Gravitational Waves Motion?

The paper hypothesis tells (The Gravitational Waves Are Reflected In The Solar System- And This Reflection Causes To Square The Wave Velocity- Means- The Wave Velocity After The Reflection Be Squared The Wave Velocity Before The Reflection)

The article tells (the gravitational waves can move by speed of light C=300000 km/s)   

If these waves are reflected and the reflection can square the velocities- the speed of light will be squared (C^2) and by this value (C^2 squared speed of light) a light beam can be created- that explains how the gravitational waves moves by speed of light can produce a light beam-

Shortly

If I prove the gravitational waves are reflected in the solar system and this reflection causes to square the velocities that will prove my theory tells (The Sun Is Not Doing Nuclear Fusion To Produce Its Rays Instead The Sun Rays Is Created By The Planets Motions Energies Total)

 The idea is a simple one

The gravitational waves can move by speed of light (C=300000 km/s) but the light beam can be produced only by the value (C^2)- that tells the gravitational waves velocity must be squared- the velocity is squared only by the reflection of energy – that shows the paper hypothesis importance–because without the squaring of the velocity no light beam can be produced even if the gravitational wave moves by speed of light   

I want to say- the wave reflection is the light beam production mechanism spine- because the wave reflection causes to square the wave velocity- means- if the gravitational wave moves by speed of light this speed will be squared by the reflection of the wave and by that the value (C^2 = squared speed of light) will be created by which the light beams can be produced.

The idea can be useful only if the wave reflection can square the wave velocity- the hypothesis proves will disprove the sun nuclear fusion theory completely – let’s see in following how the sun rays are produced in details

(5th Item) The Sun Rays Production Mechanism

The idea is more clear now

The gravitational waves are produced by the planets motions energies- and the planets motion energies waves are unified into one unified gravitational wave which moves by (205.8 km/s) =the planets velocities total – the waves unification is done in Pluto orbit and by that the unified velocity be (205.8 km/s) in Pluto orbit

Shortly

While the planets revolve around the sun there’s one gravitational wave revolves around the sun and moves by velocity (205.8 km/s) –

The new article tells the gravitational waves can move by speed of light (C=300000 km/s)- and these waves can produce a light beam!

The paper hypothesis tells (The Gravitational Waves Are Reflected In The Solar System- And This Reflection Causes To Square The Wave Velocity- Means- The Wave Velocity After The Reflection Be Squared The Wave Velocity Before The Reflection) -

These are all available data – and – what’s the requirement?

We have a waves move by velocity (205.8 km/s) and we want this wave to move by speed = (C^2 squared speed of light) – let’s try to do that in following

The First Reflection

The unified wave (The Gravitational Wave) moves by (205.8 km/s) is reflected from Pluto orbit to Venus orbit- this reflection of energy squares the velocities and causes this wave to move by speed of light – let’s see how

300000 = (205.8)^2 x 7.1

The motion by (0.99C) creates relativistic effects – specifically Lorentz length contraction effect by rate 7.1, Means- if a particle its length 7.1 meter moves by speed (0.99C) this particle length will be contracted and be one meter only- let’s analyze the equation

The unified wave velocity (205.8 km/s) is reflected and that caused to square the velocity (205.8 km/s)^2 = 42683 km/s now the rate (7.1) causes contraction for the lengths but because of the energy reflection the geometrical effects will be reflected also- means the rate (7.1) doesn’t cause to contract the length but increase the lengths and by that the velocity 42683 km/s will be 42683 km/s x 7.1 = 300000 km/s (speed of light = C)

Shortly- the wave reflection from Pluto to Venus causes to square the wave velocity and that accelerate the wave velocity to move by speed of light –

Means- the wave reaches Venus moves by speed of light (C=300000 km/s)       

The second Reflection (in fact the 3rd reflection)  

The unified wave (gravitational wave) reaches to Venus orbit with speed (300000 km/s)- then Venus reflects the unified wave toward Mars- this reflection causes to square the velocity- before the reflection the wave moves by speed of light and after the reflection the speed is squared and the wave shows the value (C^2 squared speed of light) by which the light beam can be created (the sun rays creation)

The idea summary tells

The unified wave is reflected two times in the solar system      

In the first time- the unified wave velocity (205.8 km/s) is accelerated to be 300000 km/s (speed of light =C)

In the second time- the unified wave velocity (300000 km/s = speed of light =C) be accelerated to be C^2 (squared speed of light) and the light beam is produced by this value C^2 (squared speed of light)

Now we understand this simple idea- but there are 2 left Major Questions

(1st Question) how the wave velocity (205.8 km/s) can be accelerated to be 300000 km/s (speed of light = C)? by what method the wave is accelerated?

(2nd Question) Are the unified wave reflected two times only in the solar system?

Let’s leave the 1st question to discuss later and answer the 2nd question in following,

How many times the unified wave reflected in the solar system?

Three times (by Pluto, by Saturn and by Venus) -while the required is only two times- so why the wave is reflected three times?

Neptune caused negative effect on the energy reflection by Pluto, by that the energy doesn’t reach to Venus- that forces Saturn to reflect the wave one more time to do the same job of Pluto reflection 

Means- the first reflection by Pluto failed to square the velocity and accelerate the wave motion to move by speed of light- this failure is done by Neptune negative effect on the wave energy- because of that- Saturn does another reflection for the wave energy and by Saturn reflection the wave velocity (205.8 km/s) is squared and the motion is accelerated to be done by speed of light (300000 km/s),

Shortly- in place of one reflection by Pluto, the unified wave is reflected two times by Pluto and by Saturn but these two reflections do only the role of one supposed reflection (from Pluto to Venus)- by this one reflection the unified wave velocity (205.8 km/s) will be accelerated to be speed of light (300000 km/s) and by that the wave reach to Venus moves by speed of light (C=300000 km/s)

Venus reflects the wave again toward Mars (the 3rd reflection), by this reflection the speed of light is squared and produced (C^2= squared speed of light) and from this value (C^2) the light beam is produced (the sun rays is created)

Notice

In Lorentz transformations study- there’s a major question asks (Can particle own data and dimensions be changed by the high velocity motion?) 

Shortly- Lorentz transformation tells– if a particle moves by high velocity motion- this particle own length will be contracted and its time will be dilated and its mass will be increased- these changes are defined by Lorentz transformations and we know these are real changes in this particle own data - BUT

Some researchers tell No Real Changes are done for the particle own data but they are illusions of measurements (means Lorentz transformations measure illusions)

I refuse this opinion - BECAUSE

  1. The Physics Is The Measurements Science And What’s Measured Is The Fact
  2. If no real changes are done how the problem of Michelson and Morelly experiment is solved?- also- we can’t understand why the synchronous events in one frame can’t be synchronous in another (as Einstein stated) where no real change is found for any data- the distances are Not contracted nor the time is dilated nor the mass is increased why the events can NOT be synchronous in any frame?  
  3. If the particle own data are measured correctly while it moves by my motion velocity and these measurements are suffered from illusions because the particle moves by high velocity motion relative to my motion velocity that means (I’m the universe reference point)
  4. We notice- Lorentz length contraction equation can’t distinguish between particle length and a distance, both can be contracted by the same one equation- that supports my theory tells (The Matter And The Space Are Created From The Same Energy)– If the space is similar to the sea of water the matter will be similar to a whirlpool (or vortex) on the sea page- both the matter and space are created from the same one energy- that gives chance to change the matter dimensions by its motion   
  5. My planet diameter equation proves the planet diameter is created depending on its velocity- means- for example– Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s- this fact is proved by my Equation strongly - that tells the motion has effect on the matter dimensions and data definition which supports the same meaning of Lorentz transformation. 

(6th Item) The Sun Rays Creation Details

The sun is NOT doing nuclear fusion to produce its rays- but- the sun rays is created by the planets motions energies- generally- the star rays is created by the gravitational waves which are produced by its planets motions energies – there are 4 facts prove that – let’s refer to these facts in following

1st Fact 

The Sun Corona Temperature is 5 millions Kelvin but the sun surface is 5800 Kelvin

This fact puzzles the scientists – No puzzle here-

Simply the sun rays is Not produced by the sun nuclear fusion but by the planets motions energies – the energy is Not produced from the sun body but by the planets motions energies – means- The energy out of the sun is greater hundreds times the energy inside the sun because the energy is provided by the planets motions energies-

The Sun Corona Temperature proves that the sun is NOT doing nuclear fusion to produce its rays – instead the planets motions energies total is used as the source of energy to produce the sun rays

2nd Fact 

The gravitational waves are created by the planets motions energies- I have proved that- simply Planet motion energy (1/2mv^2) should be stored in the space in moving waves because no other place to store this energy- that tells the gravitational waves are produced by the planets motions energies- this is a doubtless conclusion- the gravitational waves are produced by the planets motions energies-

Here we see clearly the fatal error of the sun nuclear fusion theory because the solar planets revolve around the sun moving continuously and by this motion massive motion energy must be produced and that tells massive motion energy must be stored in the space in moving waves- so we have to ask (when and how this stored energy will be used?) understandable the energy can not be stored in the space forever without using- means- the sun rays is the outlet for the stored motion energy and the using of this stored energy protects the solar system from all risks found by the unused stored energy-

The logical problem here tells, the scientists create a strange source of energy (the sun mass) to produce the sun rays by the nuclear fusion process and no one interests for the planet motion energy nor the stored massive energy in the space-

The mistake is that- the scientists supposed the planet moves and produces NO energy while the motion energy (½ mv^2) is elementary concept in the classical mechanics

The planets motions energies create a very great problem for the sun nuclear fusion theory and disproves it because No Source Of Energy Is Required where massive motion energy is stored in the solar system and needs to be used – here the sun rays is the outlet for this massive motion energy and provide the energy in very useful and peaceful method-           

3rd Fact 

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

this article tells the gravitational waves can move by the speed of light and can produce a light beam-  the question was (If the gravitational waves move by speed of light how can these waves produce a light beam?) – the answer was –

the gravitational waves are reflected and the reflection causes to square the velocity and by that the gravitational wave moves by speed of light and when this wave be reflected its velocity will be squared and by that the value (C^2= squared speed of light) by this value the light beam can be created.

here the planets data depends on this process – let’s see that-

the unified wave move by the velocity (205.8 km/s)= the planets velocities total- the square of this velocity will produce the speed of light (205.8)^2 x 7.1 = 300000 as I have explained before- then the speed of light square will produce (C^2= squared speed of light) and by this value the light beam will be created –

means- the planets data is in harmony with the light production process

please note- the energy reflection is proved strongly because the planets data is reflected by it (later we will discuss the reflection of energy proves)- means- I provide a theory shows full harmony with the planets data that prove the theory is a fact because the planets data proves it   

NOTICE

Before the Earth moon creation the planets velocities total was 176 km/s (the nine planets velocities total only without the moon velocity)- let’s try to reflect this wave

The wave reflection causes to square its velocity  (176)^=30976 km/s

Now we use Lorentz length contraction effect rate 7.1

The result is 30976 x 7.1 = 220000 km/s

Here I accelerated the unified wave its velocity (176 km/s) by the same Method I used for the velocity (205.8 km/s) but the wave (176 km/s) after acceleration produce the velocity 220000 km/s which equal (75% of speed of light) and this velocity square can NOT produce the value (C^2 squared speed of light) and by that NO Light Beam can be created

Let’s review our wave velocity

(205.8)^ x 7.1 = 300000

Means- the unified wave with velocity 205.8 km/s is the only wave can produce the light beam by the reflection of energy- that tells us – the sun is created after the Earth moon creation – and also tells the planets data is in full harmony with the sun rays creation by the gravitational waves motions- this analysis gives proof for my theory tells (The Sun Is Not Doing Nuclear Fusion To Produce Its Rays But The Sun Rays Is Created By The Planets Motions Energies Total)

4thFact 

The previous analysis proves the sun rays is created by the planets motions energies and not by the sun nuclear fusion- can we add one more crucial proof for this fact? Yes – the crucial proof tells that (the sun rays is created by a relative motion)

Means the method by which the sun rays is created is (the relative motion)- let’s examine this proof in following

(i)

As we have seen the light production depends on a gravitational wave moves by speed of light (C=300000 km/s) then this wave is reflected and by the reflection the speed of light will be squared and produced the value (C^2= squared speed of light) and by this value the light beam can be created

Means- the main player to produce the light beam is the gravitational wave moves by speed of light- then let’s ask- suppose this wave moves by speed less than speed of light what would happen? In this case the energy reflection will not produce the value (C^2= squared speed of light) and as a result NO Light Beam can be created 

Means- the process cornerstone is the wave motion by speed of light? But relative to what? The question asks (if the wave moves by speed of light relative to what?)

Of course the wave moves by speed of light relative to the sun point because the different velocity between the wave motion and the sun point motion will produce the light beam- means- the light beam is produced by a relative motion and this motion has two players which are

(1st player) the unified wave moves by 205.8 km/s and after its reflection will move by the speed of light 300000 km/s

(2nd player) the sun point of space moves by 1 km/s (stationary point)

(ii)

How can the sun point move by 1 km/s and its velocity never increased?

We understand the space is movable and not static and the gravitational waves prove the space has motion- means- no stationary point can be found in the space (as no stationary point can be found on the sea because every thing moves by the sea waves) by that the point moves by 1 km/s (a stationary point) is a point created by some design because it can Not be found by nature- let’s create this stationary point in following

The planets revolve around a point in space (any point in space) the revolution creates two velocities on both sides of the revolution- the two velocities are equal in value opposite in direction and by that the total be Zero –

Means- the revolution design creates a stationary point in the revolution center

By that the sun point (1 km/s) is created by the planets revolution around it

By the stationary point creation a relative motion is created- and this relative motion has two players as referred before

(1st player) the unified wave revolves around the sun with velocity 205.8 km/s and after its reflection the velocity will be equal the speed of light (C=300000 km/s)  

(2nd player) the sun point of space (1 km/s) (stationary point)

(iii)

We should pay attention to the sun point because it’s the process cornerstone - Why? 

Because the unified wave (gravitational wave) can not move by speed greater than speed of light (C=300000 km/s) where the speed of light is the wave velocity limit

But- the different velocity between the unified wave velocity and the sun point velocity should be equal = 300000 km/s = speed of light because any less different velocity can NOT produce the light beam –

That tells the sun point of space should be stationary point (1 km/s) and its velocity should NOT be increased in any case-

What’s The Information Told By This Analysis?

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

The article tells the gravitational waves can move by the speed of light- but- the fact is that- the different velocity between the gravitational wave and the sun point of space is the speed of light- the wave move relative to the sun point of space- as any other motion-

For example Pluto velocity is 4.7 km/s- why? because Pluto moves relative to the sun point of space and Pluto velocity 4.7 km/s and the sun point is (1 km/s) and the different velocity is 4.7 km/s- all motions are done relative to the sun point of space because the energy storing aims to- create the sun rays- by that- if the article tells the wave moves by speed of light that means the different velocity between the wave and the sun motions is the speed of light – that makes the sun stationary point 1 km/s  

Shortly – if the sun point moves by any velocity faster than 1 km/s NO Light Beam Can Be Created and NO Sun Rays can Be Produced-

The sun point velocity is the process spine

(iv)  

This analysis proves the sun rays is created by the gravitational waves energy (the planets motion energies) and not by any nuclear fusion process- and also refutes the sun nuclear fusion theory completely- why? for 2 reasons

1st Reason

The sun rotation period is (25.4 days at equator) and the sun circumference is 4.37 million km- this motion velocity is 2 km/s

Means if the sun moves by 2 km/s, the sun will rotate around its axis one complete rotation in 25.4 days

This data proves the sun point is the stationary point because the actual accounts show the sun point velocity is 2 km/s

Notice -

The solar system geometrical design supposes the velocity of the sun point is 1 km/s but the real velocity is 2 km/s – it is NOT small change in Value – it’s a great change in the whole machine- but the machine still can produce a light beam spite of that

And to produce the light beam- the machine has to depend on (2 seconds) in place of (1 second) and for that the planets motions distances total should be= (180000 million km) in place of the required distance (90000 million km) - Means – this small change in the sun point velocity (from 1 km/s to 2 km/s) causes to double the passed distances by the planets to produce the sun rays- we can imagine if the sun point moves by 15 km/s in this case it will be impossible to produce the light beam

Notice- (C^2 squared speed of light) equals 90000 million km if the period is one second- means- the planets motions distances total be 90000 million km in some period of time but the rates of time makes this period to be equivalent to one second of the sun clock that creates the value (C^2 squared speed of light)

The problem now is that- the sun velocity is 2 km/s that forces the planets to pass total distance = 180000 million km to create the rate (90000 million km for one second)

That shows the great effect of the smallest change of the sun point velocity

2nd Reason

The sun position and data is defined based on very accurate mathematical calculations 

The designer paid so great attention and incredible interest for this point- because of its massive importance and effect- for that- the designer made the sun position in the sky and the sun creation data to depend on exact mathematical calculations and strict geometrical rules to guarantee the sun point velocity Never to be faster than 1 km/s

Let’s see some examples to explain that

Example No.(1)

We See The Sun Disc= The Moon Disc which enable the total solar eclipse to be occurred because

The sun diameter / the moon diameter= Earth orbital distance/ earth moon distance

Why does the diameters rate equal = the distances rate?

Example No.(2)

4900 mkm (Jupiter orbital circumference) = 1.39 mkm (the sun diameter) x 3475 km =12104 km x 406000 km = 12756 km x 384000 km = 6792 km x 2 x 363000 km

3475 km      = the moon diameter                 12104 km    = Venus diameter

12756 km    = The Earth diameter                6792 km      = Mars diameter

 363000 km, 384000 km and 406000 km are the distances between the Earth and its moon in perigee, orbital distance and apogee radiuses respectively

The previous examples show that the sun creation data and its position in the sky are defined based on accurate mathematical calculations- but why? and what’s the useful result of these data proportionalities

The designer aimed to make the velocity of the sun point of space to be 1 km/s and He interested to guarantee that the velocity can Never be faster than 1 km/s – because any faster velocity than 1 km/s will destroy the chance of the light beam production- BUT

What’s the relationship between the sun creation data and its velocity?

This question is answered by my planet diameter equation- the equation proves that the planet diameter is defined based on this planet velocity- for example- Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s that shows the change in velocity can change the diameter (my planet diameter equation proves that strongly) and based on that, the sun diameter is effected by the sun velocity and vice versa for that reason these proportionalities are necessary to guarantee the sun point of space to be (1 km/s) and never be faster.

(v)  

The sun position and creation data by accurate mathematical calculations was necessary to guarantee the sun point of space velocity to be 1 km/s and never be faster by that the sun be the stationary point-  these calculations will be useless if the sun rays is created by the sun nuclear fusion process-

Means- the sun nuclear fusion theory doesn’t see the massive motion energy which is found in the solar system and also doesn’t see the relative motion which is the method to produce the sun rays- by that – the theory doesn’t see the accurate calculations behind the sun position and its creation data- that tells- the sun nuclear fusion theory is completely very strange theory from the solar system geometrical concept and design.

 (7th Item) If the gravitational wave moves by a velocity 205.8 km/s how can this wave velocity be accelerated to move by  the speed of light (300000 km/s)?

(1)

The wave acceleration depends on the sun rate of time (one second of the sun clock = 1461 seconds of the Earth clock) by that the unified wave (205.8 km/s) moves a distance 300000 km in 1461 seconds for the Earth clock shows the velocity is 205.8 km/s but the period is one second for The Sun clock shows the velocity 300000 km/s (speed of light) –means- the wave velocity is 205.8 km/s relative for the Earth but the same wave moves by 300000 km/s (speed of light) relative to the sun

The wave acceleration method is the sun rate of time

notice- for the motion by speed of light (C=300000 km/s) the rate of time is (1=1461) but for the motion by (C^2) the rate of time is (1=1461^2) means (1=2134521)   

BUT

The sun rate of time is found always why the acceleration is done only for the unified wave (205.8 km/s) which is sent from Pluto (and Saturn) to Venus? 

There are 2 reasons

(1st Reason)

The sun rate of time causes to accelerate any wave- but not all waves can be working- let’s remember the acceleration for the wave its velocity 176 km/s (the nine planets velocities total without the Earth moon velocity)

The wave velocity is 176 km/s - let’s try to reflect this wave

The wave reflection causes to square its velocity  (176)^=30976 km/s

Now we use Lorentz length contraction effect rate 7.1

The result is 30976 x 7.1 = 220000 km/s

Here I accelerated the unified wave its velocity (176 km/s) by the same Method I used for the velocity (205.8 km/s) but the wave (176 km/s) after acceleration produce the velocity 220000 km/s which equal (75% of speed of light) and this velocity square can NOT produce the value (C^2 squared speed of light) and by that NO Light Beam can be created – by that the acceleration of the wave 176 km/s doesn’t produce any useful result.

On the contrary, the acceleration of the unified wave (205.8 km/s) will produce the speed of light – (205.8)^2 x 7.1 = 300000 – and this speed of light will be squared by Venus reflection and the value (C^2) be produced and this value can produce a light beam- Means- all waves can be accelerated but the working wave is specific one  

(2nd Reason)

Again- The sun rate of time causes to accelerate any wave- BUT the acceleration process is done by energy- the rate of time is a method (as a generator can produce electricity) but the generator will work when you put fuel in it– the method is available but the process is done by energy-

We know the energy is reflected from (Pluto and Saturn) to Venus that tells the unified wave velocity in Pluto is 205.8 km/s but the wave velocity in Venus is 300000 km/s (speed of light) because the energy is in Venus orbit and Not in Pluto orbit-   

Notice

The wave acceleration depends on the sun rate of time- means- the motion energy must be ascending to reach to the sun corona and there the waves acceleration is done  Means

All planets see the unified wave moves by velocity (205.8 km/s)- no any acceleration for the unified wave (205.8 km/s)  is recorded in any planet because the acceleration needs the energy reaches to the sun corona (to depend on the sun rate of time)- by that the wave velocity is NOT changed for all planets

BUT

Let’s look deeply as possible

The unified wave velocity is 205.8 km/s in Pluto orbit –Now if this wave is ascending to the sun and this wave moves into the sun corona- the wave velocity in the sun corona will be 205.8 km/s only – why? because the wave is not accelerated

Then

The unified wave will be reflected by Pluto (and Saturn) toward to Venus – now – the wave has acceleration by the reflection of energy- the wave moves in Venus orbit with its velocity (205.8 km/s)- but if this wave is ascending toward the sun and moves into the sun corona – the wave velocity in the sun corona will be 300000 km/s (speed of light) why? because the wave is reflected one reflection only (the acceleration is done for one time only)

Then

The unified wave will be reflected by Venus toward to Mars– now – the wave has second acceleration by the reflection of energy- the wave moves in Mars orbit with its velocity (205.8 km/s)- but if this wave is ascending toward the sun and moves into the sun corona – the wave velocity in the sun corona will be (C^2= squared speed of light) because the wave is accelerated two times (has two reflections)

That’s exactly what’s happening

The unified wave energy is reflected from Venus to Mars and the energy be found in the distance between the Venus and Mars (especially between the Earth and Mars)

Specifically the energy is saved in the total lunar eclipse umbra (that’s why the umbra length = 1.392 million km = the sun diameter)- the energy is found in the distance around the total lunar eclipse umbra-

Then the energy moves (perpendicular) on the motion direction –

For that the energy ascending toward the sun and the energy moves into the sun corona- there the energy depends on the sun rate of time and the motion energy now can produce the value (C^2= squared speed of light) and from this value the light beam is created (the sun rays is produced)  

(8th Item) The Gravitational Waves Reflection Effects On The Motion Data

(1)

The unified wave (the gravitational wave) is reflected in the solar system three times

1st reflection the unified wave is reflected from Pluto toward Venus

2nd reflection the unified wave is reflected from Saturn toward Venus

3rd reflection the unified wave is reflected from Venus toward Mars

(means- the unified wave is reflected from Pluto to Venus by that the wave is sent from Pluto to Neptune to Uranus to Saturn but in Saturn orbit the wave is reflected one more time and after the reflection the wave continues its motion toward Venus then the wave reached Venus orbit and Venus reflected the wave toward Mars and finally the wave energy is stored in the Earth moon orbit between Venus and Mars)

Means- while the planets revolve around the sun there’s one unified wave moves by (205.8 km/s) and revolves around the sun through Earth Moon Orbit.

(2)

Please note- the unified wave velocity analysis and the reflection effect on it shows that the required reflection are two reflections only and not three- let’s explain that –

The unified wave velocity is (205.8 km/s) and in the first reflection this velocity will be squared which causes to accelerate the unified wave motion to move by speed of light (300000 km/s) means the unified wave velocity (205.8 km/s) will be accelerated to reach to the speed of light by the first reflection- in the second reflection the velocity will be squared also- now the unified wave moves by speed of light (300000 km/s) and this velocity will be squared to be (C^2= squared speed of light) by the second reflection and the value (C^2) will produce a light beam-

Means- by two reflections only the unified wave velocity (205.8 km/s) will be accelerated to be equal (C^2= squared speed of light) by which the light beam can be created and by that the sun rays will be produced by the planets motions energies- but the unified wave is reflected three times in the solar system – Why??

Neptune caused a negative effect on the energy reflected by Pluto- by that- the energy reflection by Pluto can’t be sent to Venus – Neptune negative effect caused frustration for the wave reflection by Pluto and that forced Saturn to reflect the unified wave one more time to perform the same job- shortly- the unified wave (205.8 km/s) is reflected two times (by Pluto and by Saturn), but these two reflections perform the job of one reflection only because of Neptune negative effect on Pluto reflection of energy – Neptune negative effect is explained in details in point no. (**)   

(3)

The wave energy reflection can be discovered easily because of the changes in data which are done by the reflection – let’s refer to these changes in following

  1. The data is reflected- what’s used as (A) before the reflection will be used as (1/A) after the reflection.
  2. The data which is used as (a distance) before the reflection will be used as (a period of time) after the reflection
  3. The velocities be squared – by that the rate (v1/v2) before reflection will be (v1/v2)^2 after the reflection.
  4. The energy direction is changed by the reflection usually–means-the energy moves toward Pluto will be reflected and sent toward Venus (change in the direction)
  5. The players of the rates of time are reflected also – for example (one second of the wave clock =205.8 seconds of the sun clock) before the reflection and will be (one second of the sun clock =205.8 seconds of the wave clock) after the reflection   

The planets motions use different rates of time (discussed in point no. (**))

How can the energy reflection be proved? The planets data is reflected on each other – for example- Venus orbital inclination is 3.4 degrees and Pluto orbital inclination is 17.2 degrees where sin (3.4) = 1/17.2 – in the next point I provide more proves.

(9th Item) The Gravitational Wave Reflection Proves (general proves) 

The reflection of energy is proved by powerful of data I provide here 4 proves only

(1st proof) the planet velocity analysis proves the reflection of energy

The planet velocity is defined by two rules

1st rule  my fifth equation (v1v2=constant = 322)

Let’s prove the rule in following

322 = 47.4 km/s (Mercury velocity)     x  6.8 km/s (Uranus velocity)

322 = 35 km/s (Venus velocity)           x  4.7 km/s (Pluto velocity) x 2

322 = 29.8 km/s (Earth velocity)         x  5.4 km/s (Neptune velocity) x 2

322 = 24.1 km/s (Mars velocity)          x  13.1 km/s (Jupiter velocity)

The data shows that the planets velocities are complementary one another- means- the planets velocities are created in double– means- Mercury and Uranus velocities are created together based on the rule (v1v2=322)

Please note, the rule is effective on the planet motion in different features not only the planet velocity because (for the inner planets) the planet orbital inclination be =v1/v2 for example (47.4/6.8)= 7 where Mercury orbital inclination =7 degrees. 

Means the rule (v1v2=322) not only define the planets velocities but also define many other features in the planet motion (notice, the outer planets define their orbital inclinations based on my planet diameter equation)  

2nd rule  (v1v2=1)

This rule uses the planets velocities per solar day

Pluto velocity per solar day 0.406       million km             But 1/0.406           = 2.46

Neptune velocity per solar day 0.4468 million km             But 1/0.4668         = 2.082

Uranus velocity per solar day 0.587   million km             But 1/0.587           = 1.7

Saturn velocity per solar day 0.838     million km             But 1/0.838           = 1.19

The Earth moon velocity per solar day 2.4    million km            

Mars velocity per solar day 2.082      million km  

Venus velocity per solar day 3.024      million km =1.7 x (π)^0.5

Jupiter velocity per solar day 1.1318 million km            

Pluto velocity is reversed with the Earth moon velocity

Neptune velocity is reversed with Mars velocity

Uranus velocity is reversed with Venus velocity

Saturn velocity is reversed with Jupiter velocity

The Rules Analysis

The two rules can be understood- if we suppose that the energy is reflected in the solar system- that makes the inner planets velocities to be reflected with the outer planets velocities- the reflection causes the two rules (v1v2=322) and (v1v2=1)

The constants are different because the first rule uses the planets velocities based on seconds but the second rule uses the planets velocities based on the solar day- means the constants are different between (322) and (1) because the velocities depends on different units of time and the interaction between the solar day and the second caused to use the constants (322) and (1)

1st Question- why is the constant = 322?

1160000 seconds = 322 hours

We know the solar system is created from one light beam energy and this light beam moves by speed 1.16 million km per second- that tells the planets velocities are defined based on this speed 1.16 million km per second

Notice  

322 =47.4 x 6.8 – this data tells

Mercury (47.4 km/s) moves in 6.8 hours a distance = 1.16 million km and

Uranus (6.8 km/s) moves in 47.4 hours a distance     = 1.16 million km and

That shows the planets velocities are defined based on the speed 1.16 million km per second.

2nd Question- how can the players be changed?

For example –Pluto is the complementary planet with Venus 4.7 x 2 x 35 =322

How can Pluto (0.406) be complementary with the moon (2.4)?

The players are not changed- the planet velocities are effected by Uranus orbital inclination (0.8 degrees) and that caused to change the planets velocities let’s see that in following-

0.8 x 4.095 (Mercury velocity daily)             = 1.0725 x 3.024 (Venus velocity daily)

0.8 x 3.024 (Venus velocity daily)                 = 2.4 (The moon velocity daily)

0.8 x 2.574  (The Earth velocity daily)          = 2.082 (Mars velocity daily) /1.0725

0.8 x 1.1318 (Jupiter velocity daily)              = 0.838 (Saturn velocity daily) x 1.0725

As we see Uranus orbital inclination (0.8) has effect on all planets velocities and that caused to change the velocities- the puzzle is that – when the planets velocities are effected by Uranus orbital inclination that changed the planets velocities but the change produced other planets velocities means

Mercury velocity is changed into Venus velocity and

Venus velocity is changed into the moon velocity and

The moon velocity is changed into Mars velocity and

Jupiter velocity is changed into Saturn velocity

That gives the feeling that the players are changed which is not fact

Let’s ask– why has Uranus orbital inclination this effect on the planets velocities?

Uranus Orbital Inclination (0.8) is produced by the rate between Neptune and Uranus (π/4)= 0.8 (Uranus orbital inclination 0.8 degrees) – let’s explain the reason

The energy is reflected from Pluto and passed through Neptune and Uranus and the interaction between Neptune and Uranus (π/4)= 0.8 creates effect on the energy – that caused effect on the planets velocities and data but the basic rule (v1v2=322) is still as it without change and this same rule still controls the data even after the effect of Uranus and Neptune interaction- shortly- the velocities are changed but the players are not.

(2nd proof)

The planets order proves the energy reflection

I proved Mars original orbit was between Mercury and Venus and Mars had migrated from its original orbit to its current one- by that the inner planets order be as following (Mercury – Mars- Venus – Earth)

The order tells greater diameter needs longer orbital distance

the outer planets order is

(Jupiter – Saturn – Uranus – Neptune – Pluto)

The order tells greater diameter needs shorter orbital distance

The orders are reflected on each other

Please note the planets order depends on the planet diameter and not the mass because Neptune mass is greater than Uranus mass where Neptune diameter is less than Uranus diameter. 

(3rd proof)

Each planet orbit is defined based on an angle, these angles are reflected also – let’s prove that 

(I suppose –There’s a right triangle by the three points The Sun, Mercury and Venus) 

Now -Venus angle is (61 degrees) because Venus orbital distance (108.2 mkm) x cos (61) = Venus Mercury distance (50.3 mkm) -

Here we can replace Venus with any other planet in the same triangle to define this planet angle based on similar calculation– as a result

Earth angle is (51 degrees) because Earth orbital distance (149.6 mkm) x cos (51) = Earth Mercury distance (91.7 mkm)

Mars angle is (41.7 degrees) because Mars orbital distance (227.9mkm) x cos (41.7)= Mars Mercury distance (170 mkm)-

Jupiter angle is (22.2 degrees) because Jupiter orbital distance (778.6 mkm) x cos (22.2)= Jupiter Mercury distance (721 mkm)

Similar to that – Saturn angle is 16.5, Uranus angle is 11.6 deg, Neptune angle is 9.2 deg and Pluto angle is 8 deg- these angles follow the same system

– for example -Pluto angle is (8 degrees) because Pluto orbital distance (5906 mkm) x cos (8)= Pluto Mercury distance (5848 mkm) –

NOTICE No. (1)

The right angle and its triangle is (a hypothesis) – but we can prove it’s fact because (v1/v2) = (θ1/ θ2) -means – these angles are rated with their planets velocities – for example (Neptune velocity 5.4/ Pluto velocity 4.7) = (9.2 deg /8 deg)

NOTICE No. (2)

These angles are reflected on each other proves the energy reflection in the solar system- let’s proves that in following

940 = 61 x 2 x 8 = 51 x 2 x 9.2 = 41.7 x 22.2

(61 degrees) is Venus angle

(51 degrees) is The Earth angle

(41.7 degrees) is Mars angle

(8 degrees) is Pluto angle

(9.2 degrees) is Neptune angle

(22.2 degrees) is Jupiter angle

The data shows the angles are reflected on each other and uses behavior typical to the planets velocities behavior which proves the reflection of energy.

(4th Proof) – the next item provide the fourth proof

(10thItem) Venus Reflects The Gravitational Wave Toward Mars (The3rd reflection)

The wave 205.8 km/s is reflected (by Pluto and by Saturn) toward Venus the reflection causes to accelerate the wave velocity to move by speed of light (300000 km/s)  in Venus orbit- and then- Venus reflects the wave toward Mars which accelerate the wave velocity one more time and causes its velocity to be (C^2)- finally the wave energy is stored in the Earth moon orbit- Now we discuss this last reflection (3rd reflection) between Venus and Mars- both planets data is changed by this reflection- let’s remember the data changes by the energy reflection

  1. The data is reflected- what’s used as (A) before the reflection will be used as (1/A) after the reflection.
  2. The data which is used as (a distance) before the reflection will be used as (a period of time) after the reflection
  3. The velocities be squared – by that the rate (v1/v2) before reflection will be (v1/v2)^2 after the reflection.
  4. The energy direction is changed by the reflection usually –means- the energy moves toward Pluto will be reflected and sent toward Venus (change in the direction)
  5. The players of the rates of time are reflected also – for example (one second of the wave clock =205.8 seconds of the sun clock) before the reflection and will be (one second of the sun clock =205.8 seconds of the wave clock) after the reflection   

Let’s see these changes in Venus and Mars Data

(1)

Venus orbital circumference 680 million km will be used as Mars orbital period (687 days) based on the rate (1 million km = 1 day) –

Also

Venus orbital Period 224.7 days will be used as Mars orbital distance (227.9 million km) based on the same rate (1 million km = 1 day) –            (Data Max Error 1.5%)

(2)

Saturn orbital distance =1433 million km = Mars orbital circumference

We understand that the unified wave is reflected (from Pluto and SATURN) to Venus and Venus reflects the unified wave to Mars- by that- Saturn distance (1433 mkm) is seen in Venus data as (a period of time 224.7 days with 227.9 the different is 1.5) and Venus period of time is seen as a distance again in Mars data (227.9 mkm) and by that mars orbital circumference be 227.9 x 2π =1433 million km that explains why Saturn orbital distance = Mars orbital circumference

(3)

 Sin (3.4)= 1/17.2 BUT sin (34.4/1.0725) = 1/1.9 where

3.4 deg = Venus orbital inclination                         17.2 deg = Pluto orbital inclination

1.9 deg = Mars orbital inclination                          1.0725 = length contraction rate

The data shows similar behavior between Pluto and Mars with Venus because the wave is reflected from Pluto (and Saturn) to Venus and from Venus to Mars

(4)

Venus diameter 12104 km/ Mars diameter 6792 km = 3.4 /1.9

Venus diameter 12104 km/ Pluto diameter 2390 km = 17.2 /3.4

Saturn diameter 120536 km/ Venus diameter 12104 km = 3.4 /(2.5 x 7.1) where

3.4 degrees   = Venus Orbital Inclination

17.2 degrees  = Pluto Orbital Inclination

1.9 degrees    = Mars Orbital Inclination

2.5 degrees    = Saturn Orbital Inclination

7.1                 = Lorentz length contraction effect rate

The data shows similar behavior by all planets because the unified wave is reflected by all these planets (by Pluto, by Saturn and by Venus)

(5)

  1. 11.675 days x 2.082 million km               = 243 million km
  2. 10747 seconds x 35 km/s                        = 378675 km
  3. 2390 seconds x 35 km/s       x 1.0725      = 90560 km

Data No. (i) tells Mars velocity per solar day 2.082 million km moves in 116.75 days (Venus day period) a distance =243 million km where 243 days = Venus rotation period

Data No. (ii) tells Venus (35 km/s) moves in 10747 seconds a distance =378675 km (Saturn Circumference) where (10747 days = Saturn orbital period)

Data No. (iii) tells Venus (35 km/s) moves in 2390 seconds a distance =90560 km where (2390 km = Pluto diameter and 90560 days Pluto orbital period)

The data is complex but tells one information that- the receiver planet velocity is used as a rate between 2 data of the sender planet –

For example Data no. (i) it tells Mars velocity daily (2.082) is a rate between 116.75 days and 243 days (Venus day and rotation period respectively) – for the reflection one data is seen as a period and the other is seen as distance

Venus is the sender and Mars is the receiver

Data no. (ii) tells similar meaning- Venus velocity is a rate between 2 data of Saturn-

Venus (35 km/s) moves in (10747 seconds) a distance = 378675 km (Saturn Circumference) - Saturn is the sender and Venus is the receiver   

Data no. (iii) tells similar meaning- Venus velocity is a rate between 2 data of Pluto-

Venus (35 km/s) moves in (2390 seconds) a distance x1.0725 = 90560 km (Pluto orbital period 90560 days)- Pluto is the sender and Venus is the receiver  (where 2390 km = Pluto diameter)  

The data proves the ideas clearly-

Notice the rate 1.0725 is found by Lorentz length contraction effect.

(6)

There’s a perpendicularity between Saturn and Venus where 26.7 degrees (Saturn axial tilt) is seen at Venus as 26.7 +90 = 116.75 days (Venus day period)

Notice

(a) (9.5)^2 = 90 but 9.7 km/s (Saturn velocity) is different from 9.5 with (2%)

(b)  26.7 deg (Saturn axial tilt) +90 deg = 116.75 degrees but 116.75 x 0.8 = 93.4 deg (but 90 deg + 3.4 deg Venus orbital inclination)

© 93.4 deg x 1.9 deg (Mars orbital inclination) = 177.4 deg (Venus Axial Tilt)

(d) 177.4 deg  (Venus Axial Tilt) + 3.4 deg (Venus orbital inclination) = 180.8 deg = 180 +0.8 deg (Uranus orbital inclination)

The data tells there’s a perpendicularity between Saturn and Venus and between Saturn and Uranus for that the angle (180 degrees) is found between Uranus and Venus and by this angle (180 degree) Venus axial tilt and orbital inclination are created depends on Uranus orbital inclination (0.8)

(7)

Please note the reflection of energy in Saturn creates two equal distances around Saturn where Saturn orbital distance = Saturn Uranus distance=1433 million km  and also- this reflection creates 2 equal inclinations for Saturn by that Saturn orbital inclination is 2.5 degrees but Uranus orbital distance = 2 Saturn orbital distance and by effect of Uranus orbital inclination 0.8 the result will be (2/0.8) =2.5

This data tells the reflection of energy in Saturn is more complex than the reflection of energy from Venus to Mars because of Neptune negative effect on the energy- the paper provides deep discussion to explain Neptune negative effect on the solar system energy and motion.

(8)

Please note- the unified wave (the gravitational wave) moves by speed of light depends on the rate of time (one second of the sun clock =1461 seconds of the Earth clock)- where the wave moves by speed of light in Venus orbit- but the light production needs the value (C^2 = squared speed of light), the reflection of energy from Venus to Mars causes to square the velocity and produce the value (C^2 = squared speed of light), but this value (C^2) is created depending on the square rate of time which is (1 =1461^2) means (1=2134521) – means this rate is used for Mars data but the first rate (1=1461) is used for Venus data

For that

2134521 km                                       = 100 x 21345 km (Mars Circumference) – and

38025 km (Venus Circumference)      = 2.6 x 1461

378675 km (Saturn Circumference)    = 260 x 1461

260 =2.6 x 100      One more time the data shows similar behavior

THE MAIN PROOF

The solar system data shows general reflection is happened two times – let’s see that in details

(Venus reflection)  

By this reflection of energy Venus orbital circumference 680 million km will be used as Mars orbital period 687 days and it defines Jupiter orbital period (4331 days = 2π x 687 days) and also Saturn orbital period (10747 days = 4π x 687 days x (1/0.8)) where Uranus orbital inclination (0.8 degrees) creates effect on Saturn data

(Saturn reflection)  

The reflection is done by Jupiter to Uranus, by that, Jupiter orbital circumference 4900 million km will be used as Uranus orbital period 30589 days where (30589 days = 4900 days x 2π and Neptune orbital period 59800 days = 4900 days x 4π and Pluto orbital period 90560 days = 4900 days x 6π

Please note

The energy reflection at Venus passes above the Earth to Mars- where the Earth moon suffers from the length contraction effect and its motion distance daily is 2.4 mkm = 2.574 mkm (The Earth motion distance daily) / 1.0725

Similar to that 

The energy reflection at Jupiter passes above Saturn to Uranus – Where

Saturn suffers from the length contraction effect because

1433 million km (Saturn orbital distance) x 1.0725 = 2 x 778.6 million km (Jupiter orbital distance) 

Please note- the Earth moon daily displacement is 88000 km and during 10747 days the displacements total be 940 million km = The Earth orbital circumference

Where 10747 days = Saturn orbital period

Notice

We understand that the light beam production needs the unified wave to be reflected two times only in the solar system- in the first reflection the unified wave (205.8 km/s) will be accelerated to be equal the speed of light (300000 km/s) and in the second reflection the speed of light will be squared to produce the value (C^2 the squared speed of light) by which the light beam will be created- means – the light production process needs tow reflections only and we know the unified wave is reflected in the solar system three times – because – of Neptune negative effect on Pluto energy where Neptune negative effect causes a frustration for the unified wave reflection by Pluto and that forced Saturn to reflect the unified wave one more time to perform the job mentioned by Pluto reflection of energy- by that Pluto and Saturn reflections create effect of one reflection only and Venus reflection creates the final reflection to produce the value (C^2 the squared speed of light) by which the light beam can be created-

Shortly- while the unified wave is reflected in the solar system three times the real effect is done by two reflections only and for that the data shows general reflection in two times only as seen in the previous data and its discussion- means- the data refers to the real final effect of the energy reflections and not to each procedure of this reflection- shortly- if we remove Neptune from the solar system that will cause the reflections to be two reflections only because Neptune negative effect will be removed – Neptune negative effect will be discussed in point no. (**)    

(11thItem) What’s The Negative Effect Done By Neptune Motion On The Gravitational Waves? 

The story with proves is found in point no. (3) of this paper- let’s summarize it here

(1)

Mars original orbit was between Mercury and Venus and Pluto was The Mercury moon revolves around Mercury- some collision is done in the inner planets- as a result Mars had migrated from its original orbit to its current one– in its motion Mars had collided with Venus and then with the Earth and Mars is the planet caused The Earth moon creation (Giant impact hypothesis is wrong)  

Pluto was the Mercury moon and its size was equal Mercury size- Pluto also had migrated because of the same collision- Pluto had migrated to the end point in the solar system (Pluto orbital distance 5906 million km) -in that time– Neptune occupied this orbit– means Neptune original orbital distance was 5906 million km-

Shortly-

Pluto had collided with Neptune strongly and Pluto pushed Neptune out of its orbit and Pluto had occupied Neptune orbit, even Pluto put Neptune out of Pluto motion area– that’s why Pluto eccentricity distance = Pluto Neptune distance=1410 million km (Mars Migration theory is proved in point no. **)

(2)

We know the light created all planets orbits before to create any planet- here- we have a dilemma- because – Pluto pushed Neptune out of Neptune orbit and also out of all created orbits (the train be out of all railways) and Neptune had no orbit to revolve around the sun.

(3)

As we have discussed- the planet moves and produces energy (½ mv^2) and this energy is stored in the space in moving waves –

Because all planets revolve around the sun in the same direction all planets motions energies waves move toward Pluto- and in Pluto orbit all waves be unified together into one unified wave moves by 205.8 km/s  

(4)

Pluto reflected the unified wave (205.8 km/s) to be sent to Venus – Now – Pluto sends great energy toward Venus – the energy moves from Pluto to Neptune and then Neptune should send the energy to Uranus – BUT

Simply Neptune got the energy for itself and didn’t send the energy to Uranus- why? because Neptune used the energy to build its current orbit – by this energy Neptune orbit is created and Neptune orbit is very new orbit relative to all planets orbits- also Neptune orbit is created by Neptune and not by the light beam as the other orbits

(5)

Shortly Neptune captured the energy sent from Pluto, and captured Pluto itself forces it to moves with Neptune rotation period (Pluto had no rotation period), as a result, Jupiter tried to release Pluto from Neptune but Neptune captured Jupiter itself and now Neptune, Jupiter and Pluto all of them move by Neptune rotation period and the two planets follow Neptune motion

(6)

Uranus tried to find solution- for that – Uranus created an interaction with the Earth planet- by this interaction a new planet is created which is Saturn   

Uranus created Saturn for the war with Neptune- and now Saturn goes to fight with Neptune- first victory is that (Saturn set Jupiter free of Neptune capture and Jupiter got a new rotation period) and the second victory is (Saturn set Pluto free of Neptune capture and Pluto got a new rotation period) and the third victory (Saturn release the energy from Neptune) BUT

Neptune build its orbit by this energy and the rest is around (0.5%) only!

In details – Pluto sent the energy in a moving wave its velocity equal (205.8 km/s)^2 But Saturn got from Neptune a moving wave its velocity only (205.8 km/s) (without square) - The rate around (0.5%) only –but why did Saturn get this small energy at all? We should remember

The unified wave (205.8 km/s) contains all planets motions energies- if Saturn gets this wave, Saturn can reflect this wave one more time to produce the required value (205.8)^2 and send it to Venus to complete the process safely-

But if Saturn doesn’t get this unified wave (205.8 km/s) Saturn will be forced to gather the planets motions energies to create this unified wave   

Means- Saturn got the small energy (0.5 %) from Neptune But this small energy can be working to complete the process and if this energy is lost the process can not be completed that’s why this small amount of energy is very important and useful

Shortly

The situation is finished as following -  

Neptune built its orbit from Pluto energy and the rest energy (0.5%) is small amount of energy but very useful and Saturn got this energy from Neptune and the energy was in unified wave its velocity (205.8km/s) and Saturn reflected this wave toward Venus and the wave reached Venus moves by speed of light as a result for Saturn reflection by that the process to produce the sun rays can be completed safely and the planets (Pluto and Jupiter) are free now from Neptune capture- everything is so good now    

But-

Neptune tells about the revenge! Spite Neptune built its orbit from Pluto energy but still the devil dreams by the revenge

What can Neptune do to cause more problems for the sun creation?  

The unified wave reaches Venus moving by speed of light (300000 km/s), and now Neptune will cause to decrease the velocity by (1% one percent only)

Why? because the light beam is created by quantum and if the speed is less 1% that tells No Light Beam Can Be Created-

But what would happen by this speed?

The speed 99% of speed of light (297000 km/s) is high speed and causes Lorentz transformation- specially- it causes Lorentz length contraction effect with rate 7.1

Why is this very bad thing?

Because the motion energy is produced by the planets motions and these energies should be gathered into one point to be sufficient to produce the light beam- now the length contraction effect will cause difficulties to gather the planets energies because the planets energies are found in distances- here the distances will be shorter and that will create great difficulties to gather all energies in one point

Shortly- Neptune contraction effect caused to scatter the motion energy in the space and by that the motion energy will never be able to produce the sun rays – the devil works-

Now – we follow this battle from near point- how can Neptune decrease the unified wave velocity with one percent? 

Neptune causes Saturn rotation period to be 10.7 hours- this is Neptune method to decrease the wave motion velocity – how?

Saturn circumference 378675 km and Saturn velocity 9.7 km/s means Saturn needs 10.84 hours to rotate around its axis a complete rotation (360 degrees) - but the period 10.7 h causes Saturn to rotate only (355 degrees)- means- for each rotation period Saturn needs 518 seconds to compete its rotation and that means there’s a distance of Saturn circumference (5040 km) is still need to be passed while the rotation period is finished- this distance Neptune uses to decrease the wave velocity – because

Saturn velocity = 1.8 Neptune velocity and 5040 km = 1.8 x 3000 km 

The speed of light is 300000 km/s and the discount distance is 3000 km and the rest is 297000 km (99% speed of light)

Shortly- Neptune effect on Saturn motion causes to decrease the wave velocity with 1% and creates the speed 99% C by which the length contraction effect is created and by that the planets motions energies are scattered in the space –

But - Saturn still try to help us- by that-

Saturn created a bridge between Uranus and Pluto (above Neptune) and on this bridge the sun rate of time is created and by that the planets motions energies can be gathered together based on defined periods and cycles – by this rate of time the sun rays is created - but –because Saturn is busy in the rate of time creation- the battle leader now is Jupiter- by that Jupiter defines the sun position in the sky and Jupiter defines the sun diameter- the story is proved in details in point no. (3) because the planets data tell this story so clearly  

(12th Item) Can The Planets Motions Use Different Rates Of Time? 

The solar system is created from one light beam energy- means- the solar planets matters and their distances are created from one energy and this one energy is provided by one light beam and this light beam moves by speed = 1.16 million km per second- the light built the solar system starting its motion from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each another- after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light) means the light beam started the motion in Mercury orbit with speed 1.16 million km per second and reached to Pluto orbit with speed 300000 km/s

In Pluto orbit -

The light could Not move any further to build any more orbits because any additional space creation will consume more energy and that will decrease the light speed to be less than 300000 km/s (the known speed of light) – and – No known light moves by speed less than 300000 km/s – means- the light had no energy to move any further after Pluto orbit- for that- the light returns to its origin point (Mercury orbit) for that the light is reflected with speed (300000 km/s) from Pluto orbit to Mercury orbit passing through the built orbits – no energy is required in this motion for that the speed of light in Mercury orbit is 300000 km/s

By this energy (the light beam its speed 300000 km/s) all planets are created- but before the planets creation a coherence of light is occurred between the light 300000 km/s and the light 1.16 million km per second- this coherence of light is discussed in the paper definitions in details

After the coherence of light the planets are created by the light energy  (300000 km/s)

I- The Solar Planets Creation

Now

We can imagine that the energy of the original light beam (1.16 million km per second) is consumed to create the sea of water and the rest energy is one wave moves through this sea of water where this wave moves by speed of light (300000 km/s)

Means

The solar system is one energy (wave) moves by speed of light (C=300000 km/s)

And

The solar system needed to create a stationary point moves by zero velocity 

We understand (It’s impossible to find this stationary point) -BECAUSE

The solar system is similar to this wave of water or to the moving sea water and every thing is moving in it – NO stationary point can be found- for that the solar system has to create this stationary point –

The stationary point creation needs two procedures – let’s refer to them here

1st Procedure

The wave its velocity 300000 km/s revolves around a point in space (any point in space), the revolution motion creates 2 equal velocities on the revolution both sides - the two velocities are equal in value and opposite in direction- their total be Zero-shortly- the revolution motion creates A Stationary Point in the center of the revolution. 

2nd Procedure

The previous idea is correct- but –the velocity 300000 km/s is a huge one and to decrease it to Zero velocity this is a complex process– for that- the wave (300000 km/s) created small waves with low velocities to use them as steps to decrease the velocity to Zero- the small waves are The Planets- (The planet is a small wave moves by low velocity relative to the original wave its velocity 300000 km/s) 

Why Are These Small Waves Required?

Because the velocity 300000 km/s is decreased to Zero by using these small waves and their low velocities- the low velocities are used as steps to decrease the unified wave velocity (300000 km/s) to be (Zero)- this process decreases the velocity gradually from 300000 km/s to Zero depending on these small waves velocities (the planets velocities)  

Means- the planets are created for this process to decrease the wave velocity from 300000 km/s to Zero- and The Planet Is A Small Wave Moves By Low Velocity 

Shortly – the solar system has one complete system of velocities, Starting from Zero to 300000 km/s where the planets velocities are the steps between the two velocities –

The Proof

The unified wave velocity (205.8 km/s) proves this fact because

300000 = (205.8)^2 x 7.1

We know 7.1 is Lorentz length contraction effect produced by speed 99% of speed of light-

Shortly- the unified wave velocity (205.8 km/s) is defined as a function in the speed of light (300000 km/s) and that explains why the reflection of the wave accelerate the wave velocity to move by speed of light and not to move by any less velocity – simply-because the unified wave velocity is created as a function in the speed of light- and this unified wave velocity = the planets velocities total that tells the planets velocities definition depends on the speed of light

Shortly

By the wave revolution the stationary point is created in the revolution center and this point will be the sun (its velocity is 1 km/s=zero approximately) and the moving wave created the solar planets as small waves move by small velocities (or as geometrical points carried by the wave motion) -As a result – a relative motion is created between the moving wave (300000 km/s) and the sun point of space (1km/s)

II- The Solar Planets Definition

The planets are geometrical points created on the same one light beam (one wave of energy)- means- the light beam is similar to the sea of water and the planets are similar to ships sail on this sea of water- means- the planets motions depend on this light beam motion and by that the motion by speed of light (C=300000 km/s) is the motor by which the planets move- means- all planets motions depend on the light beam motion by speed of light (C=300000 km/s) –

Means- the planets are similar to carriages in one train and the light beam is the engine of this train- the light moves carrying all planets with it  

BUT if the planets are geometrical points found on one light beam and these points move by this light motion how can these planets to move by low velocities?

Because the planets motions use different rates of time –

for example – one second of the light clock = 6330 seconds of Mercury clock by that Mercury moves in (6330 s) a distance 300000 km which is passed by the light motion in one second.

(13th Item)  The Planets Motions Use Different Rates Of Time (Deep Analysis)   

  1. Preface (Proved Facts)
  2. The Rate Of Time Use Reason (The Solar System Creation Theory)
  3. The Planet Creation and Motion Description
  4. The Difficulty To Prove The Rate Of Time Use
  5. The Rate Of Time Importance And Creation
  6. The Energy Reflection Effect On The Rates Of Time 

(The Energy Reflection is explained and proved in Point No. 6)

  • The Solar System Main Rates Of Time
  • The Solar System Motion Depends on Mercury Clock
  • The Time Creation In The Solar System
  • The Earth Motion Effect On The Planets Motions Rates Of Time
  • The Rate Of Time Between Mercury And The Earth
  • The Rate Of Time Between Mercury And The Sun
  • The Rate Of Time Between The Sun And The Planets
  • The Rate Of Time Between The Sun And The Earth
  • Mercury behaves in place of the sun and The Earth in place of the planets
  • The Rate Of Time Of Saturn
  • The Rate Of Time Of Mars
  •  The Solar System Motion During 24 Hours Of Mercury Clock
  •  The Rate of time (1=1461)

20 The Used Rate Of Time For The Sun Rays Production

20-1 Preface

20-2 The Light Beam Production Method

20-3 The Light Beam Is Produced From (C^2)

20-4 The Earth Moon Motion Effect On The Sun Rays Production

20-5 The Solar System Motion Depends on Mercury Clock

20- 6 Mercury Day Period Problem

20-7 The Gravitational Waves move by speed of light (how)?

20-8   The Energy Reflection Effect

20-9   The rate (1=365.25) (the proves)

20-10 The Used Rate Of Time For The Light Beam Production

20-11 The Light Beam Production Process

21- 12 The Sun Rays Production Process Summary         

(Item no. 1) Preface (Proved Facts)

(FIRST FACT) ONE WAVE REVOLVES AROUND THE SUN

Let’s remember this idea

(1)

Planet motion energy creates waves in the space-

The space is similar to the sea of water and planet motion creates waves in the space as fish motion creates waves in the sea- let’s see the picture accurately,

We observe one swimming fish in the sea- the fish hits the sea water by its tail and pushes some water and by that the fish can swim and move- we conclude the water moves by a velocity Equal the fish velocity because of the reaction force.

Similar to that-

Mercury motion energy creates waves in the space- the wave velocity equal Mercury velocity (47.4 km/s) because of the reaction force- means – all planets motions energies create waves in the space and these waves move by these planets velocities- now these waves are similar to the water waves they move far from the source and can be reflected- now- because the planets revolve around the sun in the same one direction, the planets motions energies waves move in one direction toward Pluto (Perpendicular on the revolution direction) – and these waves are unified together in Pluto orbit and by that one unified wave is produced moves by 176 km/s (the 9 planets velocities total)-

And this wave (176 km/s) is reflected from Pluto to Venus- and finally

There’s one wave revolves around The Sun its velocity (205.8 km/s)

(because the energy is stored finally in the Earth moon orbit that necessitates to add the moon velocity to the total 176+29.8 = 205.8 km/s)

(2)

I claim these waves are the gravitational waves, the scientists called them wrongly (gravitational) supposing that they are created by the sun gravitational field- I proved that (The sun does NOT create a gravitational field) and these waves are produced by the planets motions energies.

(Notice. The reflection of energy will be explained here)

Shortly, this fact tells one wave revolves around the Sun its velocity is 205.8 km/s

Means-while we see the planets revolution, this wave revolves also but we don’t see it

(SECOND FACT) THE RATE OF TIME NECESSITY

We know, There’s One Wave In The Space Revolves Around The Sun Its Velocity= 205.8 km/s 

The Sun motion velocity is (1km/s=zero approximately), means, The sun is stationary point- here we have a relative motion between 2 velocities

The wave velocity (205.8 km/s) and the sun velocity (Zero approximately)-

This relative motion is the solar system design cornerstone because

In this relative motion the planet motion energy is stored-   

Let’s explain that

Planet motion energy is stored in the space in waves form, and this energy created the one wave revolves around the sun its velocity (205.8 km/s) but

The planets still move and produce motions energies- means- more energy need to be stored- for that- the rate of time is used to increase the capacity of the energy storing.

Let’s use example

One hour of Mercury clock = 24 hours of Pluto clock-

This rate means –

While Mercury moves in a solar day (24 hours) a distance 4.09 million km, Pluto moves in this same period a distance= 9.7 million km, because, (24 hours) of Mercury clock = 24 solar days of Pluto clock- that shows in the same period Pluto moves a distance longer than double Mercury motion distance 

BUT

All These Motions Energies Are Transformed Into Waves In The Space- And All Of Them Are Parts In The One Unified Wave- Means- Pluto Motion Contributes In The One Unified Wave By Energy More Than Mercury Motion Energy- that increase the capacity to store the energy

That explains how the rate of time using effect on the planets motions

A Question - Why Should The Energy Be Accumulated?

Because, we need to use the energy and the less amount energy can’t be useful and we need massive amount of energy to use it- 

Shortly, the sun rays is created from this stored energy and the light beam production process need massive energy, and the planet motion energy is very small amount of energy can’t produce any light beam, for that, the planets motions energies have to be stored and accumulated to create the required quantum of energy which is sufficient to produce the light beam.

NOTICE

Here there are 2 facts we need to consider

First,

There’s a relative motion between the unified wave (205.8 km/s) and the sun point (1 km/s), All planets motions energies are put in this relative motion- by that, the planets be similar to fingers and this relative motion is the hand of these fingers- No planet motion energy is used out of this relative motion-

Second,

Now the relative motion has 2 velocities, the unified wave (205.8 km/s) and the sun point (1 km/s), and the planets still move and add more motion energies – this more motion energies increase the different velocity 205.8 km/s gradually till this velocity be equal speed of light 300000 km/s - The light beam is produced based on this high velocity

Let’s remember the proof

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

The article tells- the gravitational waves can move by high velocity and can produce A Light Beam– means- the different velocity should b increased from 205.8 km/s to speed of light (300000 km/s) to produce the light beam

(notice, I have proved the gravitational waves are produced by the planets motions energies and not by the sun gravitational field)

Notice

Planet Creation details can help greatly because it gives another vision for this same fact- it’s discussed in item (no.3)- 

(THIRD FACT) There Are Relativistic Effects In The Solar System

The relativistic effects are proved because they effect on the planets data – means- because the solar system have relativistic effects, the planets data are effected by these relativistic effects 

The relativistic effects prove there’s a high velocity motion found in the solar system, by that, the gravitational waves move by speed of light is a fact proved by the relativistic effects found in the solar system –

Please note- the relativistic effects in the solar system depends on the rate (7.1) while the planets velocities analysis shows this same rate (7.1) proves the high velocity motion is a real motion in the solar system

The relativistic effects are proved in point No. (5)

(FOURTH FACT) The Energy Is Reflected In The Solar System

We agreed, the planets motions energies create waves in the space and these waves move toward Pluto, and these waves are unified together into one unified wave its velocity= 205.8 km/s (The planets velocities total) and then the wave is reflected toward Venus- in fact- the unified wave is reflected three times in the solar system   

First time, the wave is reflected from Pluto toward Venus – Means, the wave is reflected from Pluto to Neptune then to Uranus to Saturn to Jupiter to Venus

But

Second time, in Saturn, the wave is reflected inside Saturn body one more time, by that Saturn body works as mirrors and the energy is reflected between them- then the energy left Saturn moves in its original direction toward Venus

Third time, Venus reflects the energy toward Mars, and the energy finally is sorted in the Earth moon orbit between Venus and Mars   

The reflection of energy is very important because of many reasons we should study but here I refer to one reason only

The reflection of energy causes to reflect the planets data-

what’s used as (A) before the reflection will be used as (1/A) after the reflection-

and-  

what’s used as (a period of time) before the reflection will be used as (a distance) after the reflection – and vice versa

these effects on the data is very important because it explains why the planets data is reflected on one another- and that also proves the gravitational waves are produced by the planets motions energies and not by a gravitational field because the data is belonged to the planets–and the reflection is done by the waves–here the gravitational field has no any effect.

the reflection of energy is proved by strong proves in point no. (6)

(Item no. 2) The Rate Of Time Use Reason (The Solar System Creation Theory)

(1)

The solar system is created from one energy- in details

The planets matters and their distances are created from one energy –this energy is provided by one light beam– and this light beam moves by a velocity 1.16 million km per second- the energy is consumed in the space and time creation- the energy consumption caused to decrease the light velocity and the rest energy is one light beam its velocity 300000 km/s (the known speed of light) 

The space and time creation is done by the equation (1.16/0.3) x 2π = 24.3

The equation tells, the space is created in curved lines (2π) and the time is created based on the solar day (24 hours) (later the reason will be explained)

Notice-the space is created from the energy (1.16 million km/ second) but the planets are created from the energy (300000 km/s)- the planets are created after the space.  

We realize this is the same one light beam and the two velocities are found as a result for the energy consumption in the space creation.

Shortly the space is created by the energy (1.16 mkm/s) but in this space there’s one wave moves by 300000 km/s from this wave the planets are created 

(2)

Shortly- the planets matters and their distances are created from One Light Beam Energy- The planets are geometrical points found on this one light beam- by that the planets are similar to knots (or nodes) on ONE rope or cable.  

The planets are carried on this light beam and move by this light beam motion

By that- The Planets Are Similar To Carriages In One Train- and the light beam motion is this train engine- the light moves carrying all planets with it- 

Light moves one motion and passes one distance in one period of time- The planets have to move this same motion and pass this same distance in this same period of time- BUT

The planets velocities are less than light velocity for that the planets use rates of time for their motions–by the rates of time- the planets move equal distances in equal periods of time and this distance equal also the light motion distance.

For example-

Mercury velocity = 1.6 the Earth velocity- that means – one hour of Mercury clock = 1.6 hours of the Earth clock- Why??

Because Mercury and the Earth are carried by the same one light beam motion- the light moves one motion and passes one distance in one period of time- by that Mercury and the Earth have to move this same motion and to pass this same distance in this same period of time- but the two planets velocities are different- for that- the planets use different rates of time based on their velocities rates and by that the planets move equal distances in the same period of time – that’s the reason to use the rates of time-

(3)

The Velocity 1.16 Million Km Per Second (The Proves)

(first proof) Planet Velocity Analysis  

I have discovered a rule tells (v1v2=322) (my fifth equation)– let’s prove it

Data

322 = 47.4 km/s (Mercury velocity)  x 6.8 km/s  (Uranus velocity)                         

322 = 35 km/s  (Venus velocity) x 4.7 km/s (Pluto velocity) x 2             

322 = 29.8 km/s (the Earth velocity) x 5.4 km/s (Neptune velocities) x 2      

322 = 24.1 km/s (Mars velocity) x 13.1 km/s (Jupiter velocity)               

322 = (17.9 km/s)^2 (Ceres velocity) (Max error 2%)

Discussion

The data tells the planets velocities are created complementary one another and based on this constant (322)- but why the constant equal =322? 

1160000 seconds = 3600 x 322 hours – means

Mercury (47.4km/s) moves a distance 1160000 km in a period (6.8 hours) and Uranus (6.8 km/s) moves a distance 1160000 km in a period (47.4 hours) – that proves the constant 322 depends on the velocity 1160000 km/s–means- All planets velocities are defined based on this velocity 1160000 km/s which proves this velocity is a fact

Notice

(The inner planets orbital inclinations are defined by the rule (v1/v2), for example, Mercury orbital inclination 7 deg = Mercury velocity 47.4/ Uranus velocity 6.8 that proves the effect of the rule (v1v2=322) on the planet motion)

(Second proof) The planets orbital circumferences total

100733 million km = 86400 seconds x 1160000 km/s

(100733 million km= The Planets Orbital Circumferences Total)

Means- the velocity 1160000 km/s passes per solar day (86400 s) a distance =100733 million km= The Planets Orbital Circumferences Total 

Shortly- the planets orbits are defined based on this velocity-

Notice / the planets motions distances total in 1461 solar days = 25920 million km = the distance is passed by light known speed (300000 km/s) in one solar day (86400s)

(1461 days = the Earth cycle = 365 +365 +365 +366)

(the distances total=the 9 planets motions distance + the Earth moon motion distance)

(Third proof) The Planets Distances Creation

The planets distances are created depending on this velocity (1160000 km/s), let’s prove that,

778.6 million km (Jupiter orbital distance) = 1160000 km/s x 671 seconds

721 million km (Jupiter Mercury distance) = 1160000 km/s x 629 seconds

629 million km (Jupiter Earth distance)      = 1160000 km/s x 551 seconds

4900 million km (Jupiter Orbital Circumference)= 1160000 km/s x 2094 seconds x 2

5906 million km (Pluto Orbital Distance)= 1160000 km/s x 5127 seconds

Where

671 million km = Jupiter Venus distance

551 million km = Jupiter Mars distance

5127 million km = Jupiter Pluto distance

Shortly, the light beam its velocity 1160000 km/s uses the distances as periods of time to create more distances based on one another– for that- the distances are created as one network and one group- Jupiter distances proves this fact clearly-  

We remember also the creation equation (1.16/0.3) x 2π = 24.3 by which the space and time are created- the equation tells- all distances are created in curves (2π) and all periods are created based on the solar day (24 hours)

This data tries to prove the velocity 1.16 million km/s is a fact and my paper provides more proves for this fact-

(Item no. 3) The Planet Creation and Motion Description

(i)

Before the solar planets creation

The solar system energy was found in one wave moves by speed of light 300000 km/s- Means-

The solar system is one wave moves by speed of light (300000 km/s)

Now

The Solar System needs To Create A Stationary Point Its velocity Zero relative to the moving wave its velocity is 300000 km/s

This is the basic information in the solar system design-

The solar system needs to create a stationary point relative to the wave motion- by that – two velocities will be found which are (v1= the wave its velocity 300000 km/s) and (v2= Zero= the stationary point relative to the wave motion)–these two velocities produce a relative motion with different velocity 300000 km/s– this relative motion is the solar system design cornerstone.

Notice– The solar system is carried by the light beam motion, NO stationary point can be found here – it’s similar to a ship on this sea water- Nothing can stop- because the motion is done forcedly by the sea water –

The stationary point will be similar to the whirlpool (vortex) on the sea page- 

But

The solar system needs to create this stationary point

Now – let’s try to create this stationary point in following

The solar system uses two procedures to do that,  

(ii)

The first procedure

The wave its velocity 300000 km/s revolves around a point in space (any point in space), the revolution motion creates 2 equal velocities on both sides of the revolution- the two velocities are equal in value and opposite in direction- their total be equal Zero-means- the revolution motion creates a stationary point in the center of the revolution. 

The second procedure

The previous idea is correct- but –the velocity 300000 km/s is a huge one and to decrease it to Zero velocity this is a complex process– for that- the wave (300000 km/s) created small waves with low velocities to use them as steps to decrease the velocity to Zero- the small waves are The Planets- (The planet is a small wave moves by low velocity relative to the original wave its velocity 300000 km/s) 

Why Are These Small Waves Required?

Because the velocity 300000 km/s is decreased to Zero by using these small waves and their low velocities- the low velocities are used as steps to decrease the unified wave velocity (300000 km/s) to be (Zero)- this process decreases the velocity gradually from 300000 km/s to Zero depending on these small waves velocities (the planets velocities)  

Means- the planets are created for this process to decrease the wave velocity from 300000 km/s to Zero- and The Planet Is A Small Wave Moves By Low Velocity  

Shortly – the solar system has one complete system of velocities, Starting from Zero to 300000 km/s where the planets velocities are the steps between the two velocities – let’s prove that here

(iii)

300000 km = 7.1 x (205.8)^2 where

7.1 is Lorentz length contraction effect for velocity 297000 km/s (99% of speed of light)

205.8 km/s = the 9 planets velocities total (176 km/s) + the Earth moon velocity

(The moon velocity =29.8 km/s = the Earth velocity because they revolve together)

Why does the data use the squared value (205.8)^2?

We know the answer- but - Let’s remember it

The planets are geometrical points on the same light beam and move with its motion- for that- the planets velocities rates creates rates of time– for example-  Mercury velocity = 1.6 the Earth velocity- that means – one hour of Mercury clock = 1.6 hours of the Earth clock- Why??

Because Mercury and the Earth are carried by the same one light beam- the light moves one motion and passes one distance in one period of time- by that Mercury and the Earth have to move this same motion and to pass this same distance in this same period of time- but the two planets velocities are different- for that- the planets use different rates of time based on their velocities rates and by that the planets move equal distances in the same period of time –

Now- the velocity (205.8 km/s) move relative to the stationary point (Zero) and creates a rate of time (1 second = 205.8 seconds) –

(one second of the unified wave clock = 205.8 seconds of the stationary point clock)

But – the energy is reflected in the solar system (I prove that in point no.6),

The energy reflection reflects the players – means

(one second of the stationary point clock = 205.8 seconds of the unified wave clock)

The stationary point will be THE SUN – by that

(one second of the sun clock = 205.8 seconds of the unified wave clock) – means

(one second of the sun clock = 205.8 seconds of any planet clock) –

Now during one second of the sun clock, the wave clock needs 205.8 seconds while the wave moves by a velocity 205.8 km/s- means –

During one second of the sun clock, the wave moves 42253 km = 300000 km /7.1

That creates the different velocity 300000 km/s between the sun motion and the wave motion-

Notice 1

The wave (205.8 km/s) moves during 1461 seconds a distance = 300000 km, and we know the Earth cycle (1461 days = 365 +365 +365 +366)

That tells, the speed of light (300000 km/s) is performed by the rate of time and that causes to create the Earth cycle-   

Notice 2

Planet velocity is created by the rate of time- means- if no rate of time can be used – No planet velocity can be created – instead- all motions will be only by speed of light (300000 km/s)- the planet can create a small velocity because it can use rate of time

We realize that clearly because

The planets motions depend on the light motion- by that – the motion is done by One Motor only which moves by speed of light (300000 km/s), the planets can only move by speed of light or create a rate of time for their smaller velocities - No more options are provided  (CONT)    

Gerges Francis Tawdrous +201022532292

Physics Department-  Physics & Mathematics  Faculty 

Peoples’ Friendship university of Russia – Moscow   (2010-2013)

Curriculum Vitae                  https://www.academia.edu/s/b88b0ecb7c

E-mail                            mrwaheid@gmail.com, mrwaheid1@yahoo.com

                                      gergesgerges@yandex.ru                   

ORCID                           https://orcid.org/0000-0002-1041-7147

Facebook                        https://www.facebook.com/gergis.tawadrous

VK                                 https://vk.com/id696655587

Tumblr                           https://www.tumblr.com/blog/itsgerges 

Researcherid                   https://publons.com/researcher/3510834/gerges-tawadrous/

Google                                https://scholar.google.com/citations?user=2Y4ZdTUAAAAJ&hl=en

Livejournal                     https://gerges2022.livejournal.com/profile

Pocket                                                                     https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar

PUBLICATIONS

box                                 https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv

Academia                       https://rudn.academia.edu/GergesTawadrous

List of publications         http://vixra.org/author/gerges_francis_tawdrous

Slideshare                            https://www.slideshare.net/Gergesfrancis

Text
itsgerges
itsgerges


Best Regards

The Gravitational Waves Reflection In The Solar System (Analytical Study)

or

or

or

Abstract

Paper question

If The Gravitational Waves Are Reflected In The Solar System- How Can We Discover Or Prove That? And What’s The Useful Result Of This Reflection? 

Paper hypothesis

The Gravitational Waves Are Reflected In The Solar System- And This Reflection Causes To Square The Wave Velocity- Means- The Wave Velocity After The Reflection Be Squared The Wave Velocity Before The Reflection- 

The hypothesis explanation

  1. Preface
  2. The Gravitational Waves Source And Motion Trajectory
  3. Can The Gravitational Waves Move By Speed Of Light?
  4. Can A Light Beam Be Created By The Gravitational Waves Motion?
  5. The Sun Rays Production Mechanism
  6. The Sun Rays Production Details
  7. If the gravitational wave moves by a velocity 205.8 km/s how can this wave velocity be accelerated to be equal the speed of light (300000 km/s)?
  8. The Gravitational Waves Reflection Effects On The Motion Data
  9. The Gravitational Waves Reflection Proves (General Proves) 
  10. Venus Reflected The Gravitational Wave Toward Mars (The 3rd reflection)
  11. What’s The Negative Effect Done By Neptune Motion On The Gravitational Waves? 
  12. Can The Planets Motions Use Different Rates Of Time? 
  13. The Planets Motions Use Different Rates Of Time (Deep Analysis)   

Notice/ The Paper Definitions Are In Page No. (109) –

The Definitions Are

  1. (mass gravity definition)
  2. (The Sun Gravitational Field Theory Refutation)
  3. (the space nature)
  4. (the gravitational waves- the source and motion trajectory)  
  5. (planet velocity definition)
  6. (the data distribution in the solar system)
  7. (the star is found depending on its planets motions)
  8. (the sun is created after all planets creation and motion)
  9. (Planet Motion definition)
  10. (Planet Diameter Is Created By A Mathematical Equation)
  11. (Planet Mass definition)
  12. (The Matter Definition)
  13. (Can The Light Move Into The Past?)
  14. (Why Can Not The Matter Move Into The Past?)
  15. (Can A Mystery Be Found In The Solar System Creation?)

Paper Hypothesis Explanation And Discussion

(1st Item) Preface

The Sun Gravitational Field Theory Refutation

The Sun Doesn’t Create A Gravitational Field Nor Has Massive Gravity – there are 3 proves for this fact

(1st Proof)

The sun rotation period is (25.4 days– at equator) and (34.4 days – at pole) that shows the sun has no massive gravity nor even ordinary gravity equal any planet gravity otherwise the sun would rotate around its axis in one period of time- 

(2nd Proof)

No Planet Moves By The Sun Gravity – Newton is wrong- because- the planet moves by the force caused its creation- means- the planet creation and motion is done by one force only- because- if two forces have effects on the same one planet this planet would be broken- now- suppose the planet is created (by any force) and the sun gravity attracted this planets and forced it to revolve around the sun by the sun mass massive gravity (as Newton imagined) that would force the planet to move against its inner creation and will cause this planet to be broken- this is similar to a human is forced to walk on his hands in place of his legs and when this human refuses to do that (they told him we can force you by our power) for that this human walk on his hands forcedly and later this human is dead by this motion- shortly- the planet is NOT broken by its motion because the planet creation force is the force causes this planet motion- it’s one force caused the planet creation and motion-

(3rd Proof)

The mass gravity force can NOT cause any motion- the mass gravity creates a bond between two masses- (the Earth and the moon are bond by the mass gravity)- by that they are similar to a lorry and its trailer – if the lorry moves the trailer will move with the lorry- but the mass gravity can NOT cause any motion- why? suppose the moon moves by the Erath gravity force- the moon moves an produces energy (1/2mv^2) and we have to ask from what source this energy will be provided- from the mass itself- means if the Earth causes the moon to move the Earth and the moon masses should be decreased by the motion energy- this is a wrong definition for the mass gravity- the mass gravity creates a bond between two masses (The Earth and the moon) if some outer force causes the Earth to move the moon will move with it and in this case the outer force will provide the motion energy for the Earth and the moon-

(2nd Item) The Gravitational Waves Source And Motion Trajectory

(1)

Planet moves and produces motion energy (1/2mv^2) and this energy can NOT be stored inside the planet body because the planet temperature would be raised by this energy and no planet temperature is raised by its motion- that forces us to suppose that the planet motion energy is stored in the space in waves form- means- the planet motion in the space is similar to the fish swimming in the sea- the fish moves because it hits the water by its body and that creates waves in the water and these waves move by the fish motion velocity (because of the reaction force)- similar to that- the planet moves in the space and its motion energy creates waves in the space and these waves move by velocity equal the planet velocity- means- Mercury (for example) moves and its motion energy creates waves in the space and these waves move by velocity = Mercury velocity (47.4 km/s) – we understand that these waves are similar to the water waves they move far from their source and can be reflected.

(2)

The planets revolve around the sun in the same direction- for that- the planets motions energies waves move toward Pluto orbit (Perpendicular on the revolution trajectory) and in Pluto orbit the planets motions energies waves are unified into one unified wave which moves by the planets velocities total – means- while the planets revolve around the sun there’s one unified wave revolves around the sun and moves by  velocity 205.8 km/s (the nine planets velocities total =176 km/s but I add the Earth moon velocity 29.8 km/s because the energy is stored finally in the Earth moon orbit-notice-the moon velocity equals the Earth velocity because they revolve together around the sun- the velocities total is 205.8 km/s )- Shortly – One unified wave revolves around the sun its velocity 205.8 km/s and This wave is found in Pluto orbit        

(3)

This unified wave (205.8 km/s) will reflect from Pluto orbit to Venus orbit- the wave reflection details will be discussed later

(4)

This unified wave is the gravitational waves- the scientists have discovered them but they called them (gravitational waves) because the scientists supposed the waves are produced by the sun gravitational field- while the waves are produced by the planets motions energies – as we have seen the logical analysis forces us to accept that the gravitational waves must be produced by the planets motions energies because no place to store the planet motion energy except in the space as moving waves- by that the waves in the space must be produced by the planets motions energies (also I have refuted the sun gravitational field theory)  

 (3rd Item) Can The Gravitational Waves Move By Speed Of Light?

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

this new article tells the gravitational waves can move by the speed of light and can produce a light beam- 

The article tells new information- its tells the light beam can be produced by gravitational waves motion energy when these waves move by speed of light – but the wave move by speed of light how can this wave produce a light beam? 

We should notice that the article still believes the gravitational waves are produced by the sun gravitational field- this theory which I have refuted completely- but here we don’t interest for the gravitational waves source but we interest for this amazing information tells the gravitational waves can move by speed of light (300000 km/s) and can produce a light beam- why is this information so amazing? Because

The sun nuclear fusion theory tells the sun rays is produced by the nuclear fusion process- the article tells there’s another method to produce a light beam –

let’s compare between the two methods

  • The sun nuclear fusion theory tells the source of energy is the sun mass which is used by the sun nuclear fusion process to produce the sun rays- means- the source of energy is the sun mass and the light production method is the nuclear fusion process
  • The article tells some very different thing- it tells the source of energy is the gravitational waves motion energy and the light production method is the gravitational waves motion by speed of light

If the sun rays is created by the gravitational waves motions that will change the whole vision about sun rays production process and may answer many left questions

Before the details discussion- let’s ask the direct and simple question-

If the gravitational waves move by speed of light (C=300000 km/s) how can these gravitational waves produce a light beam?

Let’s answer in the next item

(4thItem) Can A Light Beam Be Created By The Gravitational Waves Motion?

The paper hypothesis tells (The Gravitational Waves Are Reflected In The Solar System- And This Reflection Causes To Square The Wave Velocity- Means- The Wave Velocity After The Reflection Be Squared The Wave Velocity Before The Reflection)

The article tells (the gravitational waves can move by speed of light C=300000 km/s)   

If these waves are reflected and the reflection can square the velocities- the speed of light will be squared (C^2) and by this value (C^2 squared speed of light) a light beam can be created- that explains how the gravitational waves moves by speed of light can produce a light beam-

Shortly

If I prove the gravitational waves are reflected in the solar system and this reflection causes to square the velocities that will prove my theory tells (The Sun Is Not Doing Nuclear Fusion To Produce Its Rays Instead The Sun Rays Is Created By The Planets Motions Energies Total)

 The idea is a simple one

The gravitational waves can move by speed of light (C=300000 km/s) but the light beam can be produced only by the value (C^2)- that tells the gravitational waves velocity must be squared- the velocity is squared only by the reflection of energy – that shows the paper hypothesis importance–because without the squaring of the velocity no light beam can be produced even if the gravitational wave moves by speed of light   

I want to say- the wave reflection is the light beam production mechanism spine- because the wave reflection causes to square the wave velocity- means- if the gravitational wave moves by speed of light this speed will be squared by the reflection of the wave and by that the value (C^2 = squared speed of light) will be created by which the light beams can be produced.

The idea can be useful only if the wave reflection can square the wave velocity- the hypothesis proves will disprove the sun nuclear fusion theory completely – let’s see in following how the sun rays are produced in details

(5th Item) The Sun Rays Production Mechanism

The idea is more clear now

The gravitational waves are produced by the planets motions energies- and the planets motion energies waves are unified into one unified gravitational wave which moves by (205.8 km/s) =the planets velocities total – the waves unification is done in Pluto orbit and by that the unified velocity be (205.8 km/s) in Pluto orbit

Shortly

While the planets revolve around the sun there’s one gravitational wave revolves around the sun and moves by velocity (205.8 km/s) –

The new article tells the gravitational waves can move by speed of light (C=300000 km/s)- and these waves can produce a light beam!

The paper hypothesis tells (The Gravitational Waves Are Reflected In The Solar System- And This Reflection Causes To Square The Wave Velocity- Means- The Wave Velocity After The Reflection Be Squared The Wave Velocity Before The Reflection) -

These are all available data – and – what’s the requirement?

We have a waves move by velocity (205.8 km/s) and we want this wave to move by speed = (C^2 squared speed of light) – let’s try to do that in following

The First Reflection

The unified wave (The Gravitational Wave) moves by (205.8 km/s) is reflected from Pluto orbit to Venus orbit- this reflection of energy squares the velocities and causes this wave to move by speed of light – let’s see how

300000 = (205.8)^2 x 7.1

The motion by (0.99C) creates relativistic effects – specifically Lorentz length contraction effect by rate 7.1, Means- if a particle its length 7.1 meter moves by speed (0.99C) this particle length will be contracted and be one meter only- let’s analyze the equation

The unified wave velocity (205.8 km/s) is reflected and that caused to square the velocity (205.8 km/s)^2 = 42683 km/s now the rate (7.1) causes contraction for the lengths but because of the energy reflection the geometrical effects will be reflected also- means the rate (7.1) doesn’t cause to contract the length but increase the lengths and by that the velocity 42683 km/s will be 42683 km/s x 7.1 = 300000 km/s (speed of light = C)

Shortly- the wave reflection from Pluto to Venus causes to square the wave velocity and that accelerate the wave velocity to move by speed of light –

Means- the wave reaches Venus moves by speed of light (C=300000 km/s)       

The second Reflection (in fact the 3rd reflection)  

The unified wave (gravitational wave) reaches to Venus orbit with speed (300000 km/s)- then Venus reflects the unified wave toward Mars- this reflection causes to square the velocity- before the reflection the wave moves by speed of light and after the reflection the speed is squared and the wave shows the value (C^2 squared speed of light) by which the light beam can be created (the sun rays creation)

The idea summary tells

The unified wave is reflected two times in the solar system      

In the first time- the unified wave velocity (205.8 km/s) is accelerated to be 300000 km/s (speed of light =C)

In the second time- the unified wave velocity (300000 km/s = speed of light =C) be accelerated to be C^2 (squared speed of light) and the light beam is produced by this value C^2 (squared speed of light)

Now we understand this simple idea- but there are 2 left Major Questions

(1st Question) how the wave velocity (205.8 km/s) can be accelerated to be 300000 km/s (speed of light = C)? by what method the wave is accelerated?

(2nd Question) Are the unified wave reflected two times only in the solar system?

Let’s leave the 1st question to discuss later and answer the 2nd question in following,

How many times the unified wave reflected in the solar system?

Three times (by Pluto, by Saturn and by Venus) -while the required is only two times- so why the wave is reflected three times?

Neptune caused negative effect on the energy reflection by Pluto, by that the energy doesn’t reach to Venus- that forces Saturn to reflect the wave one more time to do the same job of Pluto reflection 

Means- the first reflection by Pluto failed to square the velocity and accelerate the wave motion to move by speed of light- this failure is done by Neptune negative effect on the wave energy- because of that- Saturn does another reflection for the wave energy and by Saturn reflection the wave velocity (205.8 km/s) is squared and the motion is accelerated to be done by speed of light (300000 km/s),

Shortly- in place of one reflection by Pluto, the unified wave is reflected two times by Pluto and by Saturn but these two reflections do only the role of one supposed reflection (from Pluto to Venus)- by this one reflection the unified wave velocity (205.8 km/s) will be accelerated to be speed of light (300000 km/s) and by that the wave reach to Venus moves by speed of light (C=300000 km/s)

Venus reflects the wave again toward Mars (the 3rd reflection), by this reflection the speed of light is squared and produced (C^2= squared speed of light) and from this value (C^2) the light beam is produced (the sun rays is created)

Notice

In Lorentz transformations study- there’s a major question asks (Can particle own data and dimensions be changed by the high velocity motion?) 

Shortly- Lorentz transformation tells– if a particle moves by high velocity motion- this particle own length will be contracted and its time will be dilated and its mass will be increased- these changes are defined by Lorentz transformations and we know these are real changes in this particle own data - BUT

Some researchers tell No Real Changes are done for the particle own data but they are illusions of measurements (means Lorentz transformations measure illusions)

I refuse this opinion - BECAUSE

  1. The Physics Is The Measurements Science And What’s Measured Is The Fact
  2. If no real changes are done how the problem of Michelson and Morelly experiment is solved?- also- we can’t understand why the synchronous events in one frame can’t be synchronous in another (as Einstein stated) where no real change is found for any data- the distances are Not contracted nor the time is dilated nor the mass is increased why the events can NOT be synchronous in any frame?  
  3. If the particle own data are measured correctly while it moves by my motion velocity and these measurements are suffered from illusions because the particle moves by high velocity motion relative to my motion velocity that means (I’m the universe reference point)
  4. We notice- Lorentz length contraction equation can’t distinguish between particle length and a distance, both can be contracted by the same one equation- that supports my theory tells (The Matter And The Space Are Created From The Same Energy)– If the space is similar to the sea of water the matter will be similar to a whirlpool (or vortex) on the sea page- both the matter and space are created from the same one energy- that gives chance to change the matter dimensions by its motion   
  5. My planet diameter equation proves the planet diameter is created depending on its velocity- means- for example– Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s- this fact is proved by my Equation strongly - that tells the motion has effect on the matter dimensions and data definition which supports the same meaning of Lorentz transformation. 

(6th Item) The Sun Rays Creation Details

The sun is NOT doing nuclear fusion to produce its rays- but- the sun rays is created by the planets motions energies- generally- the star rays is created by the gravitational waves which are produced by its planets motions energies – there are 4 facts prove that – let’s refer to these facts in following

1st Fact 

The Sun Corona Temperature is 5 millions Kelvin but the sun surface is 5800 Kelvin

This fact puzzles the scientists – No puzzle here-

Simply the sun rays is Not produced by the sun nuclear fusion but by the planets motions energies – the energy is Not produced from the sun body but by the planets motions energies – means- The energy out of the sun is greater hundreds times the energy inside the sun because the energy is provided by the planets motions energies-

The Sun Corona Temperature proves that the sun is NOT doing nuclear fusion to produce its rays – instead the planets motions energies total is used as the source of energy to produce the sun rays

2nd Fact 

The gravitational waves are created by the planets motions energies- I have proved that- simply Planet motion energy (1/2mv^2) should be stored in the space in moving waves because no other place to store this energy- that tells the gravitational waves are produced by the planets motions energies- this is a doubtless conclusion- the gravitational waves are produced by the planets motions energies-

Here we see clearly the fatal error of the sun nuclear fusion theory because the solar planets revolve around the sun moving continuously and by this motion massive motion energy must be produced and that tells massive motion energy must be stored in the space in moving waves- so we have to ask (when and how this stored energy will be used?) understandable the energy can not be stored in the space forever without using- means- the sun rays is the outlet for the stored motion energy and the using of this stored energy protects the solar system from all risks found by the unused stored energy-

The logical problem here tells, the scientists create a strange source of energy (the sun mass) to produce the sun rays by the nuclear fusion process and no one interests for the planet motion energy nor the stored massive energy in the space-

The mistake is that- the scientists supposed the planet moves and produces NO energy while the motion energy (½ mv^2) is elementary concept in the classical mechanics

The planets motions energies create a very great problem for the sun nuclear fusion theory and disproves it because No Source Of Energy Is Required where massive motion energy is stored in the solar system and needs to be used – here the sun rays is the outlet for this massive motion energy and provide the energy in very useful and peaceful method-           

3rd Fact 

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

this article tells the gravitational waves can move by the speed of light and can produce a light beam-  the question was (If the gravitational waves move by speed of light how can these waves produce a light beam?) – the answer was –

the gravitational waves are reflected and the reflection causes to square the velocity and by that the gravitational wave moves by speed of light and when this wave be reflected its velocity will be squared and by that the value (C^2= squared speed of light) by this value the light beam can be created.

here the planets data depends on this process – let’s see that-

the unified wave move by the velocity (205.8 km/s)= the planets velocities total- the square of this velocity will produce the speed of light (205.8)^2 x 7.1 = 300000 as I have explained before- then the speed of light square will produce (C^2= squared speed of light) and by this value the light beam will be created –

means- the planets data is in harmony with the light production process

please note- the energy reflection is proved strongly because the planets data is reflected by it (later we will discuss the reflection of energy proves)- means- I provide a theory shows full harmony with the planets data that prove the theory is a fact because the planets data proves it   

NOTICE

Before the Earth moon creation the planets velocities total was 176 km/s (the nine planets velocities total only without the moon velocity)- let’s try to reflect this wave

The wave reflection causes to square its velocity  (176)^=30976 km/s

Now we use Lorentz length contraction effect rate 7.1

The result is 30976 x 7.1 = 220000 km/s

Here I accelerated the unified wave its velocity (176 km/s) by the same Method I used for the velocity (205.8 km/s) but the wave (176 km/s) after acceleration produce the velocity 220000 km/s which equal (75% of speed of light) and this velocity square can NOT produce the value (C^2 squared speed of light) and by that NO Light Beam can be created

Let’s review our wave velocity

(205.8)^ x 7.1 = 300000

Means- the unified wave with velocity 205.8 km/s is the only wave can produce the light beam by the reflection of energy- that tells us – the sun is created after the Earth moon creation – and also tells the planets data is in full harmony with the sun rays creation by the gravitational waves motions- this analysis gives proof for my theory tells (The Sun Is Not Doing Nuclear Fusion To Produce Its Rays But The Sun Rays Is Created By The Planets Motions Energies Total)

4thFact 

The previous analysis proves the sun rays is created by the planets motions energies and not by the sun nuclear fusion- can we add one more crucial proof for this fact? Yes – the crucial proof tells that (the sun rays is created by a relative motion)

Means the method by which the sun rays is created is (the relative motion)- let’s examine this proof in following

(i)

As we have seen the light production depends on a gravitational wave moves by speed of light (C=300000 km/s) then this wave is reflected and by the reflection the speed of light will be squared and produced the value (C^2= squared speed of light) and by this value the light beam can be created

Means- the main player to produce the light beam is the gravitational wave moves by speed of light- then let’s ask- suppose this wave moves by speed less than speed of light what would happen? In this case the energy reflection will not produce the value (C^2= squared speed of light) and as a result NO Light Beam can be created 

Means- the process cornerstone is the wave motion by speed of light? But relative to what? The question asks (if the wave moves by speed of light relative to what?)

Of course the wave moves by speed of light relative to the sun point because the different velocity between the wave motion and the sun point motion will produce the light beam- means- the light beam is produced by a relative motion and this motion has two players which are

(1st player) the unified wave moves by 205.8 km/s and after its reflection will move by the speed of light 300000 km/s

(2nd player) the sun point of space moves by 1 km/s (stationary point)

(ii)

How can the sun point move by 1 km/s and its velocity never increased?

We understand the space is movable and not static and the gravitational waves prove the space has motion- means- no stationary point can be found in the space (as no stationary point can be found on the sea because every thing moves by the sea waves) by that the point moves by 1 km/s (a stationary point) is a point created by some design because it can Not be found by nature- let’s create this stationary point in following

The planets revolve around a point in space (any point in space) the revolution creates two velocities on both sides of the revolution- the two velocities are equal in value opposite in direction and by that the total be Zero –

Means- the revolution design creates a stationary point in the revolution center

By that the sun point (1 km/s) is created by the planets revolution around it

By the stationary point creation a relative motion is created- and this relative motion has two players as referred before

(1st player) the unified wave revolves around the sun with velocity 205.8 km/s and after its reflection the velocity will be equal the speed of light (C=300000 km/s)  

(2nd player) the sun point of space (1 km/s) (stationary point)

(iii)

We should pay attention to the sun point because it’s the process cornerstone - Why? 

Because the unified wave (gravitational wave) can not move by speed greater than speed of light (C=300000 km/s) where the speed of light is the wave velocity limit

But- the different velocity between the unified wave velocity and the sun point velocity should be equal = 300000 km/s = speed of light because any less different velocity can NOT produce the light beam –

That tells the sun point of space should be stationary point (1 km/s) and its velocity should NOT be increased in any case-

What’s The Information Told By This Analysis?

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

The article tells the gravitational waves can move by the speed of light- but- the fact is that- the different velocity between the gravitational wave and the sun point of space is the speed of light- the wave move relative to the sun point of space- as any other motion-

For example Pluto velocity is 4.7 km/s- why? because Pluto moves relative to the sun point of space and Pluto velocity 4.7 km/s and the sun point is (1 km/s) and the different velocity is 4.7 km/s- all motions are done relative to the sun point of space because the energy storing aims to- create the sun rays- by that- if the article tells the wave moves by speed of light that means the different velocity between the wave and the sun motions is the speed of light – that makes the sun stationary point 1 km/s  

Shortly – if the sun point moves by any velocity faster than 1 km/s NO Light Beam Can Be Created and NO Sun Rays can Be Produced-

The sun point velocity is the process spine

(iv)  

This analysis proves the sun rays is created by the gravitational waves energy (the planets motion energies) and not by any nuclear fusion process- and also refutes the sun nuclear fusion theory completely- why? for 2 reasons

1st Reason

The sun rotation period is (25.4 days at equator) and the sun circumference is 4.37 million km- this motion velocity is 2 km/s

Means if the sun moves by 2 km/s, the sun will rotate around its axis one complete rotation in 25.4 days

This data proves the sun point is the stationary point because the actual accounts show the sun point velocity is 2 km/s

Notice -

The solar system geometrical design supposes the velocity of the sun point is 1 km/s but the real velocity is 2 km/s – it is NOT small change in Value – it’s a great change in the whole machine- but the machine still can produce a light beam spite of that

And to produce the light beam- the machine has to depend on (2 seconds) in place of (1 second) and for that the planets motions distances total should be= (180000 million km) in place of the required distance (90000 million km) - Means – this small change in the sun point velocity (from 1 km/s to 2 km/s) causes to double the passed distances by the planets to produce the sun rays- we can imagine if the sun point moves by 15 km/s in this case it will be impossible to produce the light beam

Notice- (C^2 squared speed of light) equals 90000 million km if the period is one second- means- the planets motions distances total be 90000 million km in some period of time but the rates of time makes this period to be equivalent to one second of the sun clock that creates the value (C^2 squared speed of light)

The problem now is that- the sun velocity is 2 km/s that forces the planets to pass total distance = 180000 million km to create the rate (90000 million km for one second)

That shows the great effect of the smallest change of the sun point velocity

2nd Reason

The sun position and data is defined based on very accurate mathematical calculations 

The designer paid so great attention and incredible interest for this point- because of its massive importance and effect- for that- the designer made the sun position in the sky and the sun creation data to depend on exact mathematical calculations and strict geometrical rules to guarantee the sun point velocity Never to be faster than 1 km/s

Let’s see some examples to explain that

Example No.(1)

We See The Sun Disc= The Moon Disc which enable the total solar eclipse to be occurred because

The sun diameter / the moon diameter= Earth orbital distance/ earth moon distance

Why does the diameters rate equal = the distances rate?

Example No.(2)

4900 mkm (Jupiter orbital circumference) = 1.39 mkm (the sun diameter) x 3475 km =12104 km x 406000 km = 12756 km x 384000 km = 6792 km x 2 x 363000 km

3475 km      = the moon diameter                 12104 km    = Venus diameter

12756 km    = The Earth diameter                6792 km      = Mars diameter

 363000 km, 384000 km and 406000 km are the distances between the Earth and its moon in perigee, orbital distance and apogee radiuses respectively

The previous examples show that the sun creation data and its position in the sky are defined based on accurate mathematical calculations- but why? and what’s the useful result of these data proportionalities

The designer aimed to make the velocity of the sun point of space to be 1 km/s and He interested to guarantee that the velocity can Never be faster than 1 km/s – because any faster velocity than 1 km/s will destroy the chance of the light beam production- BUT

What’s the relationship between the sun creation data and its velocity?

This question is answered by my planet diameter equation- the equation proves that the planet diameter is defined based on this planet velocity- for example- Neptune diameter is 49528 km because Neptune velocity is 5.4 km/s that shows the change in velocity can change the diameter (my planet diameter equation proves that strongly) and based on that, the sun diameter is effected by the sun velocity and vice versa for that reason these proportionalities are necessary to guarantee the sun point of space to be (1 km/s) and never be faster.

(v)  

The sun position and creation data by accurate mathematical calculations was necessary to guarantee the sun point of space velocity to be 1 km/s and never be faster by that the sun be the stationary point-  these calculations will be useless if the sun rays is created by the sun nuclear fusion process-

Means- the sun nuclear fusion theory doesn’t see the massive motion energy which is found in the solar system and also doesn’t see the relative motion which is the method to produce the sun rays- by that – the theory doesn’t see the accurate calculations behind the sun position and its creation data- that tells- the sun nuclear fusion theory is completely very strange theory from the solar system geometrical concept and design.

 (7th Item) If the gravitational wave moves by a velocity 205.8 km/s how can this wave velocity be accelerated to move by  the speed of light (300000 km/s)?

(1)

The wave acceleration depends on the sun rate of time (one second of the sun clock = 1461 seconds of the Earth clock) by that the unified wave (205.8 km/s) moves a distance 300000 km in 1461 seconds for the Earth clock shows the velocity is 205.8 km/s but the period is one second for The Sun clock shows the velocity 300000 km/s (speed of light) –means- the wave velocity is 205.8 km/s relative for the Earth but the same wave moves by 300000 km/s (speed of light) relative to the sun

The wave acceleration method is the sun rate of time

notice- for the motion by speed of light (C=300000 km/s) the rate of time is (1=1461) but for the motion by (C^2) the rate of time is (1=1461^2) means (1=2134521)   

BUT

The sun rate of time is found always why the acceleration is done only for the unified wave (205.8 km/s) which is sent from Pluto (and Saturn) to Venus? 

There are 2 reasons

(1st Reason)

The sun rate of time causes to accelerate any wave- but not all waves can be working- let’s remember the acceleration for the wave its velocity 176 km/s (the nine planets velocities total without the Earth moon velocity)

The wave velocity is 176 km/s - let’s try to reflect this wave

The wave reflection causes to square its velocity  (176)^=30976 km/s

Now we use Lorentz length contraction effect rate 7.1

The result is 30976 x 7.1 = 220000 km/s

Here I accelerated the unified wave its velocity (176 km/s) by the same Method I used for the velocity (205.8 km/s) but the wave (176 km/s) after acceleration produce the velocity 220000 km/s which equal (75% of speed of light) and this velocity square can NOT produce the value (C^2 squared speed of light) and by that NO Light Beam can be created – by that the acceleration of the wave 176 km/s doesn’t produce any useful result.

On the contrary, the acceleration of the unified wave (205.8 km/s) will produce the speed of light – (205.8)^2 x 7.1 = 300000 – and this speed of light will be squared by Venus reflection and the value (C^2) be produced and this value can produce a light beam- Means- all waves can be accelerated but the working wave is specific one  

(2nd Reason)

Again- The sun rate of time causes to accelerate any wave- BUT the acceleration process is done by energy- the rate of time is a method (as a generator can produce electricity) but the generator will work when you put fuel in it– the method is available but the process is done by energy-

We know the energy is reflected from (Pluto and Saturn) to Venus that tells the unified wave velocity in Pluto is 205.8 km/s but the wave velocity in Venus is 300000 km/s (speed of light) because the energy is in Venus orbit and Not in Pluto orbit-   

Notice

The wave acceleration depends on the sun rate of time- means- the motion energy must be ascending to reach to the sun corona and there the waves acceleration is done  Means

All planets see the unified wave moves by velocity (205.8 km/s)- no any acceleration for the unified wave (205.8 km/s)  is recorded in any planet because the acceleration needs the energy reaches to the sun corona (to depend on the sun rate of time)- by that the wave velocity is NOT changed for all planets

BUT

Let’s look deeply as possible

The unified wave velocity is 205.8 km/s in Pluto orbit –Now if this wave is ascending to the sun and this wave moves into the sun corona- the wave velocity in the sun corona will be 205.8 km/s only – why? because the wave is not accelerated

Then

The unified wave will be reflected by Pluto (and Saturn) toward to Venus – now – the wave has acceleration by the reflection of energy- the wave moves in Venus orbit with its velocity (205.8 km/s)- but if this wave is ascending toward the sun and moves into the sun corona – the wave velocity in the sun corona will be 300000 km/s (speed of light) why? because the wave is reflected one reflection only (the acceleration is done for one time only)

Then

The unified wave will be reflected by Venus toward to Mars– now – the wave has second acceleration by the reflection of energy- the wave moves in Mars orbit with its velocity (205.8 km/s)- but if this wave is ascending toward the sun and moves into the sun corona – the wave velocity in the sun corona will be (C^2= squared speed of light) because the wave is accelerated two times (has two reflections)

That’s exactly what’s happening

The unified wave energy is reflected from Venus to Mars and the energy be found in the distance between the Venus and Mars (especially between the Earth and Mars)

Specifically the energy is saved in the total lunar eclipse umbra (that’s why the umbra length = 1.392 million km = the sun diameter)- the energy is found in the distance around the total lunar eclipse umbra-

Then the energy moves (perpendicular) on the motion direction –

For that the energy ascending toward the sun and the energy moves into the sun corona- there the energy depends on the sun rate of time and the motion energy now can produce the value (C^2= squared speed of light) and from this value the light beam is created (the sun rays is produced)  

(8th Item) The Gravitational Waves Reflection Effects On The Motion Data

(1)

The unified wave (the gravitational wave) is reflected in the solar system three times

1st reflection the unified wave is reflected from Pluto toward Venus

2nd reflection the unified wave is reflected from Saturn toward Venus

3rd reflection the unified wave is reflected from Venus toward Mars

(means- the unified wave is reflected from Pluto to Venus by that the wave is sent from Pluto to Neptune to Uranus to Saturn but in Saturn orbit the wave is reflected one more time and after the reflection the wave continues its motion toward Venus then the wave reached Venus orbit and Venus reflected the wave toward Mars and finally the wave energy is stored in the Earth moon orbit between Venus and Mars)

Means- while the planets revolve around the sun there’s one unified wave moves by (205.8 km/s) and revolves around the sun through Earth Moon Orbit.

(2)

Please note- the unified wave velocity analysis and the reflection effect on it shows that the required reflection are two reflections only and not three- let’s explain that –

The unified wave velocity is (205.8 km/s) and in the first reflection this velocity will be squared which causes to accelerate the unified wave motion to move by speed of light (300000 km/s) means the unified wave velocity (205.8 km/s) will be accelerated to reach to the speed of light by the first reflection- in the second reflection the velocity will be squared also- now the unified wave moves by speed of light (300000 km/s) and this velocity will be squared to be (C^2= squared speed of light) by the second reflection and the value (C^2) will produce a light beam-

Means- by two reflections only the unified wave velocity (205.8 km/s) will be accelerated to be equal (C^2= squared speed of light) by which the light beam can be created and by that the sun rays will be produced by the planets motions energies- but the unified wave is reflected three times in the solar system – Why??

Neptune caused a negative effect on the energy reflected by Pluto- by that- the energy reflection by Pluto can’t be sent to Venus – Neptune negative effect caused frustration for the wave reflection by Pluto and that forced Saturn to reflect the unified wave one more time to perform the same job- shortly- the unified wave (205.8 km/s) is reflected two times (by Pluto and by Saturn), but these two reflections perform the job of one reflection only because of Neptune negative effect on Pluto reflection of energy – Neptune negative effect is explained in details in point no. (**)   

(3)

The wave energy reflection can be discovered easily because of the changes in data which are done by the reflection – let’s refer to these changes in following

  1. The data is reflected- what’s used as (A) before the reflection will be used as (1/A) after the reflection.
  2. The data which is used as (a distance) before the reflection will be used as (a period of time) after the reflection
  3. The velocities be squared – by that the rate (v1/v2) before reflection will be (v1/v2)^2 after the reflection.
  4. The energy direction is changed by the reflection usually–means-the energy moves toward Pluto will be reflected and sent toward Venus (change in the direction)
  5. The players of the rates of time are reflected also – for example (one second of the wave clock =205.8 seconds of the sun clock) before the reflection and will be (one second of the sun clock =205.8 seconds of the wave clock) after the reflection   

The planets motions use different rates of time (discussed in point no. (**))

How can the energy reflection be proved? The planets data is reflected on each other – for example- Venus orbital inclination is 3.4 degrees and Pluto orbital inclination is 17.2 degrees where sin (3.4) = 1/17.2 – in the next point I provide more proves.

(9th Item) The Gravitational Wave Reflection Proves (general proves) 

The reflection of energy is proved by powerful of data I provide here 4 proves only

(1st proof) the planet velocity analysis proves the reflection of energy

The planet velocity is defined by two rules

1st rule  my fifth equation (v1v2=constant = 322)

Let’s prove the rule in following

322 = 47.4 km/s (Mercury velocity)     x  6.8 km/s (Uranus velocity)

322 = 35 km/s (Venus velocity)           x  4.7 km/s (Pluto velocity) x 2

322 = 29.8 km/s (Earth velocity)         x  5.4 km/s (Neptune velocity) x 2

322 = 24.1 km/s (Mars velocity)          x  13.1 km/s (Jupiter velocity)

The data shows that the planets velocities are complementary one another- means- the planets velocities are created in double– means- Mercury and Uranus velocities are created together based on the rule (v1v2=322)

Please note, the rule is effective on the planet motion in different features not only the planet velocity because (for the inner planets) the planet orbital inclination be =v1/v2 for example (47.4/6.8)= 7 where Mercury orbital inclination =7 degrees. 

Means the rule (v1v2=322) not only define the planets velocities but also define many other features in the planet motion (notice, the outer planets define their orbital inclinations based on my planet diameter equation)  

2nd rule  (v1v2=1)

This rule uses the planets velocities per solar day

Pluto velocity per solar day 0.406       million km             But 1/0.406           = 2.46

Neptune velocity per solar day 0.4468 million km             But 1/0.4668         = 2.082

Uranus velocity per solar day 0.587   million km             But 1/0.587           = 1.7

Saturn velocity per solar day 0.838     million km             But 1/0.838           = 1.19

The Earth moon velocity per solar day 2.4    million km            

Mars velocity per solar day 2.082      million km  

Venus velocity per solar day 3.024      million km =1.7 x (π)^0.5

Jupiter velocity per solar day 1.1318 million km            

Pluto velocity is reversed with the Earth moon velocity

Neptune velocity is reversed with Mars velocity

Uranus velocity is reversed with Venus velocity

Saturn velocity is reversed with Jupiter velocity

The Rules Analysis

The two rules can be understood- if we suppose that the energy is reflected in the solar system- that makes the inner planets velocities to be reflected with the outer planets velocities- the reflection causes the two rules (v1v2=322) and (v1v2=1)

The constants are different because the first rule uses the planets velocities based on seconds but the second rule uses the planets velocities based on the solar day- means the constants are different between (322) and (1) because the velocities depends on different units of time and the interaction between the solar day and the second caused to use the constants (322) and (1)

1st Question- why is the constant = 322?

1160000 seconds = 322 hours

We know the solar system is created from one light beam energy and this light beam moves by speed 1.16 million km per second- that tells the planets velocities are defined based on this speed 1.16 million km per second

Notice  

322 =47.4 x 6.8 – this data tells

Mercury (47.4 km/s) moves in 6.8 hours a distance = 1.16 million km and

Uranus (6.8 km/s) moves in 47.4 hours a distance     = 1.16 million km and

That shows the planets velocities are defined based on the speed 1.16 million km per second.

2nd Question- how can the players be changed?

For example –Pluto is the complementary planet with Venus 4.7 x 2 x 35 =322

How can Pluto (0.406) be complementary with the moon (2.4)?

The players are not changed- the planet velocities are effected by Uranus orbital inclination (0.8 degrees) and that caused to change the planets velocities let’s see that in following-

0.8 x 4.095 (Mercury velocity daily)             = 1.0725 x 3.024 (Venus velocity daily)

0.8 x 3.024 (Venus velocity daily)                 = 2.4 (The moon velocity daily)

0.8 x 2.574  (The Earth velocity daily)          = 2.082 (Mars velocity daily) /1.0725

0.8 x 1.1318 (Jupiter velocity daily)              = 0.838 (Saturn velocity daily) x 1.0725

As we see Uranus orbital inclination (0.8) has effect on all planets velocities and that caused to change the velocities- the puzzle is that – when the planets velocities are effected by Uranus orbital inclination that changed the planets velocities but the change produced other planets velocities means

Mercury velocity is changed into Venus velocity and

Venus velocity is changed into the moon velocity and

The moon velocity is changed into Mars velocity and

Jupiter velocity is changed into Saturn velocity

That gives the feeling that the players are changed which is not fact

Let’s ask– why has Uranus orbital inclination this effect on the planets velocities?

Uranus Orbital Inclination (0.8) is produced by the rate between Neptune and Uranus (π/4)= 0.8 (Uranus orbital inclination 0.8 degrees) – let’s explain the reason

The energy is reflected from Pluto and passed through Neptune and Uranus and the interaction between Neptune and Uranus (π/4)= 0.8 creates effect on the energy – that caused effect on the planets velocities and data but the basic rule (v1v2=322) is still as it without change and this same rule still controls the data even after the effect of Uranus and Neptune interaction- shortly- the velocities are changed but the players are not.

(2nd proof)

The planets order proves the energy reflection

I proved Mars original orbit was between Mercury and Venus and Mars had migrated from its original orbit to its current one- by that the inner planets order be as following (Mercury – Mars- Venus – Earth)

The order tells greater diameter needs longer orbital distance

the outer planets order is

(Jupiter – Saturn – Uranus – Neptune – Pluto)

The order tells greater diameter needs shorter orbital distance

The orders are reflected on each other

Please note the planets order depends on the planet diameter and not the mass because Neptune mass is greater than Uranus mass where Neptune diameter is less than Uranus diameter. 

(3rd proof)

Each planet orbit is defined based on an angle, these angles are reflected also – let’s prove that 

(I suppose –There’s a right triangle by the three points The Sun, Mercury and Venus) 

Now -Venus angle is (61 degrees) because Venus orbital distance (108.2 mkm) x cos (61) = Venus Mercury distance (50.3 mkm) -

Here we can replace Venus with any other planet in the same triangle to define this planet angle based on similar calculation– as a result

Earth angle is (51 degrees) because Earth orbital distance (149.6 mkm) x cos (51) = Earth Mercury distance (91.7 mkm)

Mars angle is (41.7 degrees) because Mars orbital distance (227.9mkm) x cos (41.7)= Mars Mercury distance (170 mkm)-

Jupiter angle is (22.2 degrees) because Jupiter orbital distance (778.6 mkm) x cos (22.2)= Jupiter Mercury distance (721 mkm)

Similar to that – Saturn angle is 16.5, Uranus angle is 11.6 deg, Neptune angle is 9.2 deg and Pluto angle is 8 deg- these angles follow the same system

– for example -Pluto angle is (8 degrees) because Pluto orbital distance (5906 mkm) x cos (8)= Pluto Mercury distance (5848 mkm) –

NOTICE No. (1)

The right angle and its triangle is (a hypothesis) – but we can prove it’s fact because (v1/v2) = (θ1/ θ2) -means – these angles are rated with their planets velocities – for example (Neptune velocity 5.4/ Pluto velocity 4.7) = (9.2 deg /8 deg)

NOTICE No. (2)

These angles are reflected on each other proves the energy reflection in the solar system- let’s proves that in following

940 = 61 x 2 x 8 = 51 x 2 x 9.2 = 41.7 x 22.2

(61 degrees) is Venus angle

(51 degrees) is The Earth angle

(41.7 degrees) is Mars angle

(8 degrees) is Pluto angle

(9.2 degrees) is Neptune angle

(22.2 degrees) is Jupiter angle

The data shows the angles are reflected on each other and uses behavior typical to the planets velocities behavior which proves the reflection of energy.

(4th Proof) – the next item provide the fourth proof

(10thItem) Venus Reflects The Gravitational Wave Toward Mars (The3rd reflection)

The wave 205.8 km/s is reflected (by Pluto and by Saturn) toward Venus the reflection causes to accelerate the wave velocity to move by speed of light (300000 km/s)  in Venus orbit- and then- Venus reflects the wave toward Mars which accelerate the wave velocity one more time and causes its velocity to be (C^2)- finally the wave energy is stored in the Earth moon orbit- Now we discuss this last reflection (3rd reflection) between Venus and Mars- both planets data is changed by this reflection- let’s remember the data changes by the energy reflection

  1. The data is reflected- what’s used as (A) before the reflection will be used as (1/A) after the reflection.
  2. The data which is used as (a distance) before the reflection will be used as (a period of time) after the reflection
  3. The velocities be squared – by that the rate (v1/v2) before reflection will be (v1/v2)^2 after the reflection.
  4. The energy direction is changed by the reflection usually –means- the energy moves toward Pluto will be reflected and sent toward Venus (change in the direction)
  5. The players of the rates of time are reflected also – for example (one second of the wave clock =205.8 seconds of the sun clock) before the reflection and will be (one second of the sun clock =205.8 seconds of the wave clock) after the reflection   

Let’s see these changes in Venus and Mars Data

(1)

Venus orbital circumference 680 million km will be used as Mars orbital period (687 days) based on the rate (1 million km = 1 day) –

Also

Venus orbital Period 224.7 days will be used as Mars orbital distance (227.9 million km) based on the same rate (1 million km = 1 day) –            (Data Max Error 1.5%)

(2)

Saturn orbital distance =1433 million km = Mars orbital circumference

We understand that the unified wave is reflected (from Pluto and SATURN) to Venus and Venus reflects the unified wave to Mars- by that- Saturn distance (1433 mkm) is seen in Venus data as (a period of time 224.7 days with 227.9 the different is 1.5) and Venus period of time is seen as a distance again in Mars data (227.9 mkm) and by that mars orbital circumference be 227.9 x 2π =1433 million km that explains why Saturn orbital distance = Mars orbital circumference

(3)

 Sin (3.4)= 1/17.2 BUT sin (34.4/1.0725) = 1/1.9 where

3.4 deg = Venus orbital inclination                         17.2 deg = Pluto orbital inclination

1.9 deg = Mars orbital inclination                          1.0725 = length contraction rate

The data shows similar behavior between Pluto and Mars with Venus because the wave is reflected from Pluto (and Saturn) to Venus and from Venus to Mars

(4)

Venus diameter 12104 km/ Mars diameter 6792 km = 3.4 /1.9

Venus diameter 12104 km/ Pluto diameter 2390 km = 17.2 /3.4

Saturn diameter 120536 km/ Venus diameter 12104 km = 3.4 /(2.5 x 7.1) where

3.4 degrees   = Venus Orbital Inclination

17.2 degrees  = Pluto Orbital Inclination

1.9 degrees    = Mars Orbital Inclination

2.5 degrees    = Saturn Orbital Inclination

7.1                 = Lorentz length contraction effect rate

The data shows similar behavior by all planets because the unified wave is reflected by all these planets (by Pluto, by Saturn and by Venus)

(5)

  1. 11.675 days x 2.082 million km               = 243 million km
  2. 10747 seconds x 35 km/s                        = 378675 km
  3. 2390 seconds x 35 km/s       x 1.0725      = 90560 km

Data No. (i) tells Mars velocity per solar day 2.082 million km moves in 116.75 days (Venus day period) a distance =243 million km where 243 days = Venus rotation period

Data No. (ii) tells Venus (35 km/s) moves in 10747 seconds a distance =378675 km (Saturn Circumference) where (10747 days = Saturn orbital period)

Data No. (iii) tells Venus (35 km/s) moves in 2390 seconds a distance =90560 km where (2390 km = Pluto diameter and 90560 days Pluto orbital period)

The data is complex but tells one information that- the receiver planet velocity is used as a rate between 2 data of the sender planet –

For example Data no. (i) it tells Mars velocity daily (2.082) is a rate between 116.75 days and 243 days (Venus day and rotation period respectively) – for the reflection one data is seen as a period and the other is seen as distance

Venus is the sender and Mars is the receiver

Data no. (ii) tells similar meaning- Venus velocity is a rate between 2 data of Saturn-

Venus (35 km/s) moves in (10747 seconds) a distance = 378675 km (Saturn Circumference) - Saturn is the sender and Venus is the receiver   

Data no. (iii) tells similar meaning- Venus velocity is a rate between 2 data of Pluto-

Venus (35 km/s) moves in (2390 seconds) a distance x1.0725 = 90560 km (Pluto orbital period 90560 days)- Pluto is the sender and Venus is the receiver  (where 2390 km = Pluto diameter)  

The data proves the ideas clearly-

Notice the rate 1.0725 is found by Lorentz length contraction effect.

(6)

There’s a perpendicularity between Saturn and Venus where 26.7 degrees (Saturn axial tilt) is seen at Venus as 26.7 +90 = 116.75 days (Venus day period)

Notice

(a) (9.5)^2 = 90 but 9.7 km/s (Saturn velocity) is different from 9.5 with (2%)

(b)  26.7 deg (Saturn axial tilt) +90 deg = 116.75 degrees but 116.75 x 0.8 = 93.4 deg (but 90 deg + 3.4 deg Venus orbital inclination)

© 93.4 deg x 1.9 deg (Mars orbital inclination) = 177.4 deg (Venus Axial Tilt)

(d) 177.4 deg  (Venus Axial Tilt) + 3.4 deg (Venus orbital inclination) = 180.8 deg = 180 +0.8 deg (Uranus orbital inclination)

The data tells there’s a perpendicularity between Saturn and Venus and between Saturn and Uranus for that the angle (180 degrees) is found between Uranus and Venus and by this angle (180 degree) Venus axial tilt and orbital inclination are created depends on Uranus orbital inclination (0.8)

(7)

Please note the reflection of energy in Saturn creates two equal distances around Saturn where Saturn orbital distance = Saturn Uranus distance=1433 million km  and also- this reflection creates 2 equal inclinations for Saturn by that Saturn orbital inclination is 2.5 degrees but Uranus orbital distance = 2 Saturn orbital distance and by effect of Uranus orbital inclination 0.8 the result will be (2/0.8) =2.5

This data tells the reflection of energy in Saturn is more complex than the reflection of energy from Venus to Mars because of Neptune negative effect on the energy- the paper provides deep discussion to explain Neptune negative effect on the solar system energy and motion.

(8)

Please note- the unified wave (the gravitational wave) moves by speed of light depends on the rate of time (one second of the sun clock =1461 seconds of the Earth clock)- where the wave moves by speed of light in Venus orbit- but the light production needs the value (C^2 = squared speed of light), the reflection of energy from Venus to Mars causes to square the velocity and produce the value (C^2 = squared speed of light), but this value (C^2) is created depending on the square rate of time which is (1 =1461^2) means (1=2134521) – means this rate is used for Mars data but the first rate (1=1461) is used for Venus data

For that

2134521 km                                       = 100 x 21345 km (Mars Circumference) – and

38025 km (Venus Circumference)      = 2.6 x 1461

378675 km (Saturn Circumference)    = 260 x 1461

260 =2.6 x 100      One more time the data shows similar behavior

THE MAIN PROOF

The solar system data shows general reflection is happened two times – let’s see that in details

(Venus reflection)  

By this reflection of energy Venus orbital circumference 680 million km will be used as Mars orbital period 687 days and it defines Jupiter orbital period (4331 days = 2π x 687 days) and also Saturn orbital period (10747 days = 4π x 687 days x (1/0.8)) where Uranus orbital inclination (0.8 degrees) creates effect on Saturn data

(Saturn reflection)  

The reflection is done by Jupiter to Uranus, by that, Jupiter orbital circumference 4900 million km will be used as Uranus orbital period 30589 days where (30589 days = 4900 days x 2π and Neptune orbital period 59800 days = 4900 days x 4π and Pluto orbital period 90560 days = 4900 days x 6π

Please note

The energy reflection at Venus passes above the Earth to Mars- where the Earth moon suffers from the length contraction effect and its motion distance daily is 2.4 mkm = 2.574 mkm (The Earth motion distance daily) / 1.0725

Similar to that 

The energy reflection at Jupiter passes above Saturn to Uranus – Where

Saturn suffers from the length contraction effect because

1433 million km (Saturn orbital distance) x 1.0725 = 2 x 778.6 million km (Jupiter orbital distance) 

Please note- the Earth moon daily displacement is 88000 km and during 10747 days the displacements total be 940 million km = The Earth orbital circumference

Where 10747 days = Saturn orbital period

Notice

We understand that the light beam production needs the unified wave to be reflected two times only in the solar system- in the first reflection the unified wave (205.8 km/s) will be accelerated to be equal the speed of light (300000 km/s) and in the second reflection the speed of light will be squared to produce the value (C^2 the squared speed of light) by which the light beam will be created- means – the light production process needs tow reflections only and we know the unified wave is reflected in the solar system three times – because – of Neptune negative effect on Pluto energy where Neptune negative effect causes a frustration for the unified wave reflection by Pluto and that forced Saturn to reflect the unified wave one more time to perform the job mentioned by Pluto reflection of energy- by that Pluto and Saturn reflections create effect of one reflection only and Venus reflection creates the final reflection to produce the value (C^2 the squared speed of light) by which the light beam can be created-

Shortly- while the unified wave is reflected in the solar system three times the real effect is done by two reflections only and for that the data shows general reflection in two times only as seen in the previous data and its discussion- means- the data refers to the real final effect of the energy reflections and not to each procedure of this reflection- shortly- if we remove Neptune from the solar system that will cause the reflections to be two reflections only because Neptune negative effect will be removed – Neptune negative effect will be discussed in point no. (**)    

(11thItem) What’s The Negative Effect Done By Neptune Motion On The Gravitational Waves? 

The story with proves is found in point no. (3) of this paper- let’s summarize it here

(1)

Mars original orbit was between Mercury and Venus and Pluto was The Mercury moon revolves around Mercury- some collision is done in the inner planets- as a result Mars had migrated from its original orbit to its current one– in its motion Mars had collided with Venus and then with the Earth and Mars is the planet caused The Earth moon creation (Giant impact hypothesis is wrong)  

Pluto was the Mercury moon and its size was equal Mercury size- Pluto also had migrated because of the same collision- Pluto had migrated to the end point in the solar system (Pluto orbital distance 5906 million km) -in that time– Neptune occupied this orbit– means Neptune original orbital distance was 5906 million km-

Shortly-

Pluto had collided with Neptune strongly and Pluto pushed Neptune out of its orbit and Pluto had occupied Neptune orbit, even Pluto put Neptune out of Pluto motion area– that’s why Pluto eccentricity distance = Pluto Neptune distance=1410 million km (Mars Migration theory is proved in point no. **)

(2)

We know the light created all planets orbits before to create any planet- here- we have a dilemma- because – Pluto pushed Neptune out of Neptune orbit and also out of all created orbits (the train be out of all railways) and Neptune had no orbit to revolve around the sun.

(3)

As we have discussed- the planet moves and produces energy (½ mv^2) and this energy is stored in the space in moving waves –

Because all planets revolve around the sun in the same direction all planets motions energies waves move toward Pluto- and in Pluto orbit all waves be unified together into one unified wave moves by 205.8 km/s  

(4)

Pluto reflected the unified wave (205.8 km/s) to be sent to Venus – Now – Pluto sends great energy toward Venus – the energy moves from Pluto to Neptune and then Neptune should send the energy to Uranus – BUT

Simply Neptune got the energy for itself and didn’t send the energy to Uranus- why? because Neptune used the energy to build its current orbit – by this energy Neptune orbit is created and Neptune orbit is very new orbit relative to all planets orbits- also Neptune orbit is created by Neptune and not by the light beam as the other orbits

(5)

Shortly Neptune captured the energy sent from Pluto, and captured Pluto itself forces it to moves with Neptune rotation period (Pluto had no rotation period), as a result, Jupiter tried to release Pluto from Neptune but Neptune captured Jupiter itself and now Neptune, Jupiter and Pluto all of them move by Neptune rotation period and the two planets follow Neptune motion

(6)

Uranus tried to find solution- for that – Uranus created an interaction with the Earth planet- by this interaction a new planet is created which is Saturn   

Uranus created Saturn for the war with Neptune- and now Saturn goes to fight with Neptune- first victory is that (Saturn set Jupiter free of Neptune capture and Jupiter got a new rotation period) and the second victory is (Saturn set Pluto free of Neptune capture and Pluto got a new rotation period) and the third victory (Saturn release the energy from Neptune) BUT

Neptune build its orbit by this energy and the rest is around (0.5%) only!

In details – Pluto sent the energy in a moving wave its velocity equal (205.8 km/s)^2 But Saturn got from Neptune a moving wave its velocity only (205.8 km/s) (without square) - The rate around (0.5%) only –but why did Saturn get this small energy at all? We should remember

The unified wave (205.8 km/s) contains all planets motions energies- if Saturn gets this wave, Saturn can reflect this wave one more time to produce the required value (205.8)^2 and send it to Venus to complete the process safely-

But if Saturn doesn’t get this unified wave (205.8 km/s) Saturn will be forced to gather the planets motions energies to create this unified wave   

Means- Saturn got the small energy (0.5 %) from Neptune But this small energy can be working to complete the process and if this energy is lost the process can not be completed that’s why this small amount of energy is very important and useful

Shortly

The situation is finished as following -  

Neptune built its orbit from Pluto energy and the rest energy (0.5%) is small amount of energy but very useful and Saturn got this energy from Neptune and the energy was in unified wave its velocity (205.8km/s) and Saturn reflected this wave toward Venus and the wave reached Venus moves by speed of light as a result for Saturn reflection by that the process to produce the sun rays can be completed safely and the planets (Pluto and Jupiter) are free now from Neptune capture- everything is so good now    

But-

Neptune tells about the revenge! Spite Neptune built its orbit from Pluto energy but still the devil dreams by the revenge

What can Neptune do to cause more problems for the sun creation?  

The unified wave reaches Venus moving by speed of light (300000 km/s), and now Neptune will cause to decrease the velocity by (1% one percent only)

Why? because the light beam is created by quantum and if the speed is less 1% that tells No Light Beam Can Be Created-

But what would happen by this speed?

The speed 99% of speed of light (297000 km/s) is high speed and causes Lorentz transformation- specially- it causes Lorentz length contraction effect with rate 7.1

Why is this very bad thing?

Because the motion energy is produced by the planets motions and these energies should be gathered into one point to be sufficient to produce the light beam- now the length contraction effect will cause difficulties to gather the planets energies because the planets energies are found in distances- here the distances will be shorter and that will create great difficulties to gather all energies in one point

Shortly- Neptune contraction effect caused to scatter the motion energy in the space and by that the motion energy will never be able to produce the sun rays – the devil works-

Now – we follow this battle from near point- how can Neptune decrease the unified wave velocity with one percent? 

Neptune causes Saturn rotation period to be 10.7 hours- this is Neptune method to decrease the wave motion velocity – how?

Saturn circumference 378675 km and Saturn velocity 9.7 km/s means Saturn needs 10.84 hours to rotate around its axis a complete rotation (360 degrees) - but the period 10.7 h causes Saturn to rotate only (355 degrees)- means- for each rotation period Saturn needs 518 seconds to compete its rotation and that means there’s a distance of Saturn circumference (5040 km) is still need to be passed while the rotation period is finished- this distance Neptune uses to decrease the wave velocity – because

Saturn velocity = 1.8 Neptune velocity and 5040 km = 1.8 x 3000 km 

The speed of light is 300000 km/s and the discount distance is 3000 km and the rest is 297000 km (99% speed of light)

Shortly- Neptune effect on Saturn motion causes to decrease the wave velocity with 1% and creates the speed 99% C by which the length contraction effect is created and by that the planets motions energies are scattered in the space –

But - Saturn still try to help us- by that-

Saturn created a bridge between Uranus and Pluto (above Neptune) and on this bridge the sun rate of time is created and by that the planets motions energies can be gathered together based on defined periods and cycles – by this rate of time the sun rays is created - but –because Saturn is busy in the rate of time creation- the battle leader now is Jupiter- by that Jupiter defines the sun position in the sky and Jupiter defines the sun diameter- the story is proved in details in point no. (3) because the planets data tell this story so clearly  

(12th Item) Can The Planets Motions Use Different Rates Of Time? 

The solar system is created from one light beam energy- means- the solar planets matters and their distances are created from one energy and this one energy is provided by one light beam and this light beam moves by speed = 1.16 million km per second- the light built the solar system starting its motion from Mercury orbit toward Pluto orbit- the light created the planets orbits before any planet creation- means- all orbits are created before any planet creation- the orbits are created based on each another- after the light created all orbits and reach to Pluto orbit- the light energy is consumed in the space creation- and the rest energy is found in one light beam its speed is (300000 km/s = the known speed of light) means the light beam started the motion in Mercury orbit with speed 1.16 million km per second and reached to Pluto orbit with speed 300000 km/s

In Pluto orbit -

The light could Not move any further to build any more orbits because any additional space creation will consume more energy and that will decrease the light speed to be less than 300000 km/s (the known speed of light) – and – No known light moves by speed less than 300000 km/s – means- the light had no energy to move any further after Pluto orbit- for that- the light returns to its origin point (Mercury orbit) for that the light is reflected with speed (300000 km/s) from Pluto orbit to Mercury orbit passing through the built orbits – no energy is required in this motion for that the speed of light in Mercury orbit is 300000 km/s

By this energy (the light beam its speed 300000 km/s) all planets are created- but before the planets creation a coherence of light is occurred between the light 300000 km/s and the light 1.16 million km per second- this coherence of light is discussed in the paper definitions in details

After the coherence of light the planets are created by the light energy  (300000 km/s)

I- The Solar Planets Creation

Now

We can imagine that the energy of the original light beam (1.16 million km per second) is consumed to create the sea of water and the rest energy is one wave moves through this sea of water where this wave moves by speed of light (300000 km/s)

Means

The solar system is one energy (wave) moves by speed of light (C=300000 km/s)

And

The solar system needed to create a stationary point moves by zero velocity 

We understand (It’s impossible to find this stationary point) -BECAUSE

The solar system is similar to this wave of water or to the moving sea water and every thing is moving in it – NO stationary point can be found- for that the solar system has to create this stationary point –

The stationary point creation needs two procedures – let’s refer to them here

1st Procedure

The wave its velocity 300000 km/s revolves around a point in space (any point in space), the revolution motion creates 2 equal velocities on the revolution both sides - the two velocities are equal in value and opposite in direction- their total be Zero-shortly- the revolution motion creates A Stationary Point in the center of the revolution. 

2nd Procedure

The previous idea is correct- but –the velocity 300000 km/s is a huge one and to decrease it to Zero velocity this is a complex process– for that- the wave (300000 km/s) created small waves with low velocities to use them as steps to decrease the velocity to Zero- the small waves are The Planets- (The planet is a small wave moves by low velocity relative to the original wave its velocity 300000 km/s) 

Why Are These Small Waves Required?

Because the velocity 300000 km/s is decreased to Zero by using these small waves and their low velocities- the low velocities are used as steps to decrease the unified wave velocity (300000 km/s) to be (Zero)- this process decreases the velocity gradually from 300000 km/s to Zero depending on these small waves velocities (the planets velocities)  

Means- the planets are created for this process to decrease the wave velocity from 300000 km/s to Zero- and The Planet Is A Small Wave Moves By Low Velocity 

Shortly – the solar system has one complete system of velocities, Starting from Zero to 300000 km/s where the planets velocities are the steps between the two velocities –

The Proof

The unified wave velocity (205.8 km/s) proves this fact because

300000 = (205.8)^2 x 7.1

We know 7.1 is Lorentz length contraction effect produced by speed 99% of speed of light-

Shortly- the unified wave velocity (205.8 km/s) is defined as a function in the speed of light (300000 km/s) and that explains why the reflection of the wave accelerate the wave velocity to move by speed of light and not to move by any less velocity – simply-because the unified wave velocity is created as a function in the speed of light- and this unified wave velocity = the planets velocities total that tells the planets velocities definition depends on the speed of light

Shortly

By the wave revolution the stationary point is created in the revolution center and this point will be the sun (its velocity is 1 km/s=zero approximately) and the moving wave created the solar planets as small waves move by small velocities (or as geometrical points carried by the wave motion) -As a result – a relative motion is created between the moving wave (300000 km/s) and the sun point of space (1km/s)

II- The Solar Planets Definition

The planets are geometrical points created on the same one light beam (one wave of energy)- means- the light beam is similar to the sea of water and the planets are similar to ships sail on this sea of water- means- the planets motions depend on this light beam motion and by that the motion by speed of light (C=300000 km/s) is the motor by which the planets move- means- all planets motions depend on the light beam motion by speed of light (C=300000 km/s) –

Means- the planets are similar to carriages in one train and the light beam is the engine of this train- the light moves carrying all planets with it  

BUT if the planets are geometrical points found on one light beam and these points move by this light motion how can these planets to move by low velocities?

Because the planets motions use different rates of time –

for example – one second of the light clock = 6330 seconds of Mercury clock by that Mercury moves in (6330 s) a distance 300000 km which is passed by the light motion in one second.

(13th Item)  The Planets Motions Use Different Rates Of Time (Deep Analysis)   

  1. Preface (Proved Facts)
  2. The Rate Of Time Use Reason (The Solar System Creation Theory)
  3. The Planet Creation and Motion Description
  4. The Difficulty To Prove The Rate Of Time Use
  5. The Rate Of Time Importance And Creation
  6. The Energy Reflection Effect On The Rates Of Time 

(The Energy Reflection is explained and proved in Point No. 6)

  • The Solar System Main Rates Of Time
  • The Solar System Motion Depends on Mercury Clock
  • The Time Creation In The Solar System
  • The Earth Motion Effect On The Planets Motions Rates Of Time
  • The Rate Of Time Between Mercury And The Earth
  • The Rate Of Time Between Mercury And The Sun
  • The Rate Of Time Between The Sun And The Planets
  • The Rate Of Time Between The Sun And The Earth
  • Mercury behaves in place of the sun and The Earth in place of the planets
  • The Rate Of Time Of Saturn
  • The Rate Of Time Of Mars
  •  The Solar System Motion During 24 Hours Of Mercury Clock
  •  The Rate of time (1=1461)

20 The Used Rate Of Time For The Sun Rays Production

20-1 Preface

20-2 The Light Beam Production Method

20-3 The Light Beam Is Produced From (C^2)

20-4 The Earth Moon Motion Effect On The Sun Rays Production

20-5 The Solar System Motion Depends on Mercury Clock

20- 6 Mercury Day Period Problem

20-7 The Gravitational Waves move by speed of light (how)?

20-8   The Energy Reflection Effect

20-9   The rate (1=365.25) (the proves)

20-10 The Used Rate Of Time For The Light Beam Production

20-11 The Light Beam Production Process

21- 12 The Sun Rays Production Process Summary         

(Item no. 1) Preface (Proved Facts)

(FIRST FACT) ONE WAVE REVOLVES AROUND THE SUN

Let’s remember this idea

(1)

Planet motion energy creates waves in the space-

The space is similar to the sea of water and planet motion creates waves in the space as fish motion creates waves in the sea- let’s see the picture accurately,

We observe one swimming fish in the sea- the fish hits the sea water by its tail and pushes some water and by that the fish can swim and move- we conclude the water moves by a velocity Equal the fish velocity because of the reaction force.

Similar to that-

Mercury motion energy creates waves in the space- the wave velocity equal Mercury velocity (47.4 km/s) because of the reaction force- means – all planets motions energies create waves in the space and these waves move by these planets velocities- now these waves are similar to the water waves they move far from the source and can be reflected- now- because the planets revolve around the sun in the same one direction, the planets motions energies waves move in one direction toward Pluto (Perpendicular on the revolution direction) – and these waves are unified together in Pluto orbit and by that one unified wave is produced moves by 176 km/s (the 9 planets velocities total)-

And this wave (176 km/s) is reflected from Pluto to Venus- and finally

There’s one wave revolves around The Sun its velocity (205.8 km/s)

(because the energy is stored finally in the Earth moon orbit that necessitates to add the moon velocity to the total 176+29.8 = 205.8 km/s)

(2)

I claim these waves are the gravitational waves, the scientists called them wrongly (gravitational) supposing that they are created by the sun gravitational field- I proved that (The sun does NOT create a gravitational field) and these waves are produced by the planets motions energies.

(Notice. The reflection of energy will be explained here)

Shortly, this fact tells one wave revolves around the Sun its velocity is 205.8 km/s

Means-while we see the planets revolution, this wave revolves also but we don’t see it

(SECOND FACT) THE RATE OF TIME NECESSITY

We know, There’s One Wave In The Space Revolves Around The Sun Its Velocity= 205.8 km/s 

The Sun motion velocity is (1km/s=zero approximately), means, The sun is stationary point- here we have a relative motion between 2 velocities

The wave velocity (205.8 km/s) and the sun velocity (Zero approximately)-

This relative motion is the solar system design cornerstone because

In this relative motion the planet motion energy is stored-   

Let’s explain that

Planet motion energy is stored in the space in waves form, and this energy created the one wave revolves around the sun its velocity (205.8 km/s) but

The planets still move and produce motions energies- means- more energy need to be stored- for that- the rate of time is used to increase the capacity of the energy storing.

Let’s use example

One hour of Mercury clock = 24 hours of Pluto clock-

This rate means –

While Mercury moves in a solar day (24 hours) a distance 4.09 million km, Pluto moves in this same period a distance= 9.7 million km, because, (24 hours) of Mercury clock = 24 solar days of Pluto clock- that shows in the same period Pluto moves a distance longer than double Mercury motion distance 

BUT

All These Motions Energies Are Transformed Into Waves In The Space- And All Of Them Are Parts In The One Unified Wave- Means- Pluto Motion Contributes In The One Unified Wave By Energy More Than Mercury Motion Energy- that increase the capacity to store the energy

That explains how the rate of time using effect on the planets motions

A Question - Why Should The Energy Be Accumulated?

Because, we need to use the energy and the less amount energy can’t be useful and we need massive amount of energy to use it- 

Shortly, the sun rays is created from this stored energy and the light beam production process need massive energy, and the planet motion energy is very small amount of energy can’t produce any light beam, for that, the planets motions energies have to be stored and accumulated to create the required quantum of energy which is sufficient to produce the light beam.

NOTICE

Here there are 2 facts we need to consider

First,

There’s a relative motion between the unified wave (205.8 km/s) and the sun point (1 km/s), All planets motions energies are put in this relative motion- by that, the planets be similar to fingers and this relative motion is the hand of these fingers- No planet motion energy is used out of this relative motion-

Second,

Now the relative motion has 2 velocities, the unified wave (205.8 km/s) and the sun point (1 km/s), and the planets still move and add more motion energies – this more motion energies increase the different velocity 205.8 km/s gradually till this velocity be equal speed of light 300000 km/s - The light beam is produced based on this high velocity

Let’s remember the proof

This Is Extraordinary: Gravity Can Create Light, All on Its Own

https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsnHYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"cvid=620db4352aa943e2b454919a7b724604HYPERLINK "https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83”&HYPERLINK “https://www.msn.com/en-us/news/technology/this-is-extraordinary-gravity-can-create-light-all-on-its-own/ar-AA19YL5d?ocid=hpmsn&cvid=620db4352aa943e2b454919a7b724604&ei=83"ei=83

The article tells- the gravitational waves can move by high velocity and can produce A Light Beam– means- the different velocity should b increased from 205.8 km/s to speed of light (300000 km/s) to produce the light beam

(notice, I have proved the gravitational waves are produced by the planets motions energies and not by the sun gravitational field)

Notice

Planet Creation details can help greatly because it gives another vision for this same fact- it’s discussed in item (no.3)- 

(THIRD FACT) There Are Relativistic Effects In The Solar System

The relativistic effects are proved because they effect on the planets data – means- because the solar system have relativistic effects, the planets data are effected by these relativistic effects 

The relativistic effects prove there’s a high velocity motion found in the solar system, by that, the gravitational waves move by speed of light is a fact proved by the relativistic effects found in the solar system –

Please note- the relativistic effects in the solar system depends on the rate (7.1) while the planets velocities analysis shows this same rate (7.1) proves the high velocity motion is a real motion in the solar system

The relativistic effects are proved in point No. (5)

(FOURTH FACT) The Energy Is Reflected In The Solar System

We agreed, the planets motions energies create waves in the space and these waves move toward Pluto, and these waves are unified together into one unified wave its velocity= 205.8 km/s (The planets velocities total) and then the wave is reflected toward Venus- in fact- the unified wave is reflected three times in the solar system   

First time, the wave is reflected from Pluto toward Venus – Means, the wave is reflected from Pluto to Neptune then to Uranus to Saturn to Jupiter to Venus

But

Second time, in Saturn, the wave is reflected inside Saturn body one more time, by that Saturn body works as mirrors and the energy is reflected between them- then the energy left Saturn moves in its original direction toward Venus

Third time, Venus reflects the energy toward Mars, and the energy finally is sorted in the Earth moon orbit between Venus and Mars   

The reflection of energy is very important because of many reasons we should study but here I refer to one reason only

The reflection of energy causes to reflect the planets data-

what’s used as (A) before the reflection will be used as (1/A) after the reflection-

and-  

what’s used as (a period of time) before the reflection will be used as (a distance) after the reflection – and vice versa

these effects on the data is very important because it explains why the planets data is reflected on one another- and that also proves the gravitational waves are produced by the planets motions energies and not by a gravitational field because the data is belonged to the planets–and the reflection is done by the waves–here the gravitational field has no any effect.

the reflection of energy is proved by strong proves in point no. (6)

(Item no. 2) The Rate Of Time Use Reason (The Solar System Creation Theory)

(1)

The solar system is created from one energy- in details

The planets matters and their distances are created from one energy –this energy is provided by one light beam– and this light beam moves by a velocity 1.16 million km per second- the energy is consumed in the space and time creation- the energy consumption caused to decrease the light velocity and the rest energy is one light beam its velocity 300000 km/s (the known speed of light) 

The space and time creation is done by the equation (1.16/0.3) x 2π = 24.3

The equation tells, the space is created in curved lines (2π) and the time is created based on the solar day (24 hours) (later the reason will be explained)

Notice-the space is created from the energy (1.16 million km/ second) but the planets are created from the energy (300000 km/s)- the planets are created after the space.  

We realize this is the same one light beam and the two velocities are found as a result for the energy consumption in the space creation.

Shortly the space is created by the energy (1.16 mkm/s) but in this space there’s one wave moves by 300000 km/s from this wave the planets are created 

(2)

Shortly- the planets matters and their distances are created from One Light Beam Energy- The planets are geometrical points found on this one light beam- by that the planets are similar to knots (or nodes) on ONE rope or cable.  

The planets are carried on this light beam and move by this light beam motion

By that- The Planets Are Similar To Carriages In One Train- and the light beam motion is this train engine- the light moves carrying all planets with it- 

Light moves one motion and passes one distance in one period of time- The planets have to move this same motion and pass this same distance in this same period of time- BUT

The planets velocities are less than light velocity for that the planets use rates of time for their motions–by the rates of time- the planets move equal distances in equal periods of time and this distance equal also the light motion distance.

For example-

Mercury velocity = 1.6 the Earth velocity- that means – one hour of Mercury clock = 1.6 hours of the Earth clock- Why??

Because Mercury and the Earth are carried by the same one light beam motion- the light moves one motion and passes one distance in one period of time- by that Mercury and the Earth have to move this same motion and to pass this same distance in this same period of time- but the two planets velocities are different- for that- the planets use different rates of time based on their velocities rates and by that the planets move equal distances in the same period of time – that’s the reason to use the rates of time-

(3)

The Velocity 1.16 Million Km Per Second (The Proves)

(first proof) Planet Velocity Analysis  

I have discovered a rule tells (v1v2=322) (my fifth equation)– let’s prove it

Data

322 = 47.4 km/s (Mercury velocity)  x 6.8 km/s  (Uranus velocity)                         

322 = 35 km/s  (Venus velocity) x 4.7 km/s (Pluto velocity) x 2             

322 = 29.8 km/s (the Earth velocity) x 5.4 km/s (Neptune velocities) x 2      

322 = 24.1 km/s (Mars velocity) x 13.1 km/s (Jupiter velocity)               

322 = (17.9 km/s)^2 (Ceres velocity) (Max error 2%)

Discussion

The data tells the planets velocities are created complementary one another and based on this constant (322)- but why the constant equal =322? 

1160000 seconds = 3600 x 322 hours – means

Mercury (47.4km/s) moves a distance 1160000 km in a period (6.8 hours) and Uranus (6.8 km/s) moves a distance 1160000 km in a period (47.4 hours) – that proves the constant 322 depends on the velocity 1160000 km/s–means- All planets velocities are defined based on this velocity 1160000 km/s which proves this velocity is a fact

Notice

(The inner planets orbital inclinations are defined by the rule (v1/v2), for example, Mercury orbital inclination 7 deg = Mercury velocity 47.4/ Uranus velocity 6.8 that proves the effect of the rule (v1v2=322) on the planet motion)

(Second proof) The planets orbital circumferences total

100733 million km = 86400 seconds x 1160000 km/s

(100733 million km= The Planets Orbital Circumferences Total)

Means- the velocity 1160000 km/s passes per solar day (86400 s) a distance =100733 million km= The Planets Orbital Circumferences Total 

Shortly- the planets orbits are defined based on this velocity-

Notice / the planets motions distances total in 1461 solar days = 25920 million km = the distance is passed by light known speed (300000 km/s) in one solar day (86400s)

(1461 days = the Earth cycle = 365 +365 +365 +366)

(the distances total=the 9 planets motions distance + the Earth moon motion distance)

(Third proof) The Planets Distances Creation

The planets distances are created depending on this velocity (1160000 km/s), let’s prove that,

778.6 million km (Jupiter orbital distance) = 1160000 km/s x 671 seconds

721 million km (Jupiter Mercury distance) = 1160000 km/s x 629 seconds

629 million km (Jupiter Earth distance)      = 1160000 km/s x 551 seconds

4900 million km (Jupiter Orbital Circumference)= 1160000 km/s x 2094 seconds x 2

5906 million km (Pluto Orbital Distance)= 1160000 km/s x 5127 seconds

Where

671 million km = Jupiter Venus distance

551 million km = Jupiter Mars distance

5127 million km = Jupiter Pluto distance

Shortly, the light beam its velocity 1160000 km/s uses the distances as periods of time to create more distances based on one another– for that- the distances are created as one network and one group- Jupiter distances proves this fact clearly-  

We remember also the creation equation (1.16/0.3) x 2π = 24.3 by which the space and time are created- the equation tells- all distances are created in curves (2π) and all periods are created based on the solar day (24 hours)

This data tries to prove the velocity 1.16 million km/s is a fact and my paper provides more proves for this fact-

(Item no. 3) The Planet Creation and Motion Description

(i)

Before the solar planets creation

The solar system energy was found in one wave moves by speed of light 300000 km/s- Means-

The solar system is one wave moves by speed of light (300000 km/s)

Now

The Solar System needs To Create A Stationary Point Its velocity Zero relative to the moving wave its velocity is 300000 km/s

This is the basic information in the solar system design-

The solar system needs to create a stationary point relative to the wave motion- by that – two velocities will be found which are (v1= the wave its velocity 300000 km/s) and (v2= Zero= the stationary point relative to the wave motion)–these two velocities produce a relative motion with different velocity 300000 km/s– this relative motion is the solar system design cornerstone.

Notice– The solar system is carried by the light beam motion, NO stationary point can be found here – it’s similar to a ship on this sea water- Nothing can stop- because the motion is done forcedly by the sea water –

The stationary point will be similar to the whirlpool (vortex) on the sea page- 

But

The solar system needs to create this stationary point

Now – let’s try to create this stationary point in following

The solar system uses two procedures to do that,  

(ii)

The first procedure

The wave its velocity 300000 km/s revolves around a point in space (any point in space), the revolution motion creates 2 equal velocities on both sides of the revolution- the two velocities are equal in value and opposite in direction- their total be equal Zero-means- the revolution motion creates a stationary point in the center of the revolution. 

The second procedure

The previous idea is correct- but –the velocity 300000 km/s is a huge one and to decrease it to Zero velocity this is a complex process– for that- the wave (300000 km/s) created small waves with low velocities to use them as steps to decrease the velocity to Zero- the small waves are The Planets- (The planet is a small wave moves by low velocity relative to the original wave its velocity 300000 km/s) 

Why Are These Small Waves Required?

Because the velocity 300000 km/s is decreased to Zero by using these small waves and their low velocities- the low velocities are used as steps to decrease the unified wave velocity (300000 km/s) to be (Zero)- this process decreases the velocity gradually from 300000 km/s to Zero depending on these small waves velocities (the planets velocities)  

Means- the planets are created for this process to decrease the wave velocity from 300000 km/s to Zero- and The Planet Is A Small Wave Moves By Low Velocity  

Shortly – the solar system has one complete system of velocities, Starting from Zero to 300000 km/s where the planets velocities are the steps between the two velocities – let’s prove that here

(iii)

300000 km = 7.1 x (205.8)^2 where

7.1 is Lorentz length contraction effect for velocity 297000 km/s (99% of speed of light)

205.8 km/s = the 9 planets velocities total (176 km/s) + the Earth moon velocity

(The moon velocity =29.8 km/s = the Earth velocity because they revolve together)

Why does the data use the squared value (205.8)^2?

We know the answer- but - Let’s remember it

The planets are geometrical points on the same light beam and move with its motion- for that- the planets velocities rates creates rates of time– for example-  Mercury velocity = 1.6 the Earth velocity- that means – one hour of Mercury clock = 1.6 hours of the Earth clock- Why??

Because Mercury and the Earth are carried by the same one light beam- the light moves one motion and passes one distance in one period of time- by that Mercury and the Earth have to move this same motion and to pass this same distance in this same period of time- but the two planets velocities are different- for that- the planets use different rates of time based on their velocities rates and by that the planets move equal distances in the same period of time –

Now- the velocity (205.8 km/s) move relative to the stationary point (Zero) and creates a rate of time (1 second = 205.8 seconds) –

(one second of the unified wave clock = 205.8 seconds of the stationary point clock)

But – the energy is reflected in the solar system (I prove that in point no.6),

The energy reflection reflects the players – means

(one second of the stationary point clock = 205.8 seconds of the unified wave clock)

The stationary point will be THE SUN – by that

(one second of the sun clock = 205.8 seconds of the unified wave clock) – means

(one second of the sun clock = 205.8 seconds of any planet clock) –

Now during one second of the sun clock, the wave clock needs 205.8 seconds while the wave moves by a velocity 205.8 km/s- means –

During one second of the sun clock, the wave moves 42253 km = 300000 km /7.1

That creates the different velocity 300000 km/s between the sun motion and the wave motion-

Notice 1

The wave (205.8 km/s) moves during 1461 seconds a distance = 300000 km, and we know the Earth cycle (1461 days = 365 +365 +365 +366)

That tells, the speed of light (300000 km/s) is performed by the rate of time and that causes to create the Earth cycle-   

Notice 2

Planet velocity is created by the rate of time- means- if no rate of time can be used – No planet velocity can be created – instead- all motions will be only by speed of light (300000 km/s)- the planet can create a small velocity because it can use rate of time

We realize that clearly because

The planets motions depend on the light motion- by that – the motion is done by One Motor only which moves by speed of light (300000 km/s), the planets can only move by speed of light or create a rate of time for their smaller velocities - No more options are provided  (CONT)    

Gerges Francis Tawdrous +201022532292

Physics Department-  Physics & Mathematics  Faculty 

Peoples’ Friendship university of Russia – Moscow   (2010-2013)

Curriculum Vitae                  https://www.academia.edu/s/b88b0ecb7c

E-mail                            mrwaheid@gmail.com, mrwaheid1@yahoo.com

                                      gergesgerges@yandex.ru                   

ORCID                          https://orcid.org/0000-0002-1041-7147

Facebook                        https://www.facebook.com/gergis.tawadrous

VK                                 https://vk.com/id696655587

Tumblr                           https://www.tumblr.com/blog/itsgerges 

Researcherid                   https://publons.com/researcher/3510834/gerges-tawadrous/

Google                                https://scholar.google.com/citations?user=2Y4ZdTUAAAAJ&hl=en

Livejournal                     https://gerges2022.livejournal.com/profile

Pocket                                                                     https://getpocket.com/@646g8dZ0p3aX5Ad1bsTr4d9THjA5p6a5b2fX99zd54g221E4bs76eBdtf6aJw5d0?src=navbar

PUBLICATIONS

box                                 https://app.box.com/s/47fwd0gshir636xt0i3wpso8lvvl8vnv

Academia                       https://rudn.academia.edu/GergesTawadrous

List of publications         http://vixra.org/author/gerges_francis_tawdrous

Slideshare                            https://www.slideshare.net/Gergesfrancis

Text
draegerit
draegerit

DUINO EDU #1 - Grove LED

DUINO EDU #1 - Grove LED

In diesem Beitrag möchte ich dir erläutern wie du die Grove LED in der Entwicklungsumgebung DUINO EDU programmierst.

Die Entwicklungsumgebung DUINO EDU habe ich dir bereits im gleichnamigen Beitrag Arduino Programmierung mit DUINO EDU vorgestellt.
Ich veröffentliche diesen Beitrag speziell für die Entwicklungsumgebung DUINO EDU, dieses ist ein Wunsch vom leser Sieglinde L.. In der neuen Beitragsreihe zum Open Roberta Lab stelle ich dir eine andere Variante vor wie du diese und andere Shields grafisch programmieren kannst.

Benötigte Ressourcen für den nachbau der Schaltungen


Wenn du die nachfolgenden Schaltungen nachbauen möchtest, dann benötigst du:
- einen Arduino UNO*,
- ein USB-Datenkabel*,
- ein Grove Connector Shield für den Arduino UNO*,
- ein Grove LED Shield*,
- ein Grove Connector Kabel*,
- einen kleinen Schlitzschraubendreher
Hinweis von mir: Die mit einem Sternchen (*) markierten Links sind Affiliate-Links. Wenn du über diese Links einkaufst, erhalte ich eine kleine Provision, die dazu beiträgt, diesen Blog zu unterstützen. Der Preis für dich bleibt dabei unverändert. Vielen Dank für deine Unterstützung!
Mit dem kleinen Schlitzschraubendreher regeln wir die Helligkeit der LED am Grove LED Modul.

Aufbau des Grove LED Shields


Für den Aufbau der Schaltung verwende ich Grove Shields diese haben den Vorteil das die Schaltung schnell und vorallem für Anfänger leicht zu bewältigen ist. Der große Nachteil ist leider das die Shields recht teuer sind.
Aufbau des Grove LED Shields
Aufbau des Grove LED Shields
Über den Drehpotentiometer lässt sich die Helligkeit regeln. Dieses ist besonders nützlich wenn du die einfache LED durch eine ultrahelle LED ersetzt hast.

Grove Connector Shield für den Arduino UNO


Damit wir die Grove Shields an den Arduino UNO anschließen können, benötigen wir zusätzlich ein Modul. Dieses bekommst du bereits ab 8€ zzgl. Versandkosten.
Dieses Modul passt auch auf den Arduino Mega und ist damit noch universeller einsetzbar.
Grove Connector Shield
Grove Connector Shield auf dem Arduino UNO
Grove Connector Shield auf dem Funduino Mega
Anschlüsse des Base Shield v2
In diesem und folgende Beiträge verwende ich das Base Shield v2 welches nachfolgende Anschlüsse hat:
- eine UART Schnittstelle (RX & TX),
- vier I2C Schnittstellen,
- vier analoge Pins,
- sieben digitale Pins (davon drei PWM Pins),
Sowie sind per Buchsenleiste die Pins des Mikrocontrollers nach oben geführt.

Aufbau der Schaltung am Arduino UO


Die Grove LED schließe ich in meinem fall an den digitalen Pin D3 an. Der Pin D3 ist zusätzlich noch ein PWM Pin und somit können wir über diesen auch später in einem Beispiel die Helligkeit regeln.
Grove LED am Arduino UNO Grove Connector Shield
Grove LED am Arduino UNO Grove Connector Shield

Programmieren in DUINO EDU


Ich setze voraus das du die Entwicklungsumgebung DUINO EDU installiert und eingerichtest hast. Wenn dieses nicht so ist, dann schaue doch in den oben verlinkten Beitrag vorbei, dort habe ich dir ausführlich erläutert wie du dieses machst.
Beispiel 1 - eine blinkende LED
Das erste Beispiel ist eine blinkende LED.

Grove LED – blinkHerunterladen
Beispiel 2 - ein FadeEffekt programmieren
Wie erwähnt haben wir die LED an einen PWM Pin angeschlossen, damit können wir nun die Helligkeit auch über das Programm regeln. Dabei setzen wir an den Pin einen analogen Wert zwischen 0 und 255.

Grove LED – FadeEffektHerunterladen
Beispiel 3 - zufälliges blinken einer LED
Das zufällige blinken einer LED erzeugen wir über einen zufallswert welchen wir uns generieren lassen und damit eine Pause beim blinken einlegen.

Grove LED – zufälliges blinkenHerunterladen
Beispiel 4 - lesen eines Wertes von der seriellen Schnittstelle für die Helligkeit der LED
Im letzten Beispiel möchte ich dir nun zeigen, wie du einen Wert von der seriellen Schnittstelle einlesen kannst und diesen Wert als Helligkeit an der LED visualisierst.

Grove LED – serielle Schnittstelle lesen und Wert für die Helligkeit verwendenHerunterladen

Read the full article