Downloads:
2,417
Downloads of v 3.4.0:
36
Last Update:
11 May 2024
Package Maintainer(s):
Software Author(s):
- Theodore Chang
Tags:
fem hpc igasuanPan
This is not the latest version of suanPan available.
- 1
- 2
- 3
3.4.0 | Updated: 11 May 2024
Downloads:
2,417
Downloads of v 3.4.0:
36
Maintainer(s):
Software Author(s):
- Theodore Chang
suanPan 3.4.0
This is not the latest version of suanPan available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Theodore Chang. The inclusion of Theodore Chang trademark(s), if any, upon this webpage is solely to identify Theodore Chang goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install suanPan, run the following command from the command line or from PowerShell:
To upgrade suanPan, run the following command from the command line or from PowerShell:
To uninstall suanPan, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download suanpan --internalize --version=3.4.0 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade suanpan -y --source="'INTERNAL REPO URL'" --version="'3.4.0'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade suanpan -y --source="'INTERNAL REPO URL'" --version="'3.4.0'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install suanpan
win_chocolatey:
name: suanpan
version: '3.4.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'suanpan' do
action :install
source 'INTERNAL REPO URL'
version '3.4.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller suanpan
{
Name = "suanpan"
Version = "3.4.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'suanpan':
ensure => '3.4.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 24 Aug 2024.
🧮 suanPan is a finite element method (FEM) simulation platform for applications in fields such as solid mechanics and civil/structural/seismic engineering. The name suanPan (in some places such as suffix it is also abbreviated as suPan) comes from the term Suan Pan (算盤), which is Chinese abacus. suanPan is written in modern high quality C++ code and is targeted to provide an efficient, concise, flexible and reliable FEM simulation platform.
@echo off
assoc .sp=suanpanmodel
assoc .supan=suanpanmodel
set "program=%~dp0suanPan.exe"
if not exist "%program%" (
echo suanPan.exe does not exist in current folder
goto byebye
)
ftype suanpanmodel="%program%" "-f" "%%1"
set "program=%program:\=/%"
set "target=%appdata%\Sublime Text 3\Packages\User\"
if exist "%target%\" goto copyfile
set "target=%appdata%\Sublime Text\Packages\User\"
if exist "%target%\" goto copyfile
set target=
set /p target="Input path contains sublime_text.exe (leave empty to quit): "
if "%target%" == "" goto byebye
if not exist "%target%\sublime_text.exe" (
echo sublime_text.exe does not exist in the given folder
goto byebye
)
set "target=%target%\Data\Packages\User\"
set "target=%target:\=/%"
:copyfile
echo {"cmd":["%program%","-nc","-f","$file"],"selector":"source.supan","file_patterns":["*.supan","*.sp"]} > "%~dp0suanPan.sublime-build"
xcopy "%~dp0suanPan.sublime*" "%target%"
:byebye
# Changelog
## known issues
1. The `MKL` includes outdated `FEAST`, the external names in `FEAST` library are modified to avoid linking error.
2. The `SPIKE` solver may occasionally freeze, to circumvent, try to avoid mixing compilers from different vendors.
3. The `MUMPS` solver throws segfaults with large matrices, appears to be quite slow.
4. The `FGMRES` solver requires refinements.
## version 3.4
1. update `Armadillo` to version `12.8.2` [#193](https://github.com/TLCFEM/suanPan/pull/193)
2. plane strain Duncan-Selig soil model [#195](https://github.com/TLCFEM/suanPan/pull/195)
3. update `Catch2` to version `3.5.4`
4. update `TBB` to version `2021.12.0` [#199](https://github.com/TLCFEM/suanPan/pull/199)
5. update `MUMPS` to version `5.7.1` [#202](https://github.com/TLCFEM/suanPan/pull/202)
## version 3.3
1. (breaking) revise syntax for `ConcreteTsai`, `Concrete21` and `Concrete22` using a more consistent definition
2. fix tangent stiffness in `ConcreteK4` model [#171](https://github.com/TLCFEM/suanPan/pull/171)
3. update `OpenBLAS` to version `0.3.25`
4. update `SuperLU` to version `6.0.1`
5. better `RCM` algorithm that may result in a smaller bandwidth, thus, potentially more efficient
solving [#175](https://github.com/TLCFEM/suanPan/pull/175)
6. update `Armadillo` to version `12.6.7` [#180](https://github.com/TLCFEM/suanPan/pull/180)
7. enable lazy evaluation and avoid temporary global matrices, faster dynamic
analysis [#183](https://github.com/TLCFEM/suanPan/pull/183)
8. bugfixes: [#185](https://github.com/TLCFEM/suanPan/pull/185)
9. update `Catch2` to version `3.5.2`
10. update `fmt` to version `10.2.1`
11. add nonviscous damping: `NonviscousNewmark` (global level integrator), `ElementalNonviscous` (element level
modifier) and `Nonviscous01` (material level model)
## version 3.2
1. revise uniaxial universal damage models [#153](https://github.com/TLCFEM/suanPan/pull/153)
2. update `OpenBLAS` to version `0.3.24`
3. add a new uniaxial concrete model `ConcreteK4` [#155](https://github.com/TLCFEM/suanPan/pull/155)
4. add beam element for arbitrary thin-/thick-walled open/close section with torsion and
warping `B31OS` [#159](https://github.com/TLCFEM/suanPan/pull/159)
5. better local iteration convergence criterion [#161](https://github.com/TLCFEM/suanPan/pull/161)
6. `B31OS` and `EB31OS` associated transformations `B3DOSL`, `B3DOSC`; sections, `Fibre3DOS`, `Cell3DOS`; material
wrappers `OS146`, `OS146S`
7. add elemental damping using Lee's model
8. support Lode angle in CDPM2 [#163](https://github.com/TLCFEM/suanPan/pull/163)
9. add `AICN` cubic Newton solver [#165](https://github.com/TLCFEM/suanPan/pull/165)
10. remove `Bilinear2D` material, use `PlaneStress`/`PlaneStrain` wrapper and `BilinearJ2` 3D model instead
## version 3.1
1. iterative solvers by the Lis library [#145](https://github.com/TLCFEM/suanPan/pull/145)
2. update `Armadillo` to version `12.6.3` [#149](https://github.com/TLCFEM/suanPan/pull/149)
3. add `TimberPD` 3D material for timber [#151](https://github.com/TLCFEM/suanPan/pull/151)
## version 3.0
1. add experimental `MAGMA` based GPU sparse solver [#123](https://github.com/TLCFEM/suanPan/pull/123)
2. add nonlinear transformation for shell elements [#124](https://github.com/TLCFEM/suanPan/pull/124)
3. update `VTK` to version `9.2.6`
4. add `CustomNodeGroup` [#126](https://github.com/TLCFEM/suanPan/pull/126)
5. add `TranslationConnector` [#127](https://github.com/TLCFEM/suanPan/pull/127)
6. add `CustomAmplitude` [#129](https://github.com/TLCFEM/suanPan/pull/129)
7. update `Armadillo` to version `12.2` [#134](https://github.com/TLCFEM/suanPan/pull/134)
8. add `AsymmElastic1D` [#135](https://github.com/TLCFEM/suanPan/pull/135)
9. update `TBB` to version `2021.9.0`
10. update `MUMPS` to version `5.6.0`
## version 2.9
1. matrix optimisation
2. update `Catch2` to version `3.3.1`
3. update `TBB` to version `2021.8.0`
4. add mixed precision algorithm for `MUMPS` solver [#119](https://github.com/TLCFEM/suanPan/pull/119)
5. add `CustomDegradation`, `CustomGurson` and `CustomGurson1D` models
6. update `Armadillo` to version `12.0` [#121](https://github.com/TLCFEM/suanPan/pull/121)
## version 2.8
1. better on screen display with the `fmt` library [#99](https://github.com/TLCFEM/suanPan/pull/99)
2. add command `overview`
3. update `OpenBLAS` to version `0.3.21`
4. add Euler buckling load check for `T2D2` [#104](https://github.com/TLCFEM/suanPan/pull/104)
5. speed-up analysis with visualisation recorder [#102](https://github.com/TLCFEM/suanPan/pull/102)
6. update `VTK` to version `9.2.5`
7. add `Expression` to support custom function definition [#105](https://github.com/TLCFEM/suanPan/pull/105)
8. add `CustomMises1D`, `CustomCC`, `CustomCDP`, `CustomDP`, `CustomJ2` and `CustomHoffman` models
## version 2.7
1. optimise assembling of symmetric global matrices [#79](https://github.com/TLCFEM/suanPan/pull/79)
2. extend `BatheTwoStep` to allow customisation of spectral radius [#81](https://github.com/TLCFEM/suanPan/pull/81) and
sub-step size [#82](https://github.com/TLCFEM/suanPan/pull/82)
3. update `Catch2` to version `2.13.10`
4. update `Armadillo` to version `11.4`
5. update modern `Arpack` [#94](https://github.com/TLCFEM/suanPan/pull/94)
6. add `Tchamwa` [#88](https://github.com/TLCFEM/suanPan/pull/88),
`BatheExplicit` [#90](https://github.com/TLCFEM/suanPan/pull/90)
and `GeneralisedAlphaExplicit` [#93](https://github.com/TLCFEM/suanPan/pull/93) explicit time integration methods
7. add `OALTS` two-step implicit time integration method [#92](https://github.com/TLCFEM/suanPan/pull/92)
8. add `Sinh1D` and `Tanh1D` nonlinear elastic 1D material
9. add `linear_system` flag to speed up linear system analysis
## version 2.6.1
1. add `-nu` (`--noupdate`) flag to skip check of new version on startup
2. fix issue [#74](https://github.com/TLCFEM/suanPan/issues/74)
## version 2.6
1. update `MKL` to version `2022.2.0`
2. update `TBB` to version `2021.7.0`
3. update `VTK` to version `9.2.2`
4. add docker images and docker build scripts
5. add `TabularSpline` amplitude that uses cubic spline interpolation
6. add `upsampling` command to upsample time series data
7. add `sdof_response` command to compute response of single degree of freedom system
8. add `response_spectrum` command to compute response spectrum for given ground motion
## version 2.5
1. reformulate NM sections, add `NMB21E` element with end moment release
2. add couple stress membranes `CST3`, `CST6`, `CSM4-8`
3. add universal iterative solvers `BiCGSTAB` and `GMRES`, and preconditioners `Jacobi` and `ILU`
4. add support for `icx` and `ifx` compilers, add support for `clang` on linux
5. fix a bug in `GSSSS` with loads are applied as support motions, add `GSSSSOptimal` scheme
6. add `MassPoint2D` and `MassPoint3D` elements
## version 2.4
1. add `RestitutionWall` constraint which conserves momentum and energy
2. add `benchmark` command to benchmark platform
3. constraints and loads are processed in a fully parallelized manner
4. add 3D viscous damper `Damper03` and `Damper04`
5. bugfixes
## version 2.3
1. update `Armadillo` to version 11.0
2. relocate history record file under home folder
3. add `GSSSS` integrator
4. `LeeNewmark` now supports `PARDISO`, `CUDA` and `FGMRES` solvers
5. move to `C++20`, need `GCC 10.3.0`, `Clang 13.0.1`, `MSVC 14.31`
6. add `MOMENTUM` to record system momentum
7. use non-iterative algorithm for force based beams `F21`, `F21H` and `F31`
## version 2.2
1. add `example` command to showcase the creation of a simple model
2. update `VTK` to version 9.1.0
3. add `LogicAND`, `LogicOR` and `LogicXOR` convergers to use multiple criteria
4. update `oneMKL` to `2022.0.3` on Windows
5. move to `VS2022`
## version 2.1
1. update `Armadillo` to version 10.8
2. add recorder tag to recorded files, remove timestamp for hdf5 files, easier to manage different recorders
3. several minor bugfixes
4. improve `LeeNewmark` and `LeeNewmarkFull` performance
5. correct multithreaded `SuperLU` implementation, change default number of threads to 10
6. bugfixes regarding sparse matrix representation
## version 2.0
1. fix a bug in elastic stiffness in CDP model
2. add porous media plane strain elements `PCPE4UC`, `PCPE8UC`, `PCPE4DC`, `PCPE8DC`
3. add N-M interaction enabled beam element `NMB31` and `NMB21`
4. add N-M interaction enabled section `NM2D1`, `NM3D1` (elastic) and `NM2D2`, `NM3D2` (inelastic)
5. (breaking) change Rayleigh damping related syntax to include tangent stiffness term
6. add different stiffness types to `LeeNewmarkFull`, add support of geometry nonlinearity
7. revise section definition
8. add `B3DC` corotational formulation support to 3D beams
## version 1.9
1. update `Armadillo` to version 10.7
2. update `TBB` version 2021.4.0
3. add `FGMRES` iterative solver
4. switch to `core20` on snap
5. fix the visualisation bug with installation via snap
6. add `LineUDL2D` and `LineUDL3D` loads
## version 1.8
1. add `PlaneSymmetric13` and `PlaneSymmetric23` wrappers
2. add `CoulombFriction` material
3. update `Armadillo` to version 10.6
## version 1.7
1. revise `SimpleSand` model
2. add `DafaliasManzari` sand model
3. add `materialtestbystrainhistory` and `materialtestbystresshistory` utility functions
4. bugfix: potential racing in initialising reference dof, change to serial initialisation
5. bugfix: wrong update of plastic strain in `CDP` model
6. add `CDPM2` model with isotropic damage
## version 1.6
1. add `terminal` command and `output_folder` setting
2. some minor updates
## version 1.5
1. add `scoop` support
2. add `Contact3D` 3D node-triangular facet contact element
3. add `NodeLine` and `NodeFacet` contact constraint
4. add `Sleeve2D`, `Sleeve3D`, `MaxGap2D` and `MaxGap3D` constraint
5. update `OpenBLAS` to version 0.3.15
6. update `Material` class to accommodate couple stress related quantities
## version 1.4
1. add `R2D2` and `R3D2` alias for fixed length constraint
2. add `MinGap2D` and `MinGap3D` inequality constraints
3. add `SupportMotion` loads, including `SupportDisplacement`, `SupportVelocity` and `SupportAcceleration`
4. update `Armadillo` to version 10.4
5. add functionality to check new version
6. add `FEAST` solver
7. improve mixed precision solver performance
8. add `CUDA` solver for dense matrix
## version 1.3
1. update handling of constraints and loads
2. store commands in backup file in CLI mode
3. add `FixedLength2D` and `FixedLength3D` nonlinear constraints
4. improve handling of constraints in dynamic analysis
5. add `NLE1D01` model
6. minor bugfixes
## version 1.2
1. remove dependency on `MAGMA`, now `CUDA` is directly used as the GPU solver
2. add `PARDISO` sparse solver
3. upgrade to `Intel oneAPI Toolkit`
4. add C interface material model
5. remove all reinforced elements, reinforcement can be handled by material models
## version 1.1
1. add phase field enabled elements: `DCP3`, `DCP4`, `DC3D4`, `DC3D8` elements
2. add support to record nodal damping/inertial force `DF` and `IF`
3. add regularized `Yeoh` model for compressible rubbers
4. improve stability of `RambergOsgood` model
5. add `LeeNewmarkFull` damping model, improve performance of `LeeNewmark` damping model
6. add shared memory `SuperLU` solver
7. add `Spike` solver for banded matrices
8. add displacement based beam element with end moment release: `B21EL` and `B21EH` elements
9. correct name of `Kelvin` model
## version 1.0
1. initial release
md5: 65951FC24E97FBB1FE70D8557A02173F | sha1: 4B273B84B9690FEC5DCB8892F4B244A7C1D8AF62 | sha256: 78C912579F91CA4865FDD6B37407B20ADF30D69091698C81D365FFF323FCFF6B | sha512: 9F8977685BF2AABAE053A15BD9CCBC444817FD2A6C63EEB7A88B56B1116F8F0585A9DE1864A0749C8C2F8624556632DB896CA1B510E773C3E74DAE316F1F0F18
md5: 42943C6ACAF8D5CA953911B2BB99FC14 | sha1: EA719EAFD2857B43B20228827F5596F1137AC3D5 | sha256: 427EF018D494BF6CB8531AB3BBCB501ED4C8C7C6479097B33AB4D15750ECCC4C | sha512: 85E71ABC6DB8A2E4EAAD70D35CA613A918046715C8447B4C975021791F160AA3D1C4CB19969F81DD7B9F98F13DEC41619C44E3C5948AE593AF9C3D0CFEC346FC
md5: EBF8072A3C5C586979313F76E503AABF | sha1: 2FD9609F099A8F42B1B7AE40AD35BE1569C0390E | sha256: A030DC2DFD2ECA28A9375C92989ADF4DAF161F988DB5E16B9E10678EB0DFF4C7 | sha512: 438C2DB953606818B843E42C04240D510B5E398617E8E5539498264F93CF1893AE9A6B6B02EE35B169AE60B0E3B5621D7D9F7E2945D0F1E7C2E7E0C1E9E3C1DE
# suanPan
<img src="Resource/suanPan-qr-ua.svg" width="150" align="middle"/><img src="Resource/suanPan-ua.svg" width="150" align="middle"/>
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1285221.svg)](https://doi.org/10.5281/zenodo.1285221)
[![license](https://img.shields.io/github/license/TLCFEM/suanPan.svg?color=44cc11)](https://www.gnu.org/licenses/gpl-3.0)
[![documentation](https://readthedocs.org/projects/suanpan-manual/badge/?version=latest)](https://suanpan-manual.readthedocs.io/?badge=latest)
[![release](https://img.shields.io/github/release-pre/TLCFEM/suanPan.svg?color=44cc11)](https://github.com/TLCFEM/suanPan/releases)
[![docker](https://img.shields.io/docker/image-size/tlcfem/suanpan/latest?label=docker&color=44cc11)](https://hub.docker.com/r/tlcfem/suanpan/tags)
[![suanpan](https://snapcraft.io//suanpan/badge.svg)](https://snapcraft.io/suanpan)
[![Chocolatey](https://img.shields.io/chocolatey/v/suanpan?color=44cc11)](https://chocolatey.org/packages/suanpan)
[![Chocolatey](https://img.shields.io/chocolatey/dt/suanpan?color=44cc11&label=choco%20install)](https://chocolatey.org/packages/suanpan)
[![download](https://img.shields.io/github/downloads/TLCFEM/suanPan/total.svg?color=44cc11)](https://img.shields.io/github/downloads/TLCFEM/suanPan/total.svg?color=44cc11)
[![dev](https://github.com/TLCFEM/suanPan/actions/workflows/dev-all.yml/badge.svg?branch=dev)](https://github.com/TLCFEM/suanPan/actions/workflows/dev-all.yml)
[![codecov](https://codecov.io/gh/TLCFEM/suanPan/branch/dev/graph/badge.svg?token=65BF9DF697)](https://codecov.io/gh/TLCFEM/suanPan)
[![codacy](https://app.codacy.com/project/badge/Grade/1ea08c43edf342a8b00b21e585e63503)](https://www.codacy.com/gh/TLCFEM/suanPan/dashboard?utm_source=github.com&utm_medium=referral&utm_content=TLCFEM/suanPan&utm_campaign=Badge_Grade)
[![CodeFactor](https://www.codefactor.io/repository/github/tlcfem/suanpan/badge)](https://www.codefactor.io/repository/github/tlcfem/suanpan)
[![language](https://img.shields.io/github/languages/count/TLCFEM/suanPan.svg?color=44cc11)](https://github.com/TLCFEM/suanPan)
[![language](https://img.shields.io/github/languages/top/TLCFEM/suanPan.svg?color=44cc11&logo=c%2B%2B)](https://github.com/TLCFEM/suanPan)
[![size](https://img.shields.io/github/languages/code-size/TLCFEM/suanPan.svg?color=44cc11)](https://img.shields.io/github/languages/code-size/TLCFEM/suanPan.svg?color=44cc11)
[![issues](https://img.shields.io/github/issues/TLCFEM/suanPan.svg?color=44cc11)](https://github.com/TLCFEM/suanPan/issues)
[![chat](https://badges.gitter.im/suanPan-dev/community.svg)](https://gitter.im/suanPan-dev/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FTLCFEM%2FsuanPan.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2FTLCFEM%2FsuanPan?ref=badge_shield)
[![gplv3-or-later](https://www.gnu.org/graphics/gplv3-or-later.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)
[![marketplace](https://img.shields.io/visual-studio-marketplace/v/tlc.suanpan?label=VS%20Code&color=44cc11)](https://marketplace.visualstudio.com/items?itemName=tlc.suanpan)
***Check out the VS Code [extension](https://marketplace.visualstudio.com/items?itemName=tlc.suanpan) for syntax
highlighting and autocompletion.***
## Introduction
[🧮 **suanPan**](https://tlcfem.github.io/suanPan/) is a finite element method (FEM) simulation platform for applications
in fields such as solid mechanics and civil/structural/seismic engineering. **suanPan** is written in modern
high-quality C++ code and is targeted to provide an efficient, concise, flexible and reliable FEM simulation platform.
**suanPan** is partially influenced by popular (non-)commercial FEA packages, such
as [ABAQUS UNIFIED FEA](https://www.3ds.com/products-services/simulia/products/abaqus/), [ANSYS](http://www.ansys.com/)
and [OpenSees](http://opensees.berkeley.edu/).
Please check the documentation [here](https://tlcfem.github.io/suanPan-manual/latest/) for command references. Please star ⭐ the project!
## Features
The highlights of **suanPan** are
- **suanPan** is *fast*, both memory and thread safe.
- **suanPan** is designed based on the [shared memory](https://en.wikipedia.org/wiki/Shared_memory) model and supports
parallelism on heterogeneous architectures, for example, multithreaded CPU + optional GPU. The parallelism is
available
for both element state updating and global matrix assembling.
- **suanPan** is open source and easy to be extended to incorporate user-defined elements, materials, etc.
- **suanPan** separates the FEA model part from the linear algebra operation part, which significantly reduces the
complexity and cost of development of new models.
- **suanPan** utilizes the new language features shipped with the latest standards (C++11 to C++20), such as new STL
containers, smart pointers, and many others.
- **suanPan** supports simple visualization supported by [VTK](https://vtk.org/).
## Quick Start
Execute the application out-of-the-box in terminal on Linux using one of the following commands depending on how the
application is obtained. See details below.
```bash
# in folder bin/ for linux portable tarball
./suanPan.sh
# for linux packages and snap
suanPan
# for flatpak
flatpak run io.github.tlcfem.suanPan
```
Or on Windows,
```powershell
# in the folder containing suanPan.exe
.\suanPan.exe
```
First time users can use `overview` command to go through a quick introduction.
```text
+-----------------------------------------------------+
| __ __ suanPan is an open source |
| / \ | \ FEM framework (64-bit) |
| \__ |__/ __ __ Betelgeuse (2.8.0) |
| \ | | | | \ | | by tlc @ 10fd6147 |
| \__/ |__| | |__X | | all rights reserved |
| 10.5281/zenodo.1285221 |
+-----------------------------------------------------+
| https://github.com/TLCFEM/suanPan |
| https://tlcfem.github.io/suanPan-manual/latest |
+-----------------------------------------------------+
| https://gitter.im/suanPan-dev/community |
+-----------------------------------------------------+
suanPan ~<> overview
```
Sample models are available for almost all models/commands. Please check the `Example` folder for details. Further
details can be seen [here](https://tlcfem.gitbook.io/suanpan-manual/tutorial/obtain) regarding how to run model files.
## Installation
Only the 64-bit version is compiled.
It is assumed that [**AVX2**](https://en.wikipedia.org/wiki/Advanced_Vector_Extensions) is available thus if the program
fails, please check if your CPU supports AVX2.
Alternatively, you can try the `no-avx` version.
> Check artifacts of [workflows](https://github.com/TLCFEM/suanPan/actions/workflows/dev-all.yml) for the latest binaries.
### Windows
#### Binary Package
The archives of binaries are released under [Release](https://github.com/TLCFEM/suanPan/releases) page.
1. `suanpan-win-mkl-vtk.zip` is the portable archive.
2. `suanpan-win-mkl-vtk.exe` is the installer.
#### Chocolatey
The binaries, which are compiled with Intel MKL and VTK, are available
on [Chocolatey](https://chocolatey.org/packages/suanpan), please use the following command to install the package.
1. Follow the [instructions](https://chocolatey.org/install) to install Chocolatey.
2. Use the following command to install `suanPan`.
```ps
choco install suanpan
```
3. It is recommended to use a modern terminal such as [Windows Terminal](https://github.com/microsoft/terminal) for better output display.
The Chocolatey repo available to you may not be up-to-date.
If the latest version is not available, please try alternatives, such as portable binaries or scoop.
[![asciicast](https://asciinema.org/a/491350.svg)](https://asciinema.org/a/491350)
#### Scoop
It is also possible to use [Scoop](https://scoop.sh/) to install the package.
1. Install [Scoop](https://scoop.sh/).
```ps
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
iwr -useb get.scoop.sh | iex
```
2. Install `suanPan`.
```ps
scoop install suanpan
```
### Linux
Linux users are recommended to obtain the binaries via `snap` or `flatpak`.
#### Snap
The snap supports visualisation via VTK and uses Intel MKL for linear algebra.
The edge channel is in sync with the `dev` branch.
The stable channel is in sync with the `master` branch.
[![Get it from the Snap Store](https://snapcraft.io/static/images/badges/en/snap-store-black.svg)](https://snapcraft.io/suanpan)
[![asciicast](https://asciinema.org/a/491330.svg)](https://asciinema.org/a/491330)
#### Flatpak
Flatpak is also available if preferred.
The beta channel is in sync with the `dev` branch.
The stable channel is in sync with the `master` branch.
<a href='https://flathub.org/apps/details/io.github.tlcfem.suanPan'><img width='200' alt='Download on Flathub' src='https://flathub.org/assets/badges/flathub-badge-en.svg'/></a>
```bash
# add repo
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
# or the beta channel
# flatpak remote-add --if-not-exists flathub-beta https://flathub.org/beta-repo/flathub-beta.flatpakrepo
# install
flatpak install suanPan
# define alias
echo "alias suanpan=\"flatpak run io.github.tlcfem.suanPan\"" >> ~/.bashrc
```
### Other Platforms
Precompiled binaries are provided via CI/CD on macOS, Windows, and Ubuntu.
Please download the file from the [release](https://github.com/TLCFEM/suanPan/releases) page.
A few flavors are available:
1. `vtk` --- visualisation support is enabled, with this you can record VTK files for postprocessing, however, OpenGL
may be missing on server systems
2. `mkl` --- linear algebra operations are offloaded to MKL, which gives the optimal performance on Intel chips
3. `openblas` --- linear algebra operations are offloaded to OpenBLAS, which may outperform MKL on AMD platforms
4. `no-avx` --- AVX2 support is disabled, useful for older CPUs which do not support AVX2 instructions
Advanced users can compile the program from source by themselves to enable GPU based solvers which require
an available [CUDA](https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/) and/or MAGMA library.
Since CI/CD uses `GCC 11` (on Linux) and `Clang 13.0.1` (on macOS), it may be required to update/install
proper `libstdc++` (or `libc++`) version. The easiest way is to install the same compiler. For example, on Ubuntu 22.04,
```bash
# Ubuntu
sudo apt install gcc g++ gfortran libomp5
```
For VTK enabled versions, it may be necessary to install OpenGL.
```bash
# Ubuntu
sudo apt install libglu1-mesa-dev freeglut3-dev mesa-common-dev libglvnd-dev
```
It is also possible to compile the package via docker, check the dockerfiles under the `Script` folder, for any
questions please open an issue.
### Automation Related
#### VS Code
The VS Code extension is available [here](https://marketplace.visualstudio.com/items?itemName=tlc.suanpan).
#### Sublime Text
On Windows, a batch file named `AddAssociation.bat` is provided in the archive. It provides file associations and
prepares a proper working environment (build system, autocompletion, highlighting)
with [Sublime Text](https://www.sublimetext.com/). It also adds file associations with `.sp` and `.supan` files, please
run the `AddAssociation.bat` file with administrator privilege. [Sublime Text](https://www.sublimetext.com/)
autocompletion and syntax highlighting files are also provided. Please install Sublime Text first and execute the batch
file with the administrator privilege.
On Linux, a script file named as `suanPan.sh` is provided. By executing
```bash
./suanPan.sh --create-link
```
It adds Sublime Text autocompletion and syntax highlighting files to proper location if Sublime Text configuration
folder is found. It also adds a command alias `suanpan` to `~/.local/bin` and a desktop file
to `~/.local/share/applications`.
## Dependency
Additional libraries used in **suanPan** are listed as follows.
- [**ARPACK**](https://github.com/opencollab/arpack-ng)
- [**SPIKE**](http://www.spike-solver.org/) version 1.0
- [**FEAST**](http://www.feast-solver.org/) version 4.0
- [**SuperLU**](https://portal.nersc.gov/project/sparse/superlu/) version 6.0.1
- [**SuperLU MT**](https://portal.nersc.gov/project/sparse/superlu/) version 3.1
- [**OpenBLAS**](https://github.com/xianyi/OpenBLAS) version 0.3.25
- [**Lis**](https://www.ssisc.org/lis/) version 2.1.3
- [**TBB** Threading Building Blocks](https://github.com/oneapi-src/oneTBB) version 2021.12.0
- [**HDF5**](https://www.hdfgroup.org/solutions/hdf5/) version 1.10.6
- [**MUMPS**](https://mumps-solver.org/) version 5.7.1
- [**METIS**](http://glaros.dtc.umn.edu/gkhome/metis/metis/overview) version 5.1.0
- [**VTK**](https://vtk.org/) version 9.2.6
- [**CUDA**](https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/) version 12.0
- [**MAGMA**](https://icl.utk.edu/magma/) version 2.8.0
- [**Armadillo**](http://arma.sourceforge.net/) version 12.8.3
- [**ensmallen**](https://ensmallen.org/) version 2.20.0
- [**oneMKL**](https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/onemkl.html) version 2024.1.0
- [**Catch2**](https://github.com/catchorg/Catch2) version 3.5.4
- [**fmt**](https://github.com/fmtlib/fmt) version 10.2.1
- [**whereami**](https://github.com/gpakosz/whereami)
- [**exprtk**](https://github.com/ArashPartow/exprtk)
- **thread_pool** abridged version of [`thread-pool`](https://github.com/bshoshany/thread-pool)
Those libraries may depend on other libraries such as [zlib](https://zlib.net/)
and [Szip](https://support.hdfgroup.org/doc_resource/SZIP/). Additional tools may be used by **suanPan**, they are
- [**UPX** the Ultimate Packer for eXecutables](https://upx.github.io/)
## How To Compile
Please refer to the corresponding [page](https://tlcfem.github.io/suanPan-manual/latest/Basic/Compile/) in
the manual for details.
## Happy Modelling
![an example simulation of particle collision](Resource/particle-collision.gif)
## Licence
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FTLCFEM%2FsuanPan.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2FTLCFEM%2FsuanPan?ref=badge_large)
md5: 91A794857F1E3385E8ED223AB6AC90BA | sha1: 60222159FC0A9E2A96639FAFA3EAF5234CEC2335 | sha256: F45E08487FDCD5BE6369E087845485EE478FB0FCE3D2B4A81A5FD728A94AD9AA | sha512: 09BC3C65AA9D4B31FB6B340F1D50ADD0C4087E8C9706C721C6AD50E3B06C23AAF677BED3E6B2A8BE1C05AC6FEC31AECE89B346A993C3803BE183ACBD32E8C2C6
md5: BE4A5C62BAAC4900C03A7736AAD270DC | sha1: 7627BA5C18EB4AD24EDE5F04860AD3732D34EEB9 | sha256: 082A3A839AA4D5742CCF3FF4DA6C45A4BCA862605A698D58C063328A13C1C298 | sha512: 209C04F58CBECB080DEC652BF25BD9B1F9F3B1C37ED183DDEF758006EB76444527D3996B7FE54C41770EE27BE98CF1E2F4667DA71471455FF3404B68376D9EFA
md5: FFB22F8C1578A66E296EF01B97E6EDF9 | sha1: 42D9BCDF82257B0F47E6AADE94AE078D9FDFE5E9 | sha256: 3FADF7C781BF139AEBA8E1166E9F9D85936068EAFB02903225184274B888AF74 | sha512: 030C596DDF663048374F9A0EE80C57DF5E7812FD7BAF4DBD203797980417ECE8FD710D0D9A66906AD67EE41C81AC7DB6FC0DDC11228C2898A8BAF5D51F3573FF
md5: C859D9E3B013BD55DB223F3CB99E1FD7 | sha1: 9E4D716FA5E83ECAB9AA5258B9C3A0854933DAE5 | sha256: DCA3CF3AECAE66EAE44A0A814A4BB8C93A0ACB5DEE6E04B865686DAEAFFDF6CA | sha512: 3E27F4A46C59FB04075BEF47F4F036F93C1122928EA223B4F6B27F81097F6D951FE470A964FEC8E64A05D16FDD65E191E9F6AEB4662E6C10857156F9C554FB13
md5: FD74710BDC43EA217C8EA884A00E6851 | sha1: 76D4AD56E4A2EE82F080DAA1F4F4A0D4D84C52D3 | sha256: 212CAC98C0EF7B54DA8BFC6F2F6D2D3C47C559B51BD4EA97F56775EB93C604A4 | sha512: F83EC28FDCC9CC32C285CAD7202FC0D810DE7922EF20DB21D910F4EF22A1F49201B5F5902A59436C00EB60E0908F81C971FDF75B34731797CDBFD5E9AA000012
md5: 699DD61122D91E80ABDFCC396CE0EC10 | sha1: 7B23A6562E78E1D4BE2A16FC7044BDCEA724855E | sha256: F843CD00D9AFF9A902DD7C98D6137639A10BD84904D81A085C28A3B29F8223C1 | sha512: 2517E52F7F03580AFD8F928C767D264033A191E831A78EED454EA35C9514C0F0DF127F49A306088D766908AF7880F713F5009C31CE6B0B1E4D0B67E49447BFFF
md5: 9410EE0771FF1C2007D9087A8C316A4B | sha1: 3F31B301B5A99A13486DDEC08D25646D5AD510DB | sha256: E4E85EEA1106D361923995E53A0B961A28D4FB58555F40945003F35E5BF2C273 | sha512: 434A32CA6C4FDD8FFEB45D1BDB4D9F3C1B1259A1260AE66EB241F8BD63524CD1A3EC29D5EEFA2D2F266DD740273E69B6BB8A7771BADB77E781DC789DC18DE2C9
VERIFICATION
To verify, please visit https://github.com/TLCFEM/suanPan/releases where the same archive is uploaded.
DEPENDENCY
libiomp5md.dll : 78c912579f91ca4865fdd6b37407b20adf30d69091698c81d365fff323fcff6b
libmmd.dll : 427ef018d494bf6cb8531ab3bbcb501ed4c8c7c6479097b33ab4d15750eccc4c
msvcp140.dll : a030dc2dfd2eca28a9375c92989adf4daf161f988db5e16b9e10678eb0dff4c7
tbb12.dll : 082a3a839aa4d5742ccf3ff4da6c45a4bca862605a698d58c063328a13c1c298
tbbmalloc.dll : 3fadf7c781bf139aeba8e1166e9f9d85936068eafb02903225184274b888af74
tbbmalloc_proxy.dll : dca3cf3aecae66eae44a0a814a4bb8c93a0acb5dee6e04b865686daeaffdf6ca
vcruntime140.dll : f843cd00d9aff9a902dd7c98d6137639a10bd84904d81a085c28a3b29f8223c1
vcruntime140_1.dll : e4e85eea1106d361923995e53a0b961a28d4fb58555f40945003f35e5bf2c273
EXECUTABLE
suanPan.exe : f45e08487fdcd5be6369e087845485ee478fb0fce3d2b4a81a5fd728a94ad9aa
updater.exe : 212cac98c0ef7b54da8bfc6f2f6d2d3c47c559b51bd4ea97f56775eb93c604a4
TEXT
AddAssociation.bat
suanPan.sublime-completions
suanPan.sublime-syntax
LICENSE
CHANGELOG.md
README.md
Log in or click on link to see number of positives.
- vcruntime140.dll (f843cd00d9af) - ## / 73
- vcruntime140_1.dll (e4e85eea1106) - ## / 74
- msvcp140.dll (a030dc2dfd2e) - ## / 74
- libiomp5md.dll (78c912579f91) - ## / 69
- libmmd.dll (427ef018d494) - ## / 71
- updater.exe (212cac98c0ef) - ## / 70
- suanpan.3.4.0.nupkg (fd7a28d7e329) - ## / 67
- suanPan.exe (f45e08487fdc) - ## / 71
- tbb12.dll (082a3a839aa4) - ## / 75
- tbbmalloc.dll (3fadf7c781bf) - ## / 74
- tbbmalloc_proxy.dll (dca3cf3aecae) - ## / 74
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
suanPan 3.5.0 | 21 | Wednesday, September 11, 2024 | Approved | |
suanPan 3.4.0 | 36 | Saturday, May 11, 2024 | Approved | |
suanPan 3.3.0 | 50 | Tuesday, January 23, 2024 | Approved | |
suanPan 3.2.0 | 46 | Monday, November 6, 2023 | Approved | |
suanPan 3.1.0 | 58 | Sunday, October 1, 2023 | Approved | |
suanPan 3.0 | 136 | Saturday, May 13, 2023 | Approved | |
suanPan 2.9 | 83 | Saturday, February 25, 2023 | Approved | |
suanPan 2.8 | 77 | Friday, January 20, 2023 | Approved | |
suanPan 2.7 | 78 | Wednesday, December 21, 2022 | Approved | |
suanPan 2.6.1 | 55 | Wednesday, November 9, 2022 | Approved | |
suanPan 2.6 | 50 | Saturday, November 5, 2022 | Approved | |
suanPan 2.5 | 60 | Friday, August 12, 2022 | Approved | |
suanPan 2.4 | 87 | Friday, June 17, 2022 | Exempted | |
suanPan 2.3 | 75 | Saturday, May 14, 2022 | Approved | |
suanPan 2.2 | 121 | Tuesday, April 5, 2022 | Approved | |
suanPan 2.1 | 112 | Sunday, February 13, 2022 | Approved | |
suanPan 2.0 | 96 | Wednesday, January 12, 2022 | Approved | |
suanPan 1.9 | 83 | Saturday, November 13, 2021 | Approved | |
suanPan 1.8 | 84 | Saturday, September 25, 2021 | Approved | |
suanPan 1.7 | 117 | Sunday, August 1, 2021 | Approved | |
suanPan 1.6 | 103 | Saturday, June 26, 2021 | Approved | |
suanPan 1.5 | 118 | Wednesday, May 26, 2021 | Approved | |
suanPan 1.4 | 89 | Saturday, April 24, 2021 | Approved | |
suanPan 1.3 | 128 | Saturday, March 20, 2021 | Approved | |
suanPan 1.2 | 153 | Friday, February 12, 2021 | Approved | |
suanPan 1.1 | 126 | Sunday, January 10, 2021 | Approved | |
suanPan 1.0 | 175 | Sunday, October 18, 2020 | Approved |
2017-2024 Theodore Chang
Please visit: https://github.com/TLCFEM/suanPan/releases
This package has no dependencies.
Ground Rules:
- This discussion is only about suanPan and the suanPan package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or suanPan, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.