├── .github └── workflows │ ├── blank.yml │ └── superlinter.yml ├── .gitignore ├── LICENSE ├── README.md ├── fastCharging.py ├── plotSOX.py └── src └── pybamm_funcs.py /.github/workflows/blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghuramshankar/optimal-charging-of-li-ion-batteries/HEAD/.github/workflows/blank.yml -------------------------------------------------------------------------------- /.github/workflows/superlinter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghuramshankar/optimal-charging-of-li-ion-batteries/HEAD/.github/workflows/superlinter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghuramshankar/optimal-charging-of-li-ion-batteries/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghuramshankar/optimal-charging-of-li-ion-batteries/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghuramshankar/optimal-charging-of-li-ion-batteries/HEAD/README.md -------------------------------------------------------------------------------- /fastCharging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghuramshankar/optimal-charging-of-li-ion-batteries/HEAD/fastCharging.py -------------------------------------------------------------------------------- /plotSOX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghuramshankar/optimal-charging-of-li-ion-batteries/HEAD/plotSOX.py -------------------------------------------------------------------------------- /src/pybamm_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghuramshankar/optimal-charging-of-li-ion-batteries/HEAD/src/pybamm_funcs.py --------------------------------------------------------------------------------