Space Flight Simulator Lite 5

Moonjs is an online Apollo Guidance Computer (AGC) simulator. It is a port of by from C to javascript/ using the.AGC was the main computer system of the Apollo program that successfully landed 12 astronauts on Moon. There was one AGC on each of the Apollo Command Modules and another one on each Lunar Module. There was also a second backup computer system called Abort Guidance System (AGS) on the Lunar Modules, which is simulated by Virtual AGC, but not the current version of Moonjs.Astronauts interacted with AGC by using DSKY, a combination of 7-segment numerical displays, indicator lights and a simple keypad, which is simulated on this page.

Download Space Flight Simulator 2.5.2.apk APK BLACK files version 2.5.2 gpaw.projects.space.spaceflight Size is 22143784 md5 is 2896c3f874db0f30d85db1cd6d9c028d. Space Flight Simulator Lite is a Space Simulation that allows the player to control a unique spacecraft and explore different planets, including the solar system.

The simulated DSKY communicates with a simulated AGC, which in turn runs a copy of Colossus 249, the flight software that flew on the Apollo 9 Command Module.DSKY human interface was built around the concept of Verbs and Nouns. For example, Verb 06 can be used to display the value of near 100 different memory locations selected based on the given Noun.Some Examples Codes:. Test the DSKY lamps (digits and indicators) by enteringVERB 3 5 ENTR.

TryVERB 1 6 NOUN 6 5 ENTR.This command monitors the current time. The lower 5-digit display shows seconds,the middle one minutes and the topmost one hours elapsed since AGC powered up. Start program P00, the idle program, by enteringVERB 3 7 ENTR 0 0 ENTR. EnterVERB 9 1 ENTR.It shows the checksum of the first bank of the fixed memory (the so-called core-ropes in AGC terminology).The fixed memory is divided into 38 banks, each containing 1024 (1K) 15-bits words.

The top 5-digit displayshows the checksum in octal, which should be either the bank number or its 1-complement (e.g., for bank 3either a value of 00003 or 77774 is acceptable). The middle row is the bank number and the third row is abugger word appended to the end of each bank to make the checksum the correct value. By enteringVERB 3 3 ENTRor pressingPRO,you can get the statistics for the next bank. Let's try some spaceflight related programs! EnterVERB 0 6 NOUN 6 2 ENTR.It shows the current velocity (top row), altitude rate (middle row) and altitude (bottom row).Unfortunately, we are not going to space today, so all three show 00000 and will continue todo so. During an actual launch (or a simulated one), they would update with current values.If instead of Verb 06, we use Verb 16, the same values are shown and updated constantly untila different command is entered.

In fact, this program was used during the boost phase of Saturn Vlaunches to allow astronauts monitor the progress of the launch vehicle.For many more examples and details about AGC, its programming and operation, two great sources arethe excellent website by Ronald Burkey and'The Apollo guidance computer: architecture and operation' by Frank O'Brien. The Wikipediafor AGC also containslots of useful information and a comprehensive bibliography.Why Javascript?Recent advances in the javascript language - such as optimized engines, ahead-of-time (AOT) compilation, and asm.js -make it possible to write computationally extensive applications in javascript. My previous experiencewith online javascript-based simulation ( and )was very positive and convinced me of the suitablity of the HTML5/javascript combination in writingportable, easy-to-use simulators. Strafed in a sentence.

Moonjs is the logical next step that uses Emscripten compiler to convertexisting C code into asm.js, a highly-optimizable subset of javascript.@2013-2019 Shahriar Iravanian.