├── .gitignore ├── FillCalc2.py ├── LICENSE ├── README.md ├── _config.yml ├── doc ├── fillcalc2.1.jpg ├── fillcalc2.md ├── installation.md ├── installation_v2.md ├── modcalc2.jpg ├── modcalc2.md ├── p_vs_mols_1.jpg ├── pyd_mainscreen.JPG ├── source_docs.md ├── user_manual.md ├── user_manual_v2.md ├── van_der_waals.md └── vdw-ab-formula.gif ├── modCalc2.py ├── pydplan_bars.py ├── pydplan_buhlmann.py ├── pydplan_classes.py ├── pydplan_heat.py ├── pydplan_main.py ├── pydplan_plot.py ├── pydplan_profiletools.py ├── pydplan_table.py ├── tmx_calc.py └── vdw_calc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/.gitignore -------------------------------------------------------------------------------- /FillCalc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/FillCalc2.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/_config.yml -------------------------------------------------------------------------------- /doc/fillcalc2.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/fillcalc2.1.jpg -------------------------------------------------------------------------------- /doc/fillcalc2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/fillcalc2.md -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/installation.md -------------------------------------------------------------------------------- /doc/installation_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/installation_v2.md -------------------------------------------------------------------------------- /doc/modcalc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/modcalc2.jpg -------------------------------------------------------------------------------- /doc/modcalc2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/modcalc2.md -------------------------------------------------------------------------------- /doc/p_vs_mols_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/p_vs_mols_1.jpg -------------------------------------------------------------------------------- /doc/pyd_mainscreen.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/pyd_mainscreen.JPG -------------------------------------------------------------------------------- /doc/source_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/source_docs.md -------------------------------------------------------------------------------- /doc/user_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/user_manual.md -------------------------------------------------------------------------------- /doc/user_manual_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/user_manual_v2.md -------------------------------------------------------------------------------- /doc/van_der_waals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/van_der_waals.md -------------------------------------------------------------------------------- /doc/vdw-ab-formula.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/doc/vdw-ab-formula.gif -------------------------------------------------------------------------------- /modCalc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/modCalc2.py -------------------------------------------------------------------------------- /pydplan_bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/pydplan_bars.py -------------------------------------------------------------------------------- /pydplan_buhlmann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/pydplan_buhlmann.py -------------------------------------------------------------------------------- /pydplan_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/pydplan_classes.py -------------------------------------------------------------------------------- /pydplan_heat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/pydplan_heat.py -------------------------------------------------------------------------------- /pydplan_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/pydplan_main.py -------------------------------------------------------------------------------- /pydplan_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/pydplan_plot.py -------------------------------------------------------------------------------- /pydplan_profiletools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/pydplan_profiletools.py -------------------------------------------------------------------------------- /pydplan_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/pydplan_table.py -------------------------------------------------------------------------------- /tmx_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/tmx_calc.py -------------------------------------------------------------------------------- /vdw_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eianlei/pydplan/HEAD/vdw_calc.py --------------------------------------------------------------------------------