├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── application ├── algo_docs │ ├── calculate_hohmann_transfer_doc.tex │ ├── calculate_hohmann_transfer_example.tex │ ├── gravitational_assist_doc.tex │ ├── gravitational_assist_example.tex │ ├── init.tex │ ├── optimize_trajectory_doc.tex │ ├── optimize_trajectory_example.tex │ ├── predator_prey_system_doc.tex │ ├── predator_prey_system_example.tex │ └── title_page.tex ├── examples │ ├── calculate_hohmann_transfer_example.py │ ├── gravitational_assist_example.py │ ├── optimize_trajectory_example.py │ └── predator_prey_system_example.py ├── plots │ ├── calculate_hohmann_transfer_plot.png │ ├── gravitational_assist_plot.png │ ├── optimize_trajectory_plot.png │ └── predator_prey_system_plot.png ├── programmatic_report.aux ├── programmatic_report.log ├── programmatic_report.pdf ├── programmatic_report.tex ├── programmatic_report.toc ├── python_code │ ├── calculate_hohmann_transfer.py │ ├── gravitational_assist.py │ ├── optimize_trajectory.py │ └── predator_prey_system.py ├── python_to_latex_code.ipynb ├── test_python_code.ipynb └── total_prompt.txt └── pyproject.toml /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/README.md -------------------------------------------------------------------------------- /application/algo_docs/calculate_hohmann_transfer_doc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/algo_docs/calculate_hohmann_transfer_doc.tex -------------------------------------------------------------------------------- /application/algo_docs/calculate_hohmann_transfer_example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/algo_docs/calculate_hohmann_transfer_example.tex -------------------------------------------------------------------------------- /application/algo_docs/gravitational_assist_doc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/algo_docs/gravitational_assist_doc.tex -------------------------------------------------------------------------------- /application/algo_docs/gravitational_assist_example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/algo_docs/gravitational_assist_example.tex -------------------------------------------------------------------------------- /application/algo_docs/init.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/algo_docs/init.tex -------------------------------------------------------------------------------- /application/algo_docs/optimize_trajectory_doc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/algo_docs/optimize_trajectory_doc.tex -------------------------------------------------------------------------------- /application/algo_docs/optimize_trajectory_example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/algo_docs/optimize_trajectory_example.tex -------------------------------------------------------------------------------- /application/algo_docs/predator_prey_system_doc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/algo_docs/predator_prey_system_doc.tex -------------------------------------------------------------------------------- /application/algo_docs/predator_prey_system_example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/algo_docs/predator_prey_system_example.tex -------------------------------------------------------------------------------- /application/algo_docs/title_page.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/algo_docs/title_page.tex -------------------------------------------------------------------------------- /application/examples/calculate_hohmann_transfer_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/examples/calculate_hohmann_transfer_example.py -------------------------------------------------------------------------------- /application/examples/gravitational_assist_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/examples/gravitational_assist_example.py -------------------------------------------------------------------------------- /application/examples/optimize_trajectory_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/examples/optimize_trajectory_example.py -------------------------------------------------------------------------------- /application/examples/predator_prey_system_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/examples/predator_prey_system_example.py -------------------------------------------------------------------------------- /application/plots/calculate_hohmann_transfer_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/plots/calculate_hohmann_transfer_plot.png -------------------------------------------------------------------------------- /application/plots/gravitational_assist_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/plots/gravitational_assist_plot.png -------------------------------------------------------------------------------- /application/plots/optimize_trajectory_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/plots/optimize_trajectory_plot.png -------------------------------------------------------------------------------- /application/plots/predator_prey_system_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/plots/predator_prey_system_plot.png -------------------------------------------------------------------------------- /application/programmatic_report.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/programmatic_report.aux -------------------------------------------------------------------------------- /application/programmatic_report.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/programmatic_report.log -------------------------------------------------------------------------------- /application/programmatic_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/programmatic_report.pdf -------------------------------------------------------------------------------- /application/programmatic_report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/programmatic_report.tex -------------------------------------------------------------------------------- /application/programmatic_report.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/programmatic_report.toc -------------------------------------------------------------------------------- /application/python_code/calculate_hohmann_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/python_code/calculate_hohmann_transfer.py -------------------------------------------------------------------------------- /application/python_code/gravitational_assist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/python_code/gravitational_assist.py -------------------------------------------------------------------------------- /application/python_code/optimize_trajectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/python_code/optimize_trajectory.py -------------------------------------------------------------------------------- /application/python_code/predator_prey_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/python_code/predator_prey_system.py -------------------------------------------------------------------------------- /application/python_to_latex_code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/python_to_latex_code.ipynb -------------------------------------------------------------------------------- /application/test_python_code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/test_python_code.ipynb -------------------------------------------------------------------------------- /application/total_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/application/total_prompt.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pederw455/python-latex-repo/HEAD/pyproject.toml --------------------------------------------------------------------------------