This project explores the 2D unsteady heat diffusion equation in aluminum using:
- Physics-Informed Neural Networks (PINNs) (two different versions)
- Finite Difference Method (FDM) for comparison
We implement deep learning models that respect the heat equation as a constraint, then compare their accuracy and performance to a classical numerical solver.
square.ipynb— First version of the PINN modelFinal_void.ipynb— Improved version of the PINN modeldata/— Input files (e.g..xlsx)figures/— Plots and screenshots of resultsrequirements.txt— Python dependencies
- Clone this repository:
git clone https://github.com/Adi-0202/PINN-Heat-Diffusion.git cd PINN-Heat-Diffusion - Install dependencies:
pip install -r requirements.txt
- Run the scripts:
Final_void.ipynb square.ipynb
- Results: Visualizations and screenshots of results can be found in the figures/ directory. Examples: PINNs solutions vs. FDM baseline Error and convergence plots
- Acknowledgement: Thanks to Professor Dr.Kritesh Gupta for guidance and support. 6.Keywords: Physics-Informed Neural Networks, Heat Diffusion, Finite Difference Method, Deep Learning, Numerical Methods