https://github.com/devansh1106/ode-solver-parallel
Parallel Solver for linear ODEs using Finite Difference method. Uses MPI and MUtifrontal Massively Parallel sparse Solver (MUMPS) for solving linear systems.
https://github.com/devansh1106/ode-solver-parallel
c cplusplus linear-system-solver mumps ode-solver parallel-computing parallel-programming
Last synced: 10 months ago
JSON representation
Parallel Solver for linear ODEs using Finite Difference method. Uses MPI and MUtifrontal Massively Parallel sparse Solver (MUMPS) for solving linear systems.
- Host: GitHub
- URL: https://github.com/devansh1106/ode-solver-parallel
- Owner: Devansh1106
- Created: 2023-10-01T11:34:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-18T12:35:39.000Z (about 2 years ago)
- Last Synced: 2025-02-10T05:18:11.058Z (about 1 year ago)
- Topics: c, cplusplus, linear-system-solver, mumps, ode-solver, parallel-computing, parallel-programming
- Language: C++
- Homepage:
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ODE-Solver-Parallel
- This repository contains code for solving a linear differential equation using Finite difference method in parallel. A special C library has been used for parallelizing, called MUltiutility Massively Parallel sparse Solver (MUMPS). Code contains both cpp and c files linked using makefile.
- ***The code contains in this repository solves ODE based on the inputted boundary condition by the user once only and does not auto-generate boundary conditions for iteratively solving ODE.***
- For iteratively solving ODE with auto-generative boundary conditions, check another repository on my account by the name of `ODE-Solver-Parallel-2`.