├── .github ├── dependabot.yml └── workflows │ └── build-and-test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── circumstellar-habitable-zone-simulator ├── .eslintrc.json ├── dist │ ├── 1f73fdd7e25a9e22e84f.png │ ├── 4ae1f2ba47d1b33aa1b3.png │ ├── 85f2f12b981a33caeefe.png │ ├── bundle.js │ ├── bundle.js.LICENSE.txt │ └── d989ffb962a220b57005.png ├── index.html ├── package-lock.json ├── package.json ├── scripts │ ├── requirements.txt │ ├── shzStars.dat │ ├── shz_loader.py │ └── temp_loader.as ├── src │ ├── diagram.jsx │ ├── images │ │ ├── sustainable.png │ │ ├── too-cold.png │ │ └── too-hot.png │ ├── main.jsx │ ├── nav.jsx │ ├── shzStars.js │ ├── star-properties.jsx │ ├── timeline.jsx │ └── utils │ │ ├── draggable-cursor.jsx │ │ ├── increment-range-input.jsx │ │ ├── index.js │ │ ├── numeric-range-input.jsx │ │ └── utils.js └── webpack.config.js ├── docs └── conversion-guide.md ├── eclipsing-binary-simulator ├── .eslintrc.json ├── dist │ ├── bundle.js │ └── bundle.js.LICENSE.txt ├── img │ ├── caleb │ │ ├── flux - ad boo.png │ │ ├── flux - ad her.png │ │ ├── flux - ae phe.png │ │ ├── flux - af gem.png │ │ ├── flux - ag phe.png │ │ ├── flux - al gem.png │ │ ├── flux - ar aur.png │ │ ├── flux - aw lac.png │ │ ├── flux - aw uma.png │ │ ├── flux - ay cam.png │ │ ├── flux - bp vul.png │ │ ├── flux - br cyg.png │ │ ├── flux - bs vul.png │ │ ├── flux - cd tau.png │ │ ├── flux - cw cma.png │ │ ├── flux - di her.png │ │ ├── flux - dm del.png │ │ ├── flux - ef dra.png │ │ ├── flux - ek cep.png │ │ ├── flux - ew ori.png │ │ ├── flux - fl lyr.png │ │ ├── flux - fs mon.png │ │ ├── flux - gg ori.png │ │ ├── flux - hs aur.png │ │ ├── flux - im aur.png │ │ ├── flux - iq per.png │ │ ├── flux - kp aql.png │ │ ├── flux - mr cyg.png │ │ ├── flux - nn cep.png │ │ ├── flux - rs ind.png │ │ ├── flux - rt crb.png │ │ ├── flux - rx ari.png │ │ ├── flux - rz cas.png │ │ ├── flux - sw cma.png │ │ ├── flux - sw cyg.png │ │ ├── flux - t lmi.png │ │ ├── flux - tt lyr.png │ │ ├── flux - tw cas.png │ │ ├── flux - tx uma.png │ │ ├── flux - uz dra.png │ │ ├── flux - v338 her.png │ │ ├── flux - v364 lac.png │ │ ├── flux - v380 cyg.png │ │ ├── flux - v442 cyg.png │ │ ├── flux - v459 cas.png │ │ ├── flux - v463 cyg.png │ │ ├── flux - v477 cyg.png │ │ ├── flux - v478 cyg.png │ │ ├── flux - v526 sgr.png │ │ ├── flux - v541 cyg.png │ │ ├── flux - v885 cyg.png │ │ ├── mag - ad boo.png │ │ ├── mag - ad her.png │ │ ├── mag - ae phe.png │ │ ├── mag - af gem.png │ │ ├── mag - ag phe.png │ │ ├── mag - al gem.png │ │ ├── mag - ar aur.png │ │ ├── mag - aw lac.png │ │ ├── mag - aw uma.png │ │ ├── mag - ay cam.png │ │ ├── mag - bp vul.png │ │ ├── mag - br cyg.png │ │ ├── mag - bs vul.png │ │ ├── mag - cd tau.png │ │ ├── mag - cw cma.png │ │ ├── mag - di her.png │ │ ├── mag - dm del.png │ │ ├── mag - ef dra.png │ │ ├── mag - ek cep.png │ │ ├── mag - ew ori.png │ │ ├── mag - fl lyr.png │ │ ├── mag - fs mon.png │ │ ├── mag - gg ori.png │ │ ├── mag - hs aur.png │ │ ├── mag - im aur.png │ │ ├── mag - iq per.png │ │ ├── mag - kp aql.png │ │ ├── mag - mr cyg.png │ │ ├── mag - nn cep.png │ │ ├── mag - rs ind.png │ │ ├── mag - rt crb.png │ │ ├── mag - rx ari.png │ │ ├── mag - rz cas.png │ │ ├── mag - sw cma.png │ │ ├── mag - sw cyg.png │ │ ├── mag - t lmi.png │ │ ├── mag - tt lyr.png │ │ ├── mag - tw cas.png │ │ ├── mag - tx uma.png │ │ ├── mag - uz dra.png │ │ ├── mag - v338 her.png │ │ ├── mag - v364 lac.png │ │ ├── mag - v380 cyg.png │ │ ├── mag - v442 cyg.png │ │ ├── mag - v459 cas.png │ │ ├── mag - v463 cyg.png │ │ ├── mag - v477 cyg.png │ │ ├── mag - v478 cyg.png │ │ ├── mag - v526 sgr.png │ │ ├── mag - v541 cyg.png │ │ └── mag - v885 cyg.png │ ├── mainsequence.png │ └── minihrdiagram.png ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── BinarySystemView.jsx │ ├── HRDiagram.jsx │ ├── LightcurveView.jsx │ ├── Window.jsx │ ├── d3 │ │ ├── Axes.jsx │ │ ├── PhaseControl.jsx │ │ └── Plot.jsx │ ├── main.jsx │ ├── presets.js │ └── utils.js └── webpack.config.js ├── exoplanet-transit-simulator ├── .eslintrc.json ├── dist │ ├── bundle.js │ └── bundle.js.LICENSE.txt ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── Lightcurve.js │ ├── LightcurveView.jsx │ ├── TransitView.jsx │ ├── d3 │ │ ├── Axis.jsx │ │ ├── DataCircles.jsx │ │ ├── PhaseControl.jsx │ │ └── Plot.jsx │ ├── main.jsx │ ├── presets.js │ ├── star-utils.js │ └── utils.js └── webpack.config.js ├── gas-retention-simulator ├── .eslintrc.json ├── dist │ ├── bundle.js │ └── bundle.js.LICENSE.txt ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── Chamber.jsx │ ├── MaxwellPlot.jsx │ ├── d3 │ │ ├── Axis.jsx │ │ ├── Cursor.jsx │ │ └── Plot.jsx │ ├── gases.jsx │ ├── main.jsx │ └── utils.js └── webpack.config.js ├── hydrogen-atom-simulator ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── arrow.svg ├── css │ ├── buttons.css │ ├── main.css │ ├── pause-switch.css │ └── slider.css ├── dist │ └── bundle.js ├── img │ ├── blue-circle.png │ ├── purple-spiral.png │ ├── white-oval.png │ └── yellow-spiral.png ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── Electron.jsx │ ├── EnergyLevelDiagram.jsx │ ├── EventLog.jsx │ ├── HydrogenAtomSimulator.jsx │ ├── MainView.jsx │ ├── ManualDeexcitation.jsx │ ├── NavigationBar.jsx │ ├── PhotonBeams.jsx │ ├── Slider.jsx │ ├── Spectrum.jsx │ ├── main.jsx │ └── utils │ │ ├── Button.jsx │ │ ├── FormatValues.jsx │ │ ├── TickMarksData.jsx │ │ └── WavelengthToHex.jsx └── webpack.config.js ├── lunar-phase-simulator ├── .eslintrc.json ├── Makefile ├── dist │ ├── bundle.js │ └── bundle.js.LICENSE.txt ├── img │ ├── circle-highlight.svg │ ├── earth.svg │ ├── moon.png │ ├── moon.svg │ ├── plane.svg │ ├── stickfigure.svg │ ├── time-compass.svg │ └── white-stickfigure.svg ├── index.html ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── CelestialSphere.jsx │ ├── MainView.jsx │ ├── MoonPhaseView.jsx │ ├── main.jsx │ ├── utils.js │ └── utils.test.js └── webpack.config.js ├── scripts └── update-build-info.py ├── small-angle-demo ├── .eslintrc.json ├── Makefile ├── dist │ ├── .gitkeep │ ├── bundle.js │ └── bundle.js.LICENSE.txt ├── img │ ├── beachball.svg │ └── person.png ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── VisualDemo.jsx │ ├── main.jsx │ └── utils.js └── webpack.config.js └── sun-motion-simulator ├── .eslintrc.json ├── dist ├── bundle.js └── bundle.js.LICENSE.txt ├── fonts └── helvetiker_bold.typeface.json ├── img ├── clock.svg ├── earthmap.svg ├── plane.svg ├── plane_all_n.svg ├── plane_all_s.svg └── stickfigure.svg ├── index.html ├── package-lock.json ├── package.json ├── src ├── AnimationControls.jsx ├── CelestialSphere.jsx ├── Clock.jsx ├── DatePicker.jsx ├── GeneralSettings.jsx ├── LatitudePicker.jsx ├── main.jsx ├── shaders │ └── MutedColorsShader.js ├── utils.js ├── utils.test.js └── utils │ └── WebGL.js └── webpack.config.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/README.md -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/.eslintrc.json -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/dist/1f73fdd7e25a9e22e84f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/dist/1f73fdd7e25a9e22e84f.png -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/dist/4ae1f2ba47d1b33aa1b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/dist/4ae1f2ba47d1b33aa1b3.png -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/dist/85f2f12b981a33caeefe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/dist/85f2f12b981a33caeefe.png -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/dist/bundle.js -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/dist/bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/dist/bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/dist/d989ffb962a220b57005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/dist/d989ffb962a220b57005.png -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/index.html -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/package-lock.json -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/package.json -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/scripts/requirements.txt -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/scripts/shzStars.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/scripts/shzStars.dat -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/scripts/shz_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/scripts/shz_loader.py -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/scripts/temp_loader.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/scripts/temp_loader.as -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/diagram.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/diagram.jsx -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/images/sustainable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/images/sustainable.png -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/images/too-cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/images/too-cold.png -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/images/too-hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/images/too-hot.png -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/main.jsx -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/nav.jsx -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/shzStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/shzStars.js -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/star-properties.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/star-properties.jsx -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/timeline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/timeline.jsx -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/utils/draggable-cursor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/utils/draggable-cursor.jsx -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/utils/increment-range-input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/utils/increment-range-input.jsx -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/utils/index.js -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/utils/numeric-range-input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/utils/numeric-range-input.jsx -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/src/utils/utils.js -------------------------------------------------------------------------------- /circumstellar-habitable-zone-simulator/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/circumstellar-habitable-zone-simulator/webpack.config.js -------------------------------------------------------------------------------- /docs/conversion-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/docs/conversion-guide.md -------------------------------------------------------------------------------- /eclipsing-binary-simulator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/.eslintrc.json -------------------------------------------------------------------------------- /eclipsing-binary-simulator/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/dist/bundle.js -------------------------------------------------------------------------------- /eclipsing-binary-simulator/dist/bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/dist/bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - ad boo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - ad boo.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - ad her.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - ad her.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - ae phe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - ae phe.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - af gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - af gem.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - ag phe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - ag phe.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - al gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - al gem.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - ar aur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - ar aur.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - aw lac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - aw lac.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - aw uma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - aw uma.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - ay cam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - ay cam.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - bp vul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - bp vul.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - br cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - br cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - bs vul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - bs vul.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - cd tau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - cd tau.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - cw cma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - cw cma.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - di her.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - di her.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - dm del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - dm del.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - ef dra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - ef dra.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - ek cep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - ek cep.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - ew ori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - ew ori.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - fl lyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - fl lyr.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - fs mon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - fs mon.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - gg ori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - gg ori.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - hs aur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - hs aur.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - im aur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - im aur.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - iq per.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - iq per.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - kp aql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - kp aql.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - mr cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - mr cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - nn cep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - nn cep.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - rs ind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - rs ind.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - rt crb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - rt crb.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - rx ari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - rx ari.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - rz cas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - rz cas.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - sw cma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - sw cma.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - sw cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - sw cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - t lmi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - t lmi.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - tt lyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - tt lyr.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - tw cas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - tw cas.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - tx uma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - tx uma.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - uz dra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - uz dra.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - v338 her.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - v338 her.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - v364 lac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - v364 lac.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - v380 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - v380 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - v442 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - v442 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - v459 cas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - v459 cas.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - v463 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - v463 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - v477 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - v477 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - v478 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - v478 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - v526 sgr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - v526 sgr.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - v541 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - v541 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/flux - v885 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/flux - v885 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - ad boo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - ad boo.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - ad her.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - ad her.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - ae phe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - ae phe.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - af gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - af gem.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - ag phe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - ag phe.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - al gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - al gem.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - ar aur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - ar aur.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - aw lac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - aw lac.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - aw uma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - aw uma.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - ay cam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - ay cam.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - bp vul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - bp vul.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - br cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - br cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - bs vul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - bs vul.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - cd tau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - cd tau.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - cw cma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - cw cma.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - di her.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - di her.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - dm del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - dm del.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - ef dra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - ef dra.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - ek cep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - ek cep.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - ew ori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - ew ori.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - fl lyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - fl lyr.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - fs mon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - fs mon.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - gg ori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - gg ori.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - hs aur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - hs aur.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - im aur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - im aur.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - iq per.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - iq per.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - kp aql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - kp aql.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - mr cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - mr cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - nn cep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - nn cep.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - rs ind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - rs ind.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - rt crb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - rt crb.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - rx ari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - rx ari.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - rz cas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - rz cas.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - sw cma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - sw cma.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - sw cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - sw cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - t lmi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - t lmi.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - tt lyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - tt lyr.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - tw cas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - tw cas.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - tx uma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - tx uma.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - uz dra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - uz dra.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - v338 her.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - v338 her.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - v364 lac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - v364 lac.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - v380 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - v380 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - v442 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - v442 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - v459 cas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - v459 cas.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - v463 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - v463 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - v477 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - v477 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - v478 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - v478 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - v526 sgr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - v526 sgr.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - v541 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - v541 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/caleb/mag - v885 cyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/caleb/mag - v885 cyg.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/mainsequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/mainsequence.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/img/minihrdiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/img/minihrdiagram.png -------------------------------------------------------------------------------- /eclipsing-binary-simulator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/index.html -------------------------------------------------------------------------------- /eclipsing-binary-simulator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/package-lock.json -------------------------------------------------------------------------------- /eclipsing-binary-simulator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/package.json -------------------------------------------------------------------------------- /eclipsing-binary-simulator/src/BinarySystemView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/src/BinarySystemView.jsx -------------------------------------------------------------------------------- /eclipsing-binary-simulator/src/HRDiagram.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/src/HRDiagram.jsx -------------------------------------------------------------------------------- /eclipsing-binary-simulator/src/LightcurveView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/src/LightcurveView.jsx -------------------------------------------------------------------------------- /eclipsing-binary-simulator/src/Window.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/src/Window.jsx -------------------------------------------------------------------------------- /eclipsing-binary-simulator/src/d3/Axes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/src/d3/Axes.jsx -------------------------------------------------------------------------------- /eclipsing-binary-simulator/src/d3/PhaseControl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/src/d3/PhaseControl.jsx -------------------------------------------------------------------------------- /eclipsing-binary-simulator/src/d3/Plot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/src/d3/Plot.jsx -------------------------------------------------------------------------------- /eclipsing-binary-simulator/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/src/main.jsx -------------------------------------------------------------------------------- /eclipsing-binary-simulator/src/presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/src/presets.js -------------------------------------------------------------------------------- /eclipsing-binary-simulator/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/src/utils.js -------------------------------------------------------------------------------- /eclipsing-binary-simulator/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/eclipsing-binary-simulator/webpack.config.js -------------------------------------------------------------------------------- /exoplanet-transit-simulator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/.eslintrc.json -------------------------------------------------------------------------------- /exoplanet-transit-simulator/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/dist/bundle.js -------------------------------------------------------------------------------- /exoplanet-transit-simulator/dist/bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/dist/bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /exoplanet-transit-simulator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/index.html -------------------------------------------------------------------------------- /exoplanet-transit-simulator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/package-lock.json -------------------------------------------------------------------------------- /exoplanet-transit-simulator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/package.json -------------------------------------------------------------------------------- /exoplanet-transit-simulator/src/Lightcurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/src/Lightcurve.js -------------------------------------------------------------------------------- /exoplanet-transit-simulator/src/LightcurveView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/src/LightcurveView.jsx -------------------------------------------------------------------------------- /exoplanet-transit-simulator/src/TransitView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/src/TransitView.jsx -------------------------------------------------------------------------------- /exoplanet-transit-simulator/src/d3/Axis.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/src/d3/Axis.jsx -------------------------------------------------------------------------------- /exoplanet-transit-simulator/src/d3/DataCircles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/src/d3/DataCircles.jsx -------------------------------------------------------------------------------- /exoplanet-transit-simulator/src/d3/PhaseControl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/src/d3/PhaseControl.jsx -------------------------------------------------------------------------------- /exoplanet-transit-simulator/src/d3/Plot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/src/d3/Plot.jsx -------------------------------------------------------------------------------- /exoplanet-transit-simulator/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/src/main.jsx -------------------------------------------------------------------------------- /exoplanet-transit-simulator/src/presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/src/presets.js -------------------------------------------------------------------------------- /exoplanet-transit-simulator/src/star-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/src/star-utils.js -------------------------------------------------------------------------------- /exoplanet-transit-simulator/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/src/utils.js -------------------------------------------------------------------------------- /exoplanet-transit-simulator/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/exoplanet-transit-simulator/webpack.config.js -------------------------------------------------------------------------------- /gas-retention-simulator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/.eslintrc.json -------------------------------------------------------------------------------- /gas-retention-simulator/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/dist/bundle.js -------------------------------------------------------------------------------- /gas-retention-simulator/dist/bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/dist/bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /gas-retention-simulator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/index.html -------------------------------------------------------------------------------- /gas-retention-simulator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/package-lock.json -------------------------------------------------------------------------------- /gas-retention-simulator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/package.json -------------------------------------------------------------------------------- /gas-retention-simulator/src/Chamber.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/src/Chamber.jsx -------------------------------------------------------------------------------- /gas-retention-simulator/src/MaxwellPlot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/src/MaxwellPlot.jsx -------------------------------------------------------------------------------- /gas-retention-simulator/src/d3/Axis.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/src/d3/Axis.jsx -------------------------------------------------------------------------------- /gas-retention-simulator/src/d3/Cursor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/src/d3/Cursor.jsx -------------------------------------------------------------------------------- /gas-retention-simulator/src/d3/Plot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/src/d3/Plot.jsx -------------------------------------------------------------------------------- /gas-retention-simulator/src/gases.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/src/gases.jsx -------------------------------------------------------------------------------- /gas-retention-simulator/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/src/main.jsx -------------------------------------------------------------------------------- /gas-retention-simulator/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/src/utils.js -------------------------------------------------------------------------------- /gas-retention-simulator/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/gas-retention-simulator/webpack.config.js -------------------------------------------------------------------------------- /hydrogen-atom-simulator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/.eslintrc.json -------------------------------------------------------------------------------- /hydrogen-atom-simulator/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/* 3 | .idea/* 4 | -------------------------------------------------------------------------------- /hydrogen-atom-simulator/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/LICENSE.md -------------------------------------------------------------------------------- /hydrogen-atom-simulator/README.md: -------------------------------------------------------------------------------- 1 | # hydrogen atom simulator 2 | -------------------------------------------------------------------------------- /hydrogen-atom-simulator/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/arrow.svg -------------------------------------------------------------------------------- /hydrogen-atom-simulator/css/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/css/buttons.css -------------------------------------------------------------------------------- /hydrogen-atom-simulator/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/css/main.css -------------------------------------------------------------------------------- /hydrogen-atom-simulator/css/pause-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/css/pause-switch.css -------------------------------------------------------------------------------- /hydrogen-atom-simulator/css/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/css/slider.css -------------------------------------------------------------------------------- /hydrogen-atom-simulator/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/dist/bundle.js -------------------------------------------------------------------------------- /hydrogen-atom-simulator/img/blue-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/img/blue-circle.png -------------------------------------------------------------------------------- /hydrogen-atom-simulator/img/purple-spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/img/purple-spiral.png -------------------------------------------------------------------------------- /hydrogen-atom-simulator/img/white-oval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/img/white-oval.png -------------------------------------------------------------------------------- /hydrogen-atom-simulator/img/yellow-spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/img/yellow-spiral.png -------------------------------------------------------------------------------- /hydrogen-atom-simulator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/index.html -------------------------------------------------------------------------------- /hydrogen-atom-simulator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/package-lock.json -------------------------------------------------------------------------------- /hydrogen-atom-simulator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/package.json -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/Electron.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/Electron.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/EnergyLevelDiagram.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/EnergyLevelDiagram.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/EventLog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/EventLog.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/HydrogenAtomSimulator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/HydrogenAtomSimulator.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/MainView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/MainView.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/ManualDeexcitation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/ManualDeexcitation.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/NavigationBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/NavigationBar.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/PhotonBeams.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/PhotonBeams.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/Slider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/Slider.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/Spectrum.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/Spectrum.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/main.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/utils/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/utils/Button.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/utils/FormatValues.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/utils/FormatValues.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/utils/TickMarksData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/utils/TickMarksData.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/src/utils/WavelengthToHex.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/src/utils/WavelengthToHex.jsx -------------------------------------------------------------------------------- /hydrogen-atom-simulator/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/hydrogen-atom-simulator/webpack.config.js -------------------------------------------------------------------------------- /lunar-phase-simulator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/.eslintrc.json -------------------------------------------------------------------------------- /lunar-phase-simulator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/Makefile -------------------------------------------------------------------------------- /lunar-phase-simulator/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/dist/bundle.js -------------------------------------------------------------------------------- /lunar-phase-simulator/dist/bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/dist/bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /lunar-phase-simulator/img/circle-highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/img/circle-highlight.svg -------------------------------------------------------------------------------- /lunar-phase-simulator/img/earth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/img/earth.svg -------------------------------------------------------------------------------- /lunar-phase-simulator/img/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/img/moon.png -------------------------------------------------------------------------------- /lunar-phase-simulator/img/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/img/moon.svg -------------------------------------------------------------------------------- /lunar-phase-simulator/img/plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/img/plane.svg -------------------------------------------------------------------------------- /lunar-phase-simulator/img/stickfigure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/img/stickfigure.svg -------------------------------------------------------------------------------- /lunar-phase-simulator/img/time-compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/img/time-compass.svg -------------------------------------------------------------------------------- /lunar-phase-simulator/img/white-stickfigure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/img/white-stickfigure.svg -------------------------------------------------------------------------------- /lunar-phase-simulator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/index.html -------------------------------------------------------------------------------- /lunar-phase-simulator/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | testEnvironment: 'node' 3 | }; 4 | -------------------------------------------------------------------------------- /lunar-phase-simulator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/package-lock.json -------------------------------------------------------------------------------- /lunar-phase-simulator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/package.json -------------------------------------------------------------------------------- /lunar-phase-simulator/src/CelestialSphere.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/src/CelestialSphere.jsx -------------------------------------------------------------------------------- /lunar-phase-simulator/src/MainView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/src/MainView.jsx -------------------------------------------------------------------------------- /lunar-phase-simulator/src/MoonPhaseView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/src/MoonPhaseView.jsx -------------------------------------------------------------------------------- /lunar-phase-simulator/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/src/main.jsx -------------------------------------------------------------------------------- /lunar-phase-simulator/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/src/utils.js -------------------------------------------------------------------------------- /lunar-phase-simulator/src/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/src/utils.test.js -------------------------------------------------------------------------------- /lunar-phase-simulator/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/lunar-phase-simulator/webpack.config.js -------------------------------------------------------------------------------- /scripts/update-build-info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/scripts/update-build-info.py -------------------------------------------------------------------------------- /small-angle-demo/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/.eslintrc.json -------------------------------------------------------------------------------- /small-angle-demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/Makefile -------------------------------------------------------------------------------- /small-angle-demo/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /small-angle-demo/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/dist/bundle.js -------------------------------------------------------------------------------- /small-angle-demo/dist/bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/dist/bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /small-angle-demo/img/beachball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/img/beachball.svg -------------------------------------------------------------------------------- /small-angle-demo/img/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/img/person.png -------------------------------------------------------------------------------- /small-angle-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/index.html -------------------------------------------------------------------------------- /small-angle-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/package-lock.json -------------------------------------------------------------------------------- /small-angle-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/package.json -------------------------------------------------------------------------------- /small-angle-demo/src/VisualDemo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/src/VisualDemo.jsx -------------------------------------------------------------------------------- /small-angle-demo/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/src/main.jsx -------------------------------------------------------------------------------- /small-angle-demo/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/src/utils.js -------------------------------------------------------------------------------- /small-angle-demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/small-angle-demo/webpack.config.js -------------------------------------------------------------------------------- /sun-motion-simulator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/.eslintrc.json -------------------------------------------------------------------------------- /sun-motion-simulator/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/dist/bundle.js -------------------------------------------------------------------------------- /sun-motion-simulator/dist/bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/dist/bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /sun-motion-simulator/fonts/helvetiker_bold.typeface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/fonts/helvetiker_bold.typeface.json -------------------------------------------------------------------------------- /sun-motion-simulator/img/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/img/clock.svg -------------------------------------------------------------------------------- /sun-motion-simulator/img/earthmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/img/earthmap.svg -------------------------------------------------------------------------------- /sun-motion-simulator/img/plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/img/plane.svg -------------------------------------------------------------------------------- /sun-motion-simulator/img/plane_all_n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/img/plane_all_n.svg -------------------------------------------------------------------------------- /sun-motion-simulator/img/plane_all_s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/img/plane_all_s.svg -------------------------------------------------------------------------------- /sun-motion-simulator/img/stickfigure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/img/stickfigure.svg -------------------------------------------------------------------------------- /sun-motion-simulator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/index.html -------------------------------------------------------------------------------- /sun-motion-simulator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/package-lock.json -------------------------------------------------------------------------------- /sun-motion-simulator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/package.json -------------------------------------------------------------------------------- /sun-motion-simulator/src/AnimationControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/src/AnimationControls.jsx -------------------------------------------------------------------------------- /sun-motion-simulator/src/CelestialSphere.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/src/CelestialSphere.jsx -------------------------------------------------------------------------------- /sun-motion-simulator/src/Clock.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/src/Clock.jsx -------------------------------------------------------------------------------- /sun-motion-simulator/src/DatePicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/src/DatePicker.jsx -------------------------------------------------------------------------------- /sun-motion-simulator/src/GeneralSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/src/GeneralSettings.jsx -------------------------------------------------------------------------------- /sun-motion-simulator/src/LatitudePicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/src/LatitudePicker.jsx -------------------------------------------------------------------------------- /sun-motion-simulator/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/src/main.jsx -------------------------------------------------------------------------------- /sun-motion-simulator/src/shaders/MutedColorsShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/src/shaders/MutedColorsShader.js -------------------------------------------------------------------------------- /sun-motion-simulator/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/src/utils.js -------------------------------------------------------------------------------- /sun-motion-simulator/src/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/src/utils.test.js -------------------------------------------------------------------------------- /sun-motion-simulator/src/utils/WebGL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/src/utils/WebGL.js -------------------------------------------------------------------------------- /sun-motion-simulator/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnmtl/astro-simulations/HEAD/sun-motion-simulator/webpack.config.js --------------------------------------------------------------------------------