GitHub - Aziz-RV/2D-Heat-equation-solver
github.com › Aziz-RV › 2D-Heat-equation-solverJan 02, 2022 · 2D-Heat equation solver The project is about writing a solver for steady state solution of 2D heat equation. Since the steady state solution is time independent, the pde reduces to Poisson equation with right hand side as zero (Laplace equation) and that is what we solve in this project. We make use of the finite difference method for solving this.
Solving 2D Heat Equation…
www.raucci.net › 2021/10/07 › solving-2d-heat-equationOct 07, 2021 · print("2D heat equation solver") plate_length = 50 max_iter_time = 750 alpha = 2 delta_x = 1 delta_t = (delta_x ** 2)/(4 * alpha) gamma = (alpha * delta_t) / (delta_x ** 2) # Initialize solution: the grid of u (k, i, j) u = np.empty ( (max_iter_time, plate_length, plate_length)) # Initial condition everywhere inside the grid u_initial = 0