├── .gitignore ├── README.md ├── crate_model_state_dict.pth ├── ecm_model.py ├── jup_notebook ├── jupyter_sim.py └── simulate_cell.ipynb ├── lfp_simulate.py ├── requirements.txt ├── rolling_and_plot.py └── sim_model_state_dict.pth /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att-ar/ecm_battery_simulation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att-ar/ecm_battery_simulation/HEAD/README.md -------------------------------------------------------------------------------- /crate_model_state_dict.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att-ar/ecm_battery_simulation/HEAD/crate_model_state_dict.pth -------------------------------------------------------------------------------- /ecm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att-ar/ecm_battery_simulation/HEAD/ecm_model.py -------------------------------------------------------------------------------- /jup_notebook/jupyter_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att-ar/ecm_battery_simulation/HEAD/jup_notebook/jupyter_sim.py -------------------------------------------------------------------------------- /jup_notebook/simulate_cell.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att-ar/ecm_battery_simulation/HEAD/jup_notebook/simulate_cell.ipynb -------------------------------------------------------------------------------- /lfp_simulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att-ar/ecm_battery_simulation/HEAD/lfp_simulate.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att-ar/ecm_battery_simulation/HEAD/requirements.txt -------------------------------------------------------------------------------- /rolling_and_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att-ar/ecm_battery_simulation/HEAD/rolling_and_plot.py -------------------------------------------------------------------------------- /sim_model_state_dict.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/att-ar/ecm_battery_simulation/HEAD/sim_model_state_dict.pth --------------------------------------------------------------------------------