├── .gitignore ├── Polynomial.py ├── README.md ├── getBaseFunctions.py ├── getDampingMatrix.py ├── getJacobians.py ├── getMassMatrix.py ├── getStiffnessMatrix.py ├── globalVars.py ├── integrals.py ├── readData.py ├── readMesh.py └── simule.py /.gitignore: -------------------------------------------------------------------------------- 1 | *pyc 2 | *dat -------------------------------------------------------------------------------- /Polynomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/Polynomial.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/README.md -------------------------------------------------------------------------------- /getBaseFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/getBaseFunctions.py -------------------------------------------------------------------------------- /getDampingMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/getDampingMatrix.py -------------------------------------------------------------------------------- /getJacobians.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/getJacobians.py -------------------------------------------------------------------------------- /getMassMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/getMassMatrix.py -------------------------------------------------------------------------------- /getStiffnessMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/getStiffnessMatrix.py -------------------------------------------------------------------------------- /globalVars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/globalVars.py -------------------------------------------------------------------------------- /integrals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/integrals.py -------------------------------------------------------------------------------- /readData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/readData.py -------------------------------------------------------------------------------- /readMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/readMesh.py -------------------------------------------------------------------------------- /simule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewWang996/Discontinuous-Galerkin/HEAD/simule.py --------------------------------------------------------------------------------