├── Interactives ├── Binary_Star_Sim.ipynb ├── Blackbody_Simulation.ipynb ├── Center_of_Mass.ipynb ├── DopplerShift.ipynb ├── Exoplanet_Sim.ipynb ├── FluxVsLuminositySimulation.ipynb ├── HR_Diagram.ipynb ├── LuminosityCalculator.ipynb ├── Radioactivity.ipynb ├── SmallAngleEquation.ipynb ├── Synthetic_Galaxy_HI_Spectra.ipynb ├── Synthetic_LV_Diagram.ipynb ├── data │ ├── Hipparcos.csv │ ├── clusterdata.csv │ ├── galaxy_description.csv │ ├── interpolated_evolution.csv │ └── spec_data_use.csv ├── galaxyparam.py ├── images │ └── sun_surface.jpg ├── number_formatting.py ├── starlib.py └── tempNcolor.py ├── LICENSE.md ├── README.md ├── _config.yml ├── environment.yml ├── index.ipynb └── requirements.txt /Interactives/Binary_Star_Sim.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/Binary_Star_Sim.ipynb -------------------------------------------------------------------------------- /Interactives/Blackbody_Simulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/Blackbody_Simulation.ipynb -------------------------------------------------------------------------------- /Interactives/Center_of_Mass.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/Center_of_Mass.ipynb -------------------------------------------------------------------------------- /Interactives/DopplerShift.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/DopplerShift.ipynb -------------------------------------------------------------------------------- /Interactives/Exoplanet_Sim.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/Exoplanet_Sim.ipynb -------------------------------------------------------------------------------- /Interactives/FluxVsLuminositySimulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/FluxVsLuminositySimulation.ipynb -------------------------------------------------------------------------------- /Interactives/HR_Diagram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/HR_Diagram.ipynb -------------------------------------------------------------------------------- /Interactives/LuminosityCalculator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/LuminosityCalculator.ipynb -------------------------------------------------------------------------------- /Interactives/Radioactivity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/Radioactivity.ipynb -------------------------------------------------------------------------------- /Interactives/SmallAngleEquation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/SmallAngleEquation.ipynb -------------------------------------------------------------------------------- /Interactives/Synthetic_Galaxy_HI_Spectra.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/Synthetic_Galaxy_HI_Spectra.ipynb -------------------------------------------------------------------------------- /Interactives/Synthetic_LV_Diagram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/Synthetic_LV_Diagram.ipynb -------------------------------------------------------------------------------- /Interactives/data/Hipparcos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/data/Hipparcos.csv -------------------------------------------------------------------------------- /Interactives/data/clusterdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/data/clusterdata.csv -------------------------------------------------------------------------------- /Interactives/data/galaxy_description.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/data/galaxy_description.csv -------------------------------------------------------------------------------- /Interactives/data/interpolated_evolution.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/data/interpolated_evolution.csv -------------------------------------------------------------------------------- /Interactives/data/spec_data_use.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/data/spec_data_use.csv -------------------------------------------------------------------------------- /Interactives/galaxyparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/galaxyparam.py -------------------------------------------------------------------------------- /Interactives/images/sun_surface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/images/sun_surface.jpg -------------------------------------------------------------------------------- /Interactives/number_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/number_formatting.py -------------------------------------------------------------------------------- /Interactives/starlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/starlib.py -------------------------------------------------------------------------------- /Interactives/tempNcolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/Interactives/tempNcolor.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/_config.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/environment.yml -------------------------------------------------------------------------------- /index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/index.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanCab/AstroInteractives/HEAD/requirements.txt --------------------------------------------------------------------------------