Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mdh266/poisson_solver
Poisson Equation Solver Using The Finite Element Method
https://github.com/mdh266/poisson_solver
c-plus-plus dealii finite-element-methods
Last synced: 18 days ago
JSON representation
Poisson Equation Solver Using The Finite Element Method
- Host: GitHub
- URL: https://github.com/mdh266/poisson_solver
- Owner: mdh266
- Created: 2016-12-30T17:26:40.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-19T15:02:07.000Z (over 7 years ago)
- Last Synced: 2024-06-11T17:54:03.930Z (6 months ago)
- Topics: c-plus-plus, dealii, finite-element-methods
- Language: C++
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Poisson_Solver
## Introduction
This code is designed to numerically solve the
Poisson equation
using the
finite Element Method (FEM).## Requirements
The requirements for this software is
deal.ii library version 8.3.0 or higher,
CMake version 2.8 or higher.## Installation
First obtain and install a copy of the dealii
deal.ii library version 8.3.0 or higher.
See the dealii library for installation instructions and help installing trilinos and p4est.## Compiling
To generate a makefile for this code using CMake type into the terminal:cmake . -DDEAL_II_DIR=/path_to_deal.ii
To can compile the code use:
*make release*
## Running
To run the executable use:*./main*