https://github.com/polossk/peridynamics-example-using-hmsolver
Private usage for backup. The HMSolve is a private repo.
https://github.com/polossk/peridynamics-example-using-hmsolver
numerical-simulations peridynamics pyhton3
Last synced: 2 months ago
JSON representation
Private usage for backup. The HMSolve is a private repo.
- Host: GitHub
- URL: https://github.com/polossk/peridynamics-example-using-hmsolver
- Owner: polossk
- License: mit
- Created: 2020-11-17T08:19:43.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-19T08:17:19.000Z (almost 4 years ago)
- Last Synced: 2025-01-16T00:53:15.252Z (4 months ago)
- Topics: numerical-simulations, peridynamics, pyhton3
- Language: GLSL
- Homepage:
- Size: 4.1 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Peridynamics-Example-Using-HMSolver
> Private usage. The HMSolver is private repo. //
> 仅限个人使用。HMSolver 是一个私有的求解器## Working Directory
* [`Group-2020-11-17`](https://github.com/polossk/Peridynamics-Example-Using-HMSolver/tree/main/Group-2020-11-17): 数值算例组,于 2020 年 11 月 17 日开始整理
* [`Utilities`](https://github.com/polossk/Peridynamics-Example-Using-HMSolver/tree/main/Utilities): 独立常用组件## Source lines of code (SLOC)
| SLOC | python | powershell | markdown |
| :--------------- | -------: | ---------: | -------: |
| . | | | 26 |
| Chinese-Handbook | 47 | | 505 |
| Examples | 197 | | 498 |
| Group-2020-11-17 | 1496 | 67 | 178 |
| Utilities | 9 | 1 | 12 |
| **Total** | **1749** | **68** | **1219** |* Linux: Shell
```shell
for ext in "*.py" "*.ps1" "*.md"
do
wc $(find . -name $ext) -l
done
```
* Windows: PowerShell
```powershell
"*.py", "*.ps1", "*.md" | ForEach-Object { Get-ChildItem -Path .\ -Recurse $_ | Get-Content | Measure-Object -Line }
```