├── LICENSE ├── README.md ├── pysofc ├── GUI │ ├── nullDimWindow.py │ ├── nullDimWindow.ui │ ├── parameters.ui │ ├── parametersWindow.py │ ├── results.ui │ └── resultsWindow.py ├── LumpedHydrogenGUI.py ├── Parameter Files │ ├── Related Articles.txt │ ├── cell_parameters_jung2005.json │ └── cell_parameters_kazempoor2014.json ├── __init__.py ├── models_zero_dim.py ├── solid_oxide_cell.py └── utility.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/README.md -------------------------------------------------------------------------------- /pysofc/GUI/nullDimWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/GUI/nullDimWindow.py -------------------------------------------------------------------------------- /pysofc/GUI/nullDimWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/GUI/nullDimWindow.ui -------------------------------------------------------------------------------- /pysofc/GUI/parameters.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/GUI/parameters.ui -------------------------------------------------------------------------------- /pysofc/GUI/parametersWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/GUI/parametersWindow.py -------------------------------------------------------------------------------- /pysofc/GUI/results.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/GUI/results.ui -------------------------------------------------------------------------------- /pysofc/GUI/resultsWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/GUI/resultsWindow.py -------------------------------------------------------------------------------- /pysofc/LumpedHydrogenGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/LumpedHydrogenGUI.py -------------------------------------------------------------------------------- /pysofc/Parameter Files/Related Articles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/Parameter Files/Related Articles.txt -------------------------------------------------------------------------------- /pysofc/Parameter Files/cell_parameters_jung2005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/Parameter Files/cell_parameters_jung2005.json -------------------------------------------------------------------------------- /pysofc/Parameter Files/cell_parameters_kazempoor2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/Parameter Files/cell_parameters_kazempoor2014.json -------------------------------------------------------------------------------- /pysofc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/__init__.py -------------------------------------------------------------------------------- /pysofc/models_zero_dim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/models_zero_dim.py -------------------------------------------------------------------------------- /pysofc/solid_oxide_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/solid_oxide_cell.py -------------------------------------------------------------------------------- /pysofc/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakplt/PySOFC/HEAD/pysofc/utility.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | matplotlib 4 | PyQt5 5 | --------------------------------------------------------------------------------