Coder Social home page Coder Social logo

finite-difference-method's Introduction

Finite-Difference-Method

CodeFactor

A Finite Difference Method Engine in C++

This repository hosts a small library/engine for solving spacial differential equations using the finite difference method. This was created as a fun way to explore numerical methods as a stepping stone for the Finite Elements Method. Feel free to use this code as an example of how to numerically solve partial differential equations.

How it Works

Spacial variables such as the object length, conductivity, and step size across the mesh are kept in the Mesh class. An example of filling out relevant Mesh information is showen below.

Mesh1D mesh;

mesh.spacial_length = 10;

mesh.spacial_step_size = 1;

mesh.thermal_conductivity = 0.01;

The boundary condition is represented by a function that takes two parameters: x and y. The boundary condition can be changed by changing the equation inside. For example, a periodic boundary condition can be represented by

double BC(double x, int y)
{
	return sin(x)*cos(y);
}

The boundary condition also belongs to the mesh.

mesh.DirchletBoundaryEquation = BC;

Engine1D engine;

engine.StartSimulation(mesh);

finite-difference-method's People

Contributors

thomasthelen avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.