An open API service indexing awesome lists of open source software.

https://github.com/mdh266/advection_solver

Solves the steady-state advection equation using the discontinuous Galerkin method.
https://github.com/mdh266/advection_solver

c-plus-plus dealii discontinuous-galerkin

Last synced: 7 months ago
JSON representation

Solves the steady-state advection equation using the discontinuous Galerkin method.

Awesome Lists containing this project

README

        

# Advection Equation Solver

## Introduction
This code is designed to numerically solve the steady-state
advection equation
using the
discontinuous Galerkin (DG) method
.

**Note**
This is refactored code from the

step-30
in the deal.ii tutorial. The capabilities of anisotropic
mesh refinement has been removed to more clearly show how to implement DG methods using
the deal.ii library.

## Requirements
The requirements for this software is
deal.ii library version 8.4.0 or higher,
CMake version 2.8 or higher.

## Installation
First obtain and install a copy of the dealii
deal.ii library version 8.4.0 or higher.

## 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*