├── .github └── workflows │ └── gh-pages.yml ├── .gitignore ├── CFD ├── multigrid │ ├── mg.avi │ └── mg.mp4 ├── rea │ ├── README.md │ ├── list.txt │ ├── list_nolimit.txt │ ├── rea-movie.py │ ├── rea.mp4 │ └── rea_nolimit.mp4 └── red_black │ ├── rb.png │ └── red_black.py ├── LICENSE ├── README.md ├── TODO ├── anim_solvers ├── __init__.py ├── binary_integrator.py ├── earth_orbit.py ├── myarrows.py ├── simple_arrow.py ├── solar_system_integrator.py └── stick_figure.py ├── binary_exoplanets ├── astrometric_binary │ ├── astrometric_binary.png │ └── astrometric_binary.py ├── binary_fig_mc │ ├── binary_fig.eps │ └── binary_fig.py ├── binary_reference │ ├── binary_reference.py │ ├── binary_reference_mratio=4_e=0.4.mp4 │ └── do_anim.sh ├── binary_stars │ ├── README.md │ ├── binary_mratio=1_e=0.0.mp4 │ ├── binary_mratio=1_e=0.4.mp4 │ ├── binary_mratio=2_e=0.0.mp4 │ ├── binary_mratio=2_e=0.4.mp4 │ ├── binary_mratio=4_e=0.4_energy.mp4 │ ├── binary_stars.py │ └── do_anim.sh ├── eclipsing_binaries │ ├── README.md │ ├── eclipsing_binary.mp4 │ └── eclipsing_binary.py ├── eclipsing_binary_fig │ ├── eclipsing_binary_fig_rad.py │ ├── eclipsingbinary_rad.eps │ └── eclipsingbinary_rad.png ├── equipotentials │ ├── README.md │ ├── equipotential-3d.ipynb │ ├── equipotentials.mp4 │ └── equipotentials.py ├── planetary_orbit │ ├── do_anim.sh │ ├── planetary_orbits.mp4 │ └── planetary_orbits.py ├── planetary_transit │ ├── README.md │ ├── planetary_transit.mp4 │ └── planetary_transit.py ├── planetary_transit_fig │ └── planet_transit_fig.py ├── planets_fig_mc │ ├── planets.pdf │ └── planets.py ├── radial_velocity │ ├── do_anim.sh │ ├── radial_velocity.mp4 │ ├── radial_velocity.py │ └── radial_velocity_preview.png ├── radial_velocity_ell │ ├── do_anim.sh │ ├── radial_velocity_ell.mp4 │ ├── radial_velocity_ell.py │ └── radial_velocity_ell_preview.png └── radial_velocity_mc │ ├── radial_velocity_a_1.5e+13_e_0.00_Mp_02e+30.eps │ ├── radial_velocity_a_1.5e+13_e_0.00_Mp_02e+30.png │ ├── radial_velocity_a_1.5e+13_e_0.00_Mp_06e+30.eps │ ├── radial_velocity_a_1.5e+13_e_0.00_Mp_06e+30.png │ ├── radial_velocity_a_1.5e+13_e_0.40_Mp_02e+30.eps │ ├── radial_velocity_a_1.5e+13_e_0.40_Mp_02e+30.png │ ├── radial_velocity_a_7.5e+12_e_0.00_Mp_02e+30.eps │ ├── radial_velocity_a_7.5e+12_e_0.00_Mp_02e+30.png │ └── radial_velocity_ell.py ├── deploy_docs_action.sh ├── docs ├── Makefile └── source │ ├── _static │ └── myfile.css │ ├── binary.rst │ ├── conf.py │ ├── earth_moon.rst │ ├── ellipse.rst │ ├── index.rst │ ├── mechanics.rst │ ├── nuclear.rst │ ├── solar_system.rst │ ├── thermo.rst │ └── waves.rst ├── ellipses ├── eccentricity │ ├── do_anim.sh │ ├── eccentricity.mp4 │ └── eccentricity.py ├── ellipse_fig │ ├── ellipse_geom.png │ ├── ellipse_geom.py │ ├── ellipse_initial_cond.py │ ├── ellipse_vel.png │ └── ellipse_vel.py └── ellipsedraw │ ├── do_anim.sh │ ├── ellipsedraw.mp4 │ └── ellipsedraw.py ├── fluids ├── fluid_scale.png └── fluid_scale.py ├── galaxies └── spiral_windup │ ├── spiral_windup.avi │ └── spiral_windup.py ├── interactive └── explore_exoplanet.ipynb ├── mechanics ├── achievingorbit │ ├── 599px-The_Earth_seen_from_Apollo_17.jpg │ ├── README.md │ ├── achievingorbit.mp4 │ ├── achievingorbit.py │ └── earth.png ├── changing_orbit │ ├── 599px-The_Earth_seen_from_Apollo_17.jpg │ ├── README.md │ ├── changing_orbit.mp4 │ ├── changing_orbit.py │ └── earth.png └── escapevelocity │ ├── 599px-The_Earth_seen_from_Apollo_17.jpg │ ├── README.md │ ├── earth.png │ ├── escape.mp4 │ └── escapevelocity.py ├── nuclear_astro ├── README.md └── hot_cno │ ├── README.md │ ├── hotcno.mp4 │ └── hotcno.py ├── radiation_thermodynamics ├── blackbody │ ├── README.md │ ├── blackbody.mp4 │ └── blackbody.py ├── blackbody_wavelength │ ├── README.md │ ├── blackbody_wavelength.mp4 │ └── blackbody_wavelength.py ├── maxwell_boltzmann_fig │ ├── maxwell_boltzmann.png │ └── maxwell_boltzmann.py ├── random_walk │ ├── README.md │ ├── random_walk.mp4 │ └── random_walk.py └── thermal_motion │ ├── hot │ ├── README.md │ ├── thermal_motion.py │ └── thermal_motion_hot.mp4 │ └── normal │ ├── README.md │ ├── thermal_motion.py │ └── thermal_motion_normal.mp4 ├── radioactive_decay ├── README.md ├── decay.mp4 ├── radioactive_decay.py ├── radioactive_decay_0000.png ├── radioactive_decay_0001.png ├── radioactive_decay_0002.png ├── radioactive_decay_0003.png ├── radioactive_decay_0004.png ├── radioactive_decay_0005.png ├── radioactive_decay_0006.png ├── radioactive_decay_0007.png ├── radioactive_decay_0008.png ├── radioactive_decay_0009.png ├── radioactive_decay_0010.png ├── radioactive_decay_0011.png ├── radioactive_decay_0012.png └── radioactive_decay_0013.png ├── requirements.txt ├── scripts └── mkmovie.py ├── solar_system_motion ├── README.md ├── asteroid_resonance │ ├── README.md │ ├── asteroids.mp4 │ └── asteroids.py ├── celestial_sphere_fig │ ├── README │ ├── celestial_sphere-basic.svg │ ├── celestial_sphere-coords.svg │ └── celestial_sphere-stars.svg ├── circumpolar │ └── shapes.py ├── earth_radius_fig │ ├── README │ └── earth_radius.svg ├── harmonic_law_fig │ ├── harmonic_law.png │ ├── harmonic_law.py │ ├── harmonic_law_pluto.png │ └── harmonic_law_pluto_moons.png ├── latitude_fig │ ├── earth_diagram.png │ ├── earth_diagram.py │ ├── earth_summer_solstice.mp4 │ ├── earth_summer_solstice.png │ ├── latitude.py │ ├── latitude1.png │ ├── latitude2.png │ └── latitude3.png ├── local_sky_fig │ ├── README │ ├── local_sky.svg │ └── local_sky2.svg ├── lunar_period │ ├── README.md │ ├── lunar_period.mp4 │ └── lunar_period.py ├── lunar_phases │ ├── README.md │ ├── lunar-phases.mp4 │ └── phases.py ├── mercury_rotation │ ├── README.md │ ├── mercury_rotation.mp4 │ └── mercury_rotation.py ├── moon_rotation │ ├── README.md │ ├── moon_rotation.mp4 │ └── moon_rotation.py ├── orbit2 │ ├── README.md │ ├── orbit2.mp4 │ └── orbit2.py ├── orbitalenergy │ ├── README.md │ ├── orbitalenergy.mp4 │ └── orbitalenergy.py ├── parallax │ ├── README.md │ ├── parallax.mp4 │ └── parallax.py ├── retrograde │ ├── README.md │ ├── retrograde.mp4 │ └── retrograde.py ├── sb_over_year │ ├── README.md │ ├── sb_over_year.py │ ├── stonybrook_noon_year.mp4 │ └── stonybrook_noon_year_moll.mp4 ├── seasons │ ├── README.md │ ├── seasons.mp4 │ └── seasons.py ├── second_law │ ├── README.md │ ├── second_law.mp4 │ └── second_law.py ├── sidereal_solar │ ├── README.md │ ├── sidereal_solar.mp4 │ └── sidereal_solar.py ├── sidereal_solar_day │ ├── README.md │ ├── earth.mp4 │ └── sidereal_solar.py ├── solstice-equinox │ ├── README.md │ ├── equinox.mp4 │ ├── solstice_equinox.py │ ├── summer_solstice.mp4 │ └── winter_solstice.mp4 ├── solstice-equinox_over_day │ ├── sb_summer_solstice_ortho.avi │ ├── sb_summer_solstice_ortho.mp4 │ ├── sb_summer_solstice_ortho_hg.mp4 │ ├── sb_winter.avi │ ├── sb_winter.mp4 │ ├── sb_winter_hg.mp4 │ └── se_over_day.py └── tidal_locking │ ├── README.md │ ├── tidal_locking.mp4 │ └── tidal_locking.py ├── stars ├── HR_fig │ ├── HR_MS_fitting.eps │ ├── HR_MS_fitting.png │ ├── HR_MS_fitting.py │ ├── HR_MS_fitting.py~ │ ├── HR_exam.py │ ├── HR_radius.png │ ├── HR_radius.py │ ├── HR_radius_wd.png │ ├── ms_mass_vs_radius.png │ ├── ms_mass_vs_radius.py │ └── stellar_properties.py ├── absorption_line_fig │ ├── absorption_line.png │ └── absorption_line.py ├── coulomb_barrier_fig │ ├── coulomb_barrier.png │ └── coulomb_barrier.py ├── gamow_fig │ ├── gamow.png │ ├── gamow.py │ └── gamow.py~ └── line_strength_fig │ ├── line_strength.png │ ├── line_strength.py │ ├── line_strength_excitation.png │ └── line_strength_ionization.png └── waves ├── doppler ├── README.md ├── doppler.mp4 └── doppler.py ├── doppler2 ├── README.md ├── doppler2.mp4 └── doppler2.py └── waves ├── README.md ├── waves.mp4 └── waves.py /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/.gitignore -------------------------------------------------------------------------------- /CFD/multigrid/mg.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/CFD/multigrid/mg.avi -------------------------------------------------------------------------------- /CFD/multigrid/mg.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/CFD/multigrid/mg.mp4 -------------------------------------------------------------------------------- /CFD/rea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/CFD/rea/README.md -------------------------------------------------------------------------------- /CFD/rea/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/CFD/rea/list.txt -------------------------------------------------------------------------------- /CFD/rea/list_nolimit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/CFD/rea/list_nolimit.txt -------------------------------------------------------------------------------- /CFD/rea/rea-movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/CFD/rea/rea-movie.py -------------------------------------------------------------------------------- /CFD/rea/rea.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/CFD/rea/rea.mp4 -------------------------------------------------------------------------------- /CFD/rea/rea_nolimit.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/CFD/rea/rea_nolimit.mp4 -------------------------------------------------------------------------------- /CFD/red_black/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/CFD/red_black/rb.png -------------------------------------------------------------------------------- /CFD/red_black/red_black.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/CFD/red_black/red_black.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/TODO -------------------------------------------------------------------------------- /anim_solvers/__init__.py: -------------------------------------------------------------------------------- 1 | # general solvers 2 | -------------------------------------------------------------------------------- /anim_solvers/binary_integrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/anim_solvers/binary_integrator.py -------------------------------------------------------------------------------- /anim_solvers/earth_orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/anim_solvers/earth_orbit.py -------------------------------------------------------------------------------- /anim_solvers/myarrows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/anim_solvers/myarrows.py -------------------------------------------------------------------------------- /anim_solvers/simple_arrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/anim_solvers/simple_arrow.py -------------------------------------------------------------------------------- /anim_solvers/solar_system_integrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/anim_solvers/solar_system_integrator.py -------------------------------------------------------------------------------- /anim_solvers/stick_figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/anim_solvers/stick_figure.py -------------------------------------------------------------------------------- /binary_exoplanets/astrometric_binary/astrometric_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/astrometric_binary/astrometric_binary.png -------------------------------------------------------------------------------- /binary_exoplanets/astrometric_binary/astrometric_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/astrometric_binary/astrometric_binary.py -------------------------------------------------------------------------------- /binary_exoplanets/binary_fig_mc/binary_fig.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_fig_mc/binary_fig.eps -------------------------------------------------------------------------------- /binary_exoplanets/binary_fig_mc/binary_fig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_fig_mc/binary_fig.py -------------------------------------------------------------------------------- /binary_exoplanets/binary_reference/binary_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_reference/binary_reference.py -------------------------------------------------------------------------------- /binary_exoplanets/binary_reference/binary_reference_mratio=4_e=0.4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_reference/binary_reference_mratio=4_e=0.4.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/binary_reference/do_anim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_reference/do_anim.sh -------------------------------------------------------------------------------- /binary_exoplanets/binary_stars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_stars/README.md -------------------------------------------------------------------------------- /binary_exoplanets/binary_stars/binary_mratio=1_e=0.0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_stars/binary_mratio=1_e=0.0.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/binary_stars/binary_mratio=1_e=0.4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_stars/binary_mratio=1_e=0.4.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/binary_stars/binary_mratio=2_e=0.0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_stars/binary_mratio=2_e=0.0.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/binary_stars/binary_mratio=2_e=0.4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_stars/binary_mratio=2_e=0.4.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/binary_stars/binary_mratio=4_e=0.4_energy.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_stars/binary_mratio=4_e=0.4_energy.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/binary_stars/binary_stars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_stars/binary_stars.py -------------------------------------------------------------------------------- /binary_exoplanets/binary_stars/do_anim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/binary_stars/do_anim.sh -------------------------------------------------------------------------------- /binary_exoplanets/eclipsing_binaries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/eclipsing_binaries/README.md -------------------------------------------------------------------------------- /binary_exoplanets/eclipsing_binaries/eclipsing_binary.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/eclipsing_binaries/eclipsing_binary.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/eclipsing_binaries/eclipsing_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/eclipsing_binaries/eclipsing_binary.py -------------------------------------------------------------------------------- /binary_exoplanets/eclipsing_binary_fig/eclipsing_binary_fig_rad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/eclipsing_binary_fig/eclipsing_binary_fig_rad.py -------------------------------------------------------------------------------- /binary_exoplanets/eclipsing_binary_fig/eclipsingbinary_rad.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/eclipsing_binary_fig/eclipsingbinary_rad.eps -------------------------------------------------------------------------------- /binary_exoplanets/eclipsing_binary_fig/eclipsingbinary_rad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/eclipsing_binary_fig/eclipsingbinary_rad.png -------------------------------------------------------------------------------- /binary_exoplanets/equipotentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/equipotentials/README.md -------------------------------------------------------------------------------- /binary_exoplanets/equipotentials/equipotential-3d.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/equipotentials/equipotential-3d.ipynb -------------------------------------------------------------------------------- /binary_exoplanets/equipotentials/equipotentials.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/equipotentials/equipotentials.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/equipotentials/equipotentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/equipotentials/equipotentials.py -------------------------------------------------------------------------------- /binary_exoplanets/planetary_orbit/do_anim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/planetary_orbit/do_anim.sh -------------------------------------------------------------------------------- /binary_exoplanets/planetary_orbit/planetary_orbits.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/planetary_orbit/planetary_orbits.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/planetary_orbit/planetary_orbits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/planetary_orbit/planetary_orbits.py -------------------------------------------------------------------------------- /binary_exoplanets/planetary_transit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/planetary_transit/README.md -------------------------------------------------------------------------------- /binary_exoplanets/planetary_transit/planetary_transit.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/planetary_transit/planetary_transit.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/planetary_transit/planetary_transit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/planetary_transit/planetary_transit.py -------------------------------------------------------------------------------- /binary_exoplanets/planetary_transit_fig/planet_transit_fig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/planetary_transit_fig/planet_transit_fig.py -------------------------------------------------------------------------------- /binary_exoplanets/planets_fig_mc/planets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/planets_fig_mc/planets.pdf -------------------------------------------------------------------------------- /binary_exoplanets/planets_fig_mc/planets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/planets_fig_mc/planets.py -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity/do_anim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity/do_anim.sh -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity/radial_velocity.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity/radial_velocity.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity/radial_velocity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity/radial_velocity.py -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity/radial_velocity_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity/radial_velocity_preview.png -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_ell/do_anim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_ell/do_anim.sh -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_ell/radial_velocity_ell.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_ell/radial_velocity_ell.mp4 -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_ell/radial_velocity_ell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_ell/radial_velocity_ell.py -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_ell/radial_velocity_ell_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_ell/radial_velocity_ell_preview.png -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.00_Mp_02e+30.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.00_Mp_02e+30.eps -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.00_Mp_02e+30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.00_Mp_02e+30.png -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.00_Mp_06e+30.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.00_Mp_06e+30.eps -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.00_Mp_06e+30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.00_Mp_06e+30.png -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.40_Mp_02e+30.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.40_Mp_02e+30.eps -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.40_Mp_02e+30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_mc/radial_velocity_a_1.5e+13_e_0.40_Mp_02e+30.png -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_mc/radial_velocity_a_7.5e+12_e_0.00_Mp_02e+30.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_mc/radial_velocity_a_7.5e+12_e_0.00_Mp_02e+30.eps -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_mc/radial_velocity_a_7.5e+12_e_0.00_Mp_02e+30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_mc/radial_velocity_a_7.5e+12_e_0.00_Mp_02e+30.png -------------------------------------------------------------------------------- /binary_exoplanets/radial_velocity_mc/radial_velocity_ell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/binary_exoplanets/radial_velocity_mc/radial_velocity_ell.py -------------------------------------------------------------------------------- /deploy_docs_action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/deploy_docs_action.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/_static/myfile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/source/_static/myfile.css -------------------------------------------------------------------------------- /docs/source/binary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/source/binary.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/earth_moon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/source/earth_moon.rst -------------------------------------------------------------------------------- /docs/source/ellipse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/source/ellipse.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/mechanics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/source/mechanics.rst -------------------------------------------------------------------------------- /docs/source/nuclear.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/source/nuclear.rst -------------------------------------------------------------------------------- /docs/source/solar_system.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/source/solar_system.rst -------------------------------------------------------------------------------- /docs/source/thermo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/source/thermo.rst -------------------------------------------------------------------------------- /docs/source/waves.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/docs/source/waves.rst -------------------------------------------------------------------------------- /ellipses/eccentricity/do_anim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/ellipses/eccentricity/do_anim.sh -------------------------------------------------------------------------------- /ellipses/eccentricity/eccentricity.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/ellipses/eccentricity/eccentricity.mp4 -------------------------------------------------------------------------------- /ellipses/eccentricity/eccentricity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/ellipses/eccentricity/eccentricity.py -------------------------------------------------------------------------------- /ellipses/ellipse_fig/ellipse_geom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/ellipses/ellipse_fig/ellipse_geom.png -------------------------------------------------------------------------------- /ellipses/ellipse_fig/ellipse_geom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/ellipses/ellipse_fig/ellipse_geom.py -------------------------------------------------------------------------------- /ellipses/ellipse_fig/ellipse_initial_cond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/ellipses/ellipse_fig/ellipse_initial_cond.py -------------------------------------------------------------------------------- /ellipses/ellipse_fig/ellipse_vel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/ellipses/ellipse_fig/ellipse_vel.png -------------------------------------------------------------------------------- /ellipses/ellipse_fig/ellipse_vel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/ellipses/ellipse_fig/ellipse_vel.py -------------------------------------------------------------------------------- /ellipses/ellipsedraw/do_anim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/ellipses/ellipsedraw/do_anim.sh -------------------------------------------------------------------------------- /ellipses/ellipsedraw/ellipsedraw.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/ellipses/ellipsedraw/ellipsedraw.mp4 -------------------------------------------------------------------------------- /ellipses/ellipsedraw/ellipsedraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/ellipses/ellipsedraw/ellipsedraw.py -------------------------------------------------------------------------------- /fluids/fluid_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/fluids/fluid_scale.png -------------------------------------------------------------------------------- /fluids/fluid_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/fluids/fluid_scale.py -------------------------------------------------------------------------------- /galaxies/spiral_windup/spiral_windup.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/galaxies/spiral_windup/spiral_windup.avi -------------------------------------------------------------------------------- /galaxies/spiral_windup/spiral_windup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/galaxies/spiral_windup/spiral_windup.py -------------------------------------------------------------------------------- /interactive/explore_exoplanet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/interactive/explore_exoplanet.ipynb -------------------------------------------------------------------------------- /mechanics/achievingorbit/599px-The_Earth_seen_from_Apollo_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/achievingorbit/599px-The_Earth_seen_from_Apollo_17.jpg -------------------------------------------------------------------------------- /mechanics/achievingorbit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/achievingorbit/README.md -------------------------------------------------------------------------------- /mechanics/achievingorbit/achievingorbit.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/achievingorbit/achievingorbit.mp4 -------------------------------------------------------------------------------- /mechanics/achievingorbit/achievingorbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/achievingorbit/achievingorbit.py -------------------------------------------------------------------------------- /mechanics/achievingorbit/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/achievingorbit/earth.png -------------------------------------------------------------------------------- /mechanics/changing_orbit/599px-The_Earth_seen_from_Apollo_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/changing_orbit/599px-The_Earth_seen_from_Apollo_17.jpg -------------------------------------------------------------------------------- /mechanics/changing_orbit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/changing_orbit/README.md -------------------------------------------------------------------------------- /mechanics/changing_orbit/changing_orbit.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/changing_orbit/changing_orbit.mp4 -------------------------------------------------------------------------------- /mechanics/changing_orbit/changing_orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/changing_orbit/changing_orbit.py -------------------------------------------------------------------------------- /mechanics/changing_orbit/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/changing_orbit/earth.png -------------------------------------------------------------------------------- /mechanics/escapevelocity/599px-The_Earth_seen_from_Apollo_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/escapevelocity/599px-The_Earth_seen_from_Apollo_17.jpg -------------------------------------------------------------------------------- /mechanics/escapevelocity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/escapevelocity/README.md -------------------------------------------------------------------------------- /mechanics/escapevelocity/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/escapevelocity/earth.png -------------------------------------------------------------------------------- /mechanics/escapevelocity/escape.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/escapevelocity/escape.mp4 -------------------------------------------------------------------------------- /mechanics/escapevelocity/escapevelocity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/mechanics/escapevelocity/escapevelocity.py -------------------------------------------------------------------------------- /nuclear_astro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/nuclear_astro/README.md -------------------------------------------------------------------------------- /nuclear_astro/hot_cno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/nuclear_astro/hot_cno/README.md -------------------------------------------------------------------------------- /nuclear_astro/hot_cno/hotcno.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/nuclear_astro/hot_cno/hotcno.mp4 -------------------------------------------------------------------------------- /nuclear_astro/hot_cno/hotcno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/nuclear_astro/hot_cno/hotcno.py -------------------------------------------------------------------------------- /radiation_thermodynamics/blackbody/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/blackbody/README.md -------------------------------------------------------------------------------- /radiation_thermodynamics/blackbody/blackbody.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/blackbody/blackbody.mp4 -------------------------------------------------------------------------------- /radiation_thermodynamics/blackbody/blackbody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/blackbody/blackbody.py -------------------------------------------------------------------------------- /radiation_thermodynamics/blackbody_wavelength/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/blackbody_wavelength/README.md -------------------------------------------------------------------------------- /radiation_thermodynamics/blackbody_wavelength/blackbody_wavelength.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/blackbody_wavelength/blackbody_wavelength.mp4 -------------------------------------------------------------------------------- /radiation_thermodynamics/blackbody_wavelength/blackbody_wavelength.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/blackbody_wavelength/blackbody_wavelength.py -------------------------------------------------------------------------------- /radiation_thermodynamics/maxwell_boltzmann_fig/maxwell_boltzmann.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/maxwell_boltzmann_fig/maxwell_boltzmann.png -------------------------------------------------------------------------------- /radiation_thermodynamics/maxwell_boltzmann_fig/maxwell_boltzmann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/maxwell_boltzmann_fig/maxwell_boltzmann.py -------------------------------------------------------------------------------- /radiation_thermodynamics/random_walk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/random_walk/README.md -------------------------------------------------------------------------------- /radiation_thermodynamics/random_walk/random_walk.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/random_walk/random_walk.mp4 -------------------------------------------------------------------------------- /radiation_thermodynamics/random_walk/random_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/random_walk/random_walk.py -------------------------------------------------------------------------------- /radiation_thermodynamics/thermal_motion/hot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/thermal_motion/hot/README.md -------------------------------------------------------------------------------- /radiation_thermodynamics/thermal_motion/hot/thermal_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/thermal_motion/hot/thermal_motion.py -------------------------------------------------------------------------------- /radiation_thermodynamics/thermal_motion/hot/thermal_motion_hot.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/thermal_motion/hot/thermal_motion_hot.mp4 -------------------------------------------------------------------------------- /radiation_thermodynamics/thermal_motion/normal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/thermal_motion/normal/README.md -------------------------------------------------------------------------------- /radiation_thermodynamics/thermal_motion/normal/thermal_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/thermal_motion/normal/thermal_motion.py -------------------------------------------------------------------------------- /radiation_thermodynamics/thermal_motion/normal/thermal_motion_normal.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radiation_thermodynamics/thermal_motion/normal/thermal_motion_normal.mp4 -------------------------------------------------------------------------------- /radioactive_decay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/README.md -------------------------------------------------------------------------------- /radioactive_decay/decay.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/decay.mp4 -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay.py -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0000.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0001.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0002.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0003.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0004.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0005.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0006.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0007.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0008.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0009.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0010.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0011.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0012.png -------------------------------------------------------------------------------- /radioactive_decay/radioactive_decay_0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/radioactive_decay/radioactive_decay_0013.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/mkmovie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/scripts/mkmovie.py -------------------------------------------------------------------------------- /solar_system_motion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/README.md -------------------------------------------------------------------------------- /solar_system_motion/asteroid_resonance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/asteroid_resonance/README.md -------------------------------------------------------------------------------- /solar_system_motion/asteroid_resonance/asteroids.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/asteroid_resonance/asteroids.mp4 -------------------------------------------------------------------------------- /solar_system_motion/asteroid_resonance/asteroids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/asteroid_resonance/asteroids.py -------------------------------------------------------------------------------- /solar_system_motion/celestial_sphere_fig/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/celestial_sphere_fig/README -------------------------------------------------------------------------------- /solar_system_motion/celestial_sphere_fig/celestial_sphere-basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/celestial_sphere_fig/celestial_sphere-basic.svg -------------------------------------------------------------------------------- /solar_system_motion/celestial_sphere_fig/celestial_sphere-coords.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/celestial_sphere_fig/celestial_sphere-coords.svg -------------------------------------------------------------------------------- /solar_system_motion/celestial_sphere_fig/celestial_sphere-stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/celestial_sphere_fig/celestial_sphere-stars.svg -------------------------------------------------------------------------------- /solar_system_motion/circumpolar/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/circumpolar/shapes.py -------------------------------------------------------------------------------- /solar_system_motion/earth_radius_fig/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/earth_radius_fig/README -------------------------------------------------------------------------------- /solar_system_motion/earth_radius_fig/earth_radius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/earth_radius_fig/earth_radius.svg -------------------------------------------------------------------------------- /solar_system_motion/harmonic_law_fig/harmonic_law.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/harmonic_law_fig/harmonic_law.png -------------------------------------------------------------------------------- /solar_system_motion/harmonic_law_fig/harmonic_law.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/harmonic_law_fig/harmonic_law.py -------------------------------------------------------------------------------- /solar_system_motion/harmonic_law_fig/harmonic_law_pluto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/harmonic_law_fig/harmonic_law_pluto.png -------------------------------------------------------------------------------- /solar_system_motion/harmonic_law_fig/harmonic_law_pluto_moons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/harmonic_law_fig/harmonic_law_pluto_moons.png -------------------------------------------------------------------------------- /solar_system_motion/latitude_fig/earth_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/latitude_fig/earth_diagram.png -------------------------------------------------------------------------------- /solar_system_motion/latitude_fig/earth_diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/latitude_fig/earth_diagram.py -------------------------------------------------------------------------------- /solar_system_motion/latitude_fig/earth_summer_solstice.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/latitude_fig/earth_summer_solstice.mp4 -------------------------------------------------------------------------------- /solar_system_motion/latitude_fig/earth_summer_solstice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/latitude_fig/earth_summer_solstice.png -------------------------------------------------------------------------------- /solar_system_motion/latitude_fig/latitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/latitude_fig/latitude.py -------------------------------------------------------------------------------- /solar_system_motion/latitude_fig/latitude1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/latitude_fig/latitude1.png -------------------------------------------------------------------------------- /solar_system_motion/latitude_fig/latitude2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/latitude_fig/latitude2.png -------------------------------------------------------------------------------- /solar_system_motion/latitude_fig/latitude3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/latitude_fig/latitude3.png -------------------------------------------------------------------------------- /solar_system_motion/local_sky_fig/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/local_sky_fig/README -------------------------------------------------------------------------------- /solar_system_motion/local_sky_fig/local_sky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/local_sky_fig/local_sky.svg -------------------------------------------------------------------------------- /solar_system_motion/local_sky_fig/local_sky2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/local_sky_fig/local_sky2.svg -------------------------------------------------------------------------------- /solar_system_motion/lunar_period/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/lunar_period/README.md -------------------------------------------------------------------------------- /solar_system_motion/lunar_period/lunar_period.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/lunar_period/lunar_period.mp4 -------------------------------------------------------------------------------- /solar_system_motion/lunar_period/lunar_period.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/lunar_period/lunar_period.py -------------------------------------------------------------------------------- /solar_system_motion/lunar_phases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/lunar_phases/README.md -------------------------------------------------------------------------------- /solar_system_motion/lunar_phases/lunar-phases.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/lunar_phases/lunar-phases.mp4 -------------------------------------------------------------------------------- /solar_system_motion/lunar_phases/phases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/lunar_phases/phases.py -------------------------------------------------------------------------------- /solar_system_motion/mercury_rotation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/mercury_rotation/README.md -------------------------------------------------------------------------------- /solar_system_motion/mercury_rotation/mercury_rotation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/mercury_rotation/mercury_rotation.mp4 -------------------------------------------------------------------------------- /solar_system_motion/mercury_rotation/mercury_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/mercury_rotation/mercury_rotation.py -------------------------------------------------------------------------------- /solar_system_motion/moon_rotation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/moon_rotation/README.md -------------------------------------------------------------------------------- /solar_system_motion/moon_rotation/moon_rotation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/moon_rotation/moon_rotation.mp4 -------------------------------------------------------------------------------- /solar_system_motion/moon_rotation/moon_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/moon_rotation/moon_rotation.py -------------------------------------------------------------------------------- /solar_system_motion/orbit2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/orbit2/README.md -------------------------------------------------------------------------------- /solar_system_motion/orbit2/orbit2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/orbit2/orbit2.mp4 -------------------------------------------------------------------------------- /solar_system_motion/orbit2/orbit2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/orbit2/orbit2.py -------------------------------------------------------------------------------- /solar_system_motion/orbitalenergy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/orbitalenergy/README.md -------------------------------------------------------------------------------- /solar_system_motion/orbitalenergy/orbitalenergy.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/orbitalenergy/orbitalenergy.mp4 -------------------------------------------------------------------------------- /solar_system_motion/orbitalenergy/orbitalenergy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/orbitalenergy/orbitalenergy.py -------------------------------------------------------------------------------- /solar_system_motion/parallax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/parallax/README.md -------------------------------------------------------------------------------- /solar_system_motion/parallax/parallax.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/parallax/parallax.mp4 -------------------------------------------------------------------------------- /solar_system_motion/parallax/parallax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/parallax/parallax.py -------------------------------------------------------------------------------- /solar_system_motion/retrograde/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/retrograde/README.md -------------------------------------------------------------------------------- /solar_system_motion/retrograde/retrograde.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/retrograde/retrograde.mp4 -------------------------------------------------------------------------------- /solar_system_motion/retrograde/retrograde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/retrograde/retrograde.py -------------------------------------------------------------------------------- /solar_system_motion/sb_over_year/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/sb_over_year/README.md -------------------------------------------------------------------------------- /solar_system_motion/sb_over_year/sb_over_year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/sb_over_year/sb_over_year.py -------------------------------------------------------------------------------- /solar_system_motion/sb_over_year/stonybrook_noon_year.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/sb_over_year/stonybrook_noon_year.mp4 -------------------------------------------------------------------------------- /solar_system_motion/sb_over_year/stonybrook_noon_year_moll.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/sb_over_year/stonybrook_noon_year_moll.mp4 -------------------------------------------------------------------------------- /solar_system_motion/seasons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/seasons/README.md -------------------------------------------------------------------------------- /solar_system_motion/seasons/seasons.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/seasons/seasons.mp4 -------------------------------------------------------------------------------- /solar_system_motion/seasons/seasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/seasons/seasons.py -------------------------------------------------------------------------------- /solar_system_motion/second_law/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/second_law/README.md -------------------------------------------------------------------------------- /solar_system_motion/second_law/second_law.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/second_law/second_law.mp4 -------------------------------------------------------------------------------- /solar_system_motion/second_law/second_law.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/second_law/second_law.py -------------------------------------------------------------------------------- /solar_system_motion/sidereal_solar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/sidereal_solar/README.md -------------------------------------------------------------------------------- /solar_system_motion/sidereal_solar/sidereal_solar.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/sidereal_solar/sidereal_solar.mp4 -------------------------------------------------------------------------------- /solar_system_motion/sidereal_solar/sidereal_solar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/sidereal_solar/sidereal_solar.py -------------------------------------------------------------------------------- /solar_system_motion/sidereal_solar_day/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/sidereal_solar_day/README.md -------------------------------------------------------------------------------- /solar_system_motion/sidereal_solar_day/earth.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/sidereal_solar_day/earth.mp4 -------------------------------------------------------------------------------- /solar_system_motion/sidereal_solar_day/sidereal_solar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/sidereal_solar_day/sidereal_solar.py -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox/README.md -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox/equinox.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox/equinox.mp4 -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox/solstice_equinox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox/solstice_equinox.py -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox/summer_solstice.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox/summer_solstice.mp4 -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox/winter_solstice.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox/winter_solstice.mp4 -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox_over_day/sb_summer_solstice_ortho.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox_over_day/sb_summer_solstice_ortho.avi -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox_over_day/sb_summer_solstice_ortho.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox_over_day/sb_summer_solstice_ortho.mp4 -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox_over_day/sb_summer_solstice_ortho_hg.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox_over_day/sb_summer_solstice_ortho_hg.mp4 -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox_over_day/sb_winter.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox_over_day/sb_winter.avi -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox_over_day/sb_winter.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox_over_day/sb_winter.mp4 -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox_over_day/sb_winter_hg.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox_over_day/sb_winter_hg.mp4 -------------------------------------------------------------------------------- /solar_system_motion/solstice-equinox_over_day/se_over_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/solstice-equinox_over_day/se_over_day.py -------------------------------------------------------------------------------- /solar_system_motion/tidal_locking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/tidal_locking/README.md -------------------------------------------------------------------------------- /solar_system_motion/tidal_locking/tidal_locking.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/tidal_locking/tidal_locking.mp4 -------------------------------------------------------------------------------- /solar_system_motion/tidal_locking/tidal_locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/solar_system_motion/tidal_locking/tidal_locking.py -------------------------------------------------------------------------------- /stars/HR_fig/HR_MS_fitting.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/HR_fig/HR_MS_fitting.eps -------------------------------------------------------------------------------- /stars/HR_fig/HR_MS_fitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/HR_fig/HR_MS_fitting.png -------------------------------------------------------------------------------- /stars/HR_fig/HR_MS_fitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/HR_fig/HR_MS_fitting.py -------------------------------------------------------------------------------- /stars/HR_fig/HR_MS_fitting.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/HR_fig/HR_MS_fitting.py~ -------------------------------------------------------------------------------- /stars/HR_fig/HR_exam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/HR_fig/HR_exam.py -------------------------------------------------------------------------------- /stars/HR_fig/HR_radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/HR_fig/HR_radius.png -------------------------------------------------------------------------------- /stars/HR_fig/HR_radius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/HR_fig/HR_radius.py -------------------------------------------------------------------------------- /stars/HR_fig/HR_radius_wd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/HR_fig/HR_radius_wd.png -------------------------------------------------------------------------------- /stars/HR_fig/ms_mass_vs_radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/HR_fig/ms_mass_vs_radius.png -------------------------------------------------------------------------------- /stars/HR_fig/ms_mass_vs_radius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/HR_fig/ms_mass_vs_radius.py -------------------------------------------------------------------------------- /stars/HR_fig/stellar_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/HR_fig/stellar_properties.py -------------------------------------------------------------------------------- /stars/absorption_line_fig/absorption_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/absorption_line_fig/absorption_line.png -------------------------------------------------------------------------------- /stars/absorption_line_fig/absorption_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/absorption_line_fig/absorption_line.py -------------------------------------------------------------------------------- /stars/coulomb_barrier_fig/coulomb_barrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/coulomb_barrier_fig/coulomb_barrier.png -------------------------------------------------------------------------------- /stars/coulomb_barrier_fig/coulomb_barrier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/coulomb_barrier_fig/coulomb_barrier.py -------------------------------------------------------------------------------- /stars/gamow_fig/gamow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/gamow_fig/gamow.png -------------------------------------------------------------------------------- /stars/gamow_fig/gamow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/gamow_fig/gamow.py -------------------------------------------------------------------------------- /stars/gamow_fig/gamow.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/gamow_fig/gamow.py~ -------------------------------------------------------------------------------- /stars/line_strength_fig/line_strength.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/line_strength_fig/line_strength.png -------------------------------------------------------------------------------- /stars/line_strength_fig/line_strength.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/line_strength_fig/line_strength.py -------------------------------------------------------------------------------- /stars/line_strength_fig/line_strength_excitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/line_strength_fig/line_strength_excitation.png -------------------------------------------------------------------------------- /stars/line_strength_fig/line_strength_ionization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/stars/line_strength_fig/line_strength_ionization.png -------------------------------------------------------------------------------- /waves/doppler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/waves/doppler/README.md -------------------------------------------------------------------------------- /waves/doppler/doppler.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/waves/doppler/doppler.mp4 -------------------------------------------------------------------------------- /waves/doppler/doppler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/waves/doppler/doppler.py -------------------------------------------------------------------------------- /waves/doppler2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/waves/doppler2/README.md -------------------------------------------------------------------------------- /waves/doppler2/doppler2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/waves/doppler2/doppler2.mp4 -------------------------------------------------------------------------------- /waves/doppler2/doppler2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/waves/doppler2/doppler2.py -------------------------------------------------------------------------------- /waves/waves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/waves/waves/README.md -------------------------------------------------------------------------------- /waves/waves/waves.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/waves/waves/waves.mp4 -------------------------------------------------------------------------------- /waves/waves/waves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zingale/astro_animations/HEAD/waves/waves/waves.py --------------------------------------------------------------------------------