# fembook **Repository Path**: chtld/fembook ## Basic Information - **Project Name**: fembook - **Description**: Notes on finite element method - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-05-21 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Codes on finite element method These codes are prepared as material for teaching finite element method. * deal.II: Examples using deal.II library in C++ * deal.II/ex00: An introduction to C++ using PDE problem * fenics: Examples using Fenics in Python * dg1d: A simple 1-D DG code in Python for scalar conservation law ## How to get the code ? (1) The easiest way is by using git which will download the code in directory ```fembook``` ``` git clone https://github.com/cpraveen/fembook.git ``` (2) Download a zip file by clicking on the green button called "Clone or download" and then "Download ZIP". (3) Or use wget ``` wget https://github.com/cpraveen/fembook/archive/master.zip ``` and unzip it ``` unzip master.zip ``` which creates the directory ```fembook-master```.