Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Solving Partial Differential Equations

In a previous repository (see the README) we saw what an ordinary differential equation (ODE) is and some methods to solve them, so we applied these methods to some examples. Now, we wana study a different tipy of a differental equation, the partial differential equation (PDE). In the introduction we will discuss more about an EDP, them we will show three different methods to solve them in subsequent sections.

Introduction

In a ODE we have an equation wich the derivatives are taken with respect to only one variable, in an PDE however the equation depends on partial derivatives of several variables, for example, the heat equation:

$\frac{\partial u}{\partial t} = \frac{\partial ^2 u}{\partial x^2}$

is an PDE. In physics we have several applications of a PDE such as: The diffusion equation that describes the density fluctuation of a material that diffuses; The wave equation that is mostly used in classical and quantum mechanics and the Maxwell's equations that describe an electromagnetic wave. Therefore, it is important to know more about them and how we can solve them.

About

In this repository we will show different methods to solve partial differential equations and how to implement them using Fortran and Python.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors