├── .github ├── ISSUE_TEMPLATE └── workflows │ ├── pypi.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .travis.yml ├── COPYING.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── examples ├── abun_advanced.png ├── abun_basic.png ├── abun_bya.png ├── abun_bypandn.png ├── abundances.py ├── dynamo.py ├── dynamo1.png ├── dynamo2.png ├── kip.png ├── kip_age.png ├── kip_prof.png ├── plotKip.py ├── plotTRho.py └── trho.png ├── mesaPlot ├── __init__.py ├── debug.py ├── file_reader.py ├── plot.py └── version.py ├── pyproject.toml ├── setup.py ├── tests ├── LOGS │ ├── history.data │ ├── profile1.data │ ├── profile17.data │ ├── profile2.data │ ├── profile3.data │ ├── profile4.data │ ├── profile5.data │ ├── profile6.data │ └── profiles.index ├── __init__.py ├── test_mesaplot.py └── work │ ├── history_columns.list │ ├── inlist │ ├── inlist_pgstar │ ├── inlist_project │ └── profile_columns.list └── tox.ini /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/COPYING.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | python3 setup.py install --user 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/README.md -------------------------------------------------------------------------------- /examples/abun_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/abun_advanced.png -------------------------------------------------------------------------------- /examples/abun_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/abun_basic.png -------------------------------------------------------------------------------- /examples/abun_bya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/abun_bya.png -------------------------------------------------------------------------------- /examples/abun_bypandn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/abun_bypandn.png -------------------------------------------------------------------------------- /examples/abundances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/abundances.py -------------------------------------------------------------------------------- /examples/dynamo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/dynamo.py -------------------------------------------------------------------------------- /examples/dynamo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/dynamo1.png -------------------------------------------------------------------------------- /examples/dynamo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/dynamo2.png -------------------------------------------------------------------------------- /examples/kip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/kip.png -------------------------------------------------------------------------------- /examples/kip_age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/kip_age.png -------------------------------------------------------------------------------- /examples/kip_prof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/kip_prof.png -------------------------------------------------------------------------------- /examples/plotKip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/plotKip.py -------------------------------------------------------------------------------- /examples/plotTRho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/plotTRho.py -------------------------------------------------------------------------------- /examples/trho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/examples/trho.png -------------------------------------------------------------------------------- /mesaPlot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/mesaPlot/__init__.py -------------------------------------------------------------------------------- /mesaPlot/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/mesaPlot/debug.py -------------------------------------------------------------------------------- /mesaPlot/file_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/mesaPlot/file_reader.py -------------------------------------------------------------------------------- /mesaPlot/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/mesaPlot/plot.py -------------------------------------------------------------------------------- /mesaPlot/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/mesaPlot/version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/LOGS/history.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/LOGS/history.data -------------------------------------------------------------------------------- /tests/LOGS/profile1.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/LOGS/profile1.data -------------------------------------------------------------------------------- /tests/LOGS/profile17.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/LOGS/profile17.data -------------------------------------------------------------------------------- /tests/LOGS/profile2.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/LOGS/profile2.data -------------------------------------------------------------------------------- /tests/LOGS/profile3.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/LOGS/profile3.data -------------------------------------------------------------------------------- /tests/LOGS/profile4.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/LOGS/profile4.data -------------------------------------------------------------------------------- /tests/LOGS/profile5.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/LOGS/profile5.data -------------------------------------------------------------------------------- /tests/LOGS/profile6.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/LOGS/profile6.data -------------------------------------------------------------------------------- /tests/LOGS/profiles.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/LOGS/profiles.index -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_mesaplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/test_mesaplot.py -------------------------------------------------------------------------------- /tests/work/history_columns.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/work/history_columns.list -------------------------------------------------------------------------------- /tests/work/inlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/work/inlist -------------------------------------------------------------------------------- /tests/work/inlist_pgstar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/work/inlist_pgstar -------------------------------------------------------------------------------- /tests/work/inlist_project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/work/inlist_project -------------------------------------------------------------------------------- /tests/work/profile_columns.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tests/work/profile_columns.list -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjfarmer/mesaplot/HEAD/tox.ini --------------------------------------------------------------------------------