https://github.com/polossk/ezpde-solver
Assignments of Mathematical Foundation of Finite Element Methods
https://github.com/polossk/ezpde-solver
finite-element-methods matlab pde-solver
Last synced: 5 months ago
JSON representation
Assignments of Mathematical Foundation of Finite Element Methods
- Host: GitHub
- URL: https://github.com/polossk/ezpde-solver
- Owner: polossk
- License: mit
- Created: 2017-12-09T13:28:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-25T03:29:38.000Z (over 6 years ago)
- Last Synced: 2025-02-01T20:45:01.202Z (5 months ago)
- Topics: finite-element-methods, matlab, pde-solver
- Language: MATLAB
- Size: 294 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ezpde-solver

[](LICENSE)
## Usage
- copy all codes and subfolder to your workspace directly.
- add `include(package_path)` in your code, where the default value of `package_path` is `'.\ezpde-solver\'`.### Workspace Example
```plain
Workspace\
├── your_code_1.m
├── your_code_2.m
└── includes\
├── module_core\
│ ├── error_1d_core\
│ ├── error_2d_core\
│ ├── fem_1d_core\
│ ├── fem_2d_core\
│ └── gaussint\
├── module_errors\
├── module_solver\
└── utils\
```## Note
- Homework of Mathematical Foundation of Finite Element Methods
- Naive FEM code, easy to use but no guarantee of both its effectiveness and efficiency
- I would to give my special thanks to Prof. He for his excellent teaching## Cautions & Todos
1. `boundary.type` was auto pasted to the `boundary.nodes(1, :)`, which indecated the boundary element's type information. There is going to modify in an automatic way to sustain boundary type with it's boundary information.
2. please define your equation in the same way as these `example` codes.
3. **Done***rename `equ_error*.m` to `equation_error*.m`*## Copyright
Use this code whatever you want, under the circumstances of acknowleged the
mit license this page below. Star this repository if you like, and it will
be very generous of you!## License
The MIT License (MIT)
Copyright (c) 2017 Shangkun ShenPermission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.