Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,820

Downloads of v 1.9:

71

Last Update:

13 Nov 2021

Package Maintainer(s):

Software Author(s):

  • Theodore Chang

Tags:

fem hpc iga

suanPan

This is not the latest version of suanPan available.

  • 1
  • 2
  • 3

1.9 | Updated: 13 Nov 2021

Downloads:

1,820

Downloads of v 1.9:

71

Maintainer(s):

Software Author(s):

  • Theodore Chang

Tags:

fem hpc iga

suanPan 1.9

This is not the latest version of suanPan available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

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:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade suanpan -y --source="'INTERNAL REPO URL'" --version="'1.9'" [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="'1.9'" 
$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: '1.9'
    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  '1.9'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller suanpan
{
    Name     = "suanpan"
    Version  = "1.9"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'suanpan':
  ensure   => '1.9',
  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.

Package Approved

This package was approved as a trusted package on 14 Nov 2021.

Description

🧮 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. Please check documentation here and here for command references.


tools\AddAssociation.bat
@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=

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%","-f","$file"],"selector":"source.supan","file_patterns":["*.supan","*.sp"]} > "%~dp0suanPan.sublime-build"
xcopy "%~dp0suanPan.sublime*" "%target%"

:byebye
tools\VERIFICATION.txt
VERIFICATION
	To verify, please visit https://github.com/TLCFEM/suanPan/releases where the same archive is uploaded.

DEPENDENCY
	libifcoremd.dll : f7828e9baf1df7e2797c246d0519a45ecaa2efb28b66232a733126a8db623ce1
	libiomp5md.dll : ae789a9ceff6d68deed37383079bad45e65f33345619dcc6af054c5876d8278b
	libmmd.dll : db87df9d551f067ce1405f49d9b47ca1ff14c19723b3a196a22c9eaaa6bcf927
	msvcp140.dll : 7c4ce9d6bfcd6d9db4eef4e75ecdcf5a8e5320106e80f1eca617439fa43f33e8
	msvcp140_atomic_wait.dll : b3c793966c992a1489cca247828a2e33790f4adad51f1ad04033f0eb5b09fdd5
	svml_dispmd.dll : a90d09bde6f4283d737be356a8f2a6d4a6aed7701f88110b630f56e5a8db1643
	tbb12.dll : 675dadd9be043849ec7912d554d5e3155832d48e78a6058fc819bea0beea3e23
	tbbmalloc.dll : 67b7d05c4963babf0c3d8866242923d30348e22519e3e61d951cf2e229b5a01d
	tbbmalloc_proxy.dll : e4e55419d7d7d3913a7c42fa438961b26f7e34b027066856d43d6fb94e31fbc8
	vcruntime140.dll : ded5adaa94341e6c62aea03845762591666381dca30eb7c17261dd154121b83e
	vcruntime140_1.dll : 1554b5802968fdb2705a67cbb61585e9560b9e429d043a5aa742ef3c9bbfb6bf

EXECUTABLE
	suanPan.exe : 68c24034e60ba571770f863da2c6d850d5071e7e3009c6214a5d1eea830fc6b3
	updater.exe : 30b3084bba5209a3d391fd3e3a8ff5eba9ed5b7f9e97ab494b1ad38c208e7b76

TEXT
	AddAssociation.bat
	suanPan.sublime-completions
	suanPan.sublime-syntax
	LICENSE
	CHANGELOG.md
	README.md
tools\vcruntime140_1.dll
md5: 37C372DA4B1ADB96DC995ECB7E68E465 | sha1: 6C1B6CB92FF76C40C77F86EA9A917A5F854397E2 | sha256: 1554B5802968FDB2705A67CBB61585E9560B9E429D043A5AA742EF3C9BBFB6BF | sha512: 926F081B1678C15DC649D7E53BFBE98E4983C9AD6CCDF11C9383CA1D85F2A7353D5C52BEBF867D6E155FF897F4702FC4DA36A8F4CF76B00CB842152935E319A6
tools\vcruntime140.dll
md5: A87575E7CF8967E481241F13940EE4F7 | sha1: 879098B8A353A39E16C79E6479195D43CE98629E | sha256: DED5ADAA94341E6C62AEA03845762591666381DCA30EB7C17261DD154121B83E | sha512: E112F267AE4C9A592D0DD2A19B50187EB13E25F23DED74C2E6CCDE458BCDAEE99F4E3E0A00BAF0E3362167AE7B7FE4F96ECBCD265CC584C1C3A4D1AC316E92F0
tools\updater.exe
md5: 309A3B8930C0C48590879978E8355FE1 | sha1: 39C53AE9AAF68955BE6A8AB9F3499753D2F74CC1 | sha256: 30B3084BBA5209A3D391FD3E3A8FF5EBA9ED5B7F9E97AB494B1AD38C208E7B76 | sha512: 1FD395D3080B0F0629F098C8846A10940525D72CBE21A022B72F3AFC9BCAEE17D95100AFAD78275D1DBC7E43E92EF8E9517797D08A9D28CF3AC6F8C0F48932CD
tools\tbbmalloc_proxy.dll
md5: 419321E7A7D43550BD8A2812706E4A0F | sha1: 4397D068550E3E8DA9384F1428192CD0BBB28225 | sha256: E4E55419D7D7D3913A7C42FA438961B26F7E34B027066856D43D6FB94E31FBC8 | sha512: F1246E854A83F0CFD74D9440A4D22DAF4A5AE21127C6B50B3B145BF588C61F9C1A41699A1033B7A710C0F2D97ACBDF8C0E8DD6E40009D87031EF27BD85C67860
tools\tbbmalloc.dll
md5: F05D14D2E0893E9825C17C50528D2797 | sha1: CF45A25628BFC7B5E0F888D55AD1976DB52AD2A5 | sha256: 67B7D05C4963BABF0C3D8866242923D30348E22519E3E61D951CF2E229B5A01D | sha512: E6D0B8769FBBAF24C2795DA85D85A648ACAC4E6E953A26726D6170D4763474DF14F11F17D860A7C981F44DBA7D530B649A9B9D2E3EDBECE004F7689E590055EE
tools\tbb12.dll
md5: 632C0B48D994541AD7BD8FB8AAD50893 | sha1: FBA02E879CCFE277B0DA77FDA302F9A85E2B99E0 | sha256: 675DADD9BE043849EC7912D554D5E3155832D48E78A6058FC819BEA0BEEA3E23 | sha512: 8C33BAC6CCA7213379D75ACA0D89C136E9BB360E9B4071FE48C129E60EE5CF87E2A603A28B70FA9F5269730B3E60918B48CDB9A8C97D0DC8035E4B6F89ACEE50
tools\svml_dispmd.dll
md5: 8F28AE63B54AA6E60FD79C5008CF6948 | sha1: 51C9A35A99B086BE8E1A62DA4E559D77537AD617 | sha256: A90D09BDE6F4283D737BE356A8F2A6D4A6AED7701F88110B630F56E5A8DB1643 | sha512: 8DED1E582D19C3C22ED6EBE95EF100E3A4D6CBA6CBCDB6039D3F8E46D65EB63B16F2D19A17EB30C6C8C92C72839596623006A9FF89C9DDDEADE6C6A789D642C4
tools\suanPan.sublime-syntax
 
tools\suanPan.sublime-completions
 
tools\suanPan.exe
md5: E13DF6A52A267BA9BD933F162129BD56 | sha1: 9DC3E08B4BC09855ABE43A5F6F44626544F5393F | sha256: 68C24034E60BA571770F863DA2C6D850D5071E7E3009C6214A5D1EEA830FC6B3 | sha512: D7F4780EF197A2F9F8BAF1FC2CC34A35CE9251F37C99A6ED5212842930BC73C307C0C0164ED68FDE1E9246E893080A26D7D2C54720C03F2533CA938585614533
tools\README.md
# <img src="Resource/suanPan-qr.svg" width="150" align="middle"/><img src="Resource/suanPan.svg" width="150" align="middle"/> suanPan

[![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)
[![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)
[![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)
[![stable build](https://github.com/TLCFEM/suanPan/workflows/Stable%20Release/badge.svg?branch=master)](https://github.com/TLCFEM/suanPan/actions)
[![AppVeyor](https://img.shields.io/appveyor/ci/TLCFEM/suanPan/master.svg?label=master&logo=appveyor)](https://ci.appveyor.com/project/TLCFEM/suanpan/branch/master)
[![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&amp;utm_medium=referral&amp;utm_content=TLCFEM/suanPan&amp;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)

## 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. 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](https://en.wikipedia.org/wiki/Suanpan). **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 documentation [here](https://tlcfem.gitbook.io/suanpan-manual/) and [here](http://suanpan-manual.rtfd.io/) for command references. Please consider 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 multi-threaded CPU + optional GPU. The parallelism is available for both element state updating and global matrix assembling.
- **suanPan** is open source and easy to be expanded to incorporate user-defined elements, materials, etc.
- **suanPan** separates the FEA model part from the linear algebra operation part, which significantly reduces the complexity of development.
- **suanPan** utilizes the new language features shipped with the latest standards (C++14, C++17, etc.), such as new STL containers, smart pointers and many others.
- **suanPan** supports simple visualization supported by [VTK](https://vtk.org/).

## Quick Start

Sample models are available for almost all models/commands. Please check the `Example` folder for details.

## Installation

Only 64-bit version is compiled. It is assumed that [AVX](https://en.wikipedia.org/wiki/Advanced_Vector_Extensions) is available thus if the program fails, please check if your CPU supports AVX.

### Windows

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`.

    ```
    choco install suanpan
    ```

3. It is recommended to use a modern terminal such as [Windows Terminal](https://github.com/microsoft/terminal) and [Fluent Terminal](https://github.com/felixse/FluentTerminal) for better output display.

[![asciicast](https://asciinema.org/a/418539.svg)](https://asciinema.org/a/418539)

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. The snap supports visualization via VTK and uses Intel MKL for linear algebra.

[![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/418407.svg)](https://asciinema.org/a/418407)

### 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.

Advanced users can compile the program from source by themselves in order to enable

1. GPU based solvers which require available [CUDA](https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/) library;
2. Visualization support provided by VTK library;
3. High performing linear algebra provided by Intel MKL library.

On Windows, to add file associations with `.sp` and `.supan` files, please run the `AddAssociation.bat` file with admin privilege. [Sublime Text](https://www.sublimetext.com/) autocompletion and syntax highlighting files are also provided. Please check the `Enhancement` folder.

On Linux, since CI/CD uses `GCC 9.3.0`, it may be required to update/install GCC version 9 or above.

```bash
sudo apt install gcc-9 g++-9 gfortran-9 libomp5
```

For VTK enabled versions, it may be necessary to install OpenGL.

```bash
sudo apt install libglu1-mesa-dev freeglut3-dev mesa-common-dev
```

## Dependency

Additional libraries used in **suanPan** are listed as follows.

- [**ARPACK**](https://www.caam.rice.edu/software/ARPACK/) version 0.96
- [**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 5.3.0 and [**SuperLU MT**](https://portal.nersc.gov/project/sparse/superlu/) version 3.1
- [**OpenBLAS**](https://github.com/xianyi/OpenBLAS) version 0.3.15
- [**TBB** Threading Building Blocks](https://github.com/oneapi-src/oneTBB) version 2021.4.0
- [**HDF5**](https://www.hdfgroup.org/solutions/hdf5/) version 1.10.6
- [**MUMPS**](http://mumps.enseeiht.fr/) version 5.2.1
- [**VTK**](https://vtk.org/) version 8.2
- [**CUDA**](https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/) version 11.5
- [**Armadillo**](http://arma.sourceforge.net/) version 10.7
- [**Intel oneAPI Math Kernel Library**](https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/onemkl.html) version 2021.2.0

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://github.com/TLCFEM/suanPan-manual/blob/dev/docs/Tutorial/Compile.md) in manual for details.

## Happy Modelling

![an example of simulation of particle collision](Resource/particle-collision.gif)


## License

[![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)
tools\msvcp140_atomic_wait.dll
md5: BC3FFB90A2C1D810B7B4C5BC5323EA82 | sha1: ED62B5A572ED36A049FB3786F7C13FCD6C961FE1 | sha256: B3C793966C992A1489CCA247828A2E33790F4ADAD51F1AD04033F0EB5B09FDD5 | sha512: 5AE6AE2B818BF49FE0FD039320F50AE2E59DCD068867883393B85B20E06CA463C90073FF6093B6B48C00EE269CAC4F02D9618D05B8D69FA13EDD5C71210DE0B2
tools\msvcp140.dll
md5: CB75D6437418AFE1A7B52ACF75730FF1 | sha1: 54C2DA9552671B161CC87EB50FBDB86319B00F56 | sha256: 7C4CE9D6BFCD6D9DB4EEF4E75ECDCF5A8E5320106E80F1ECA617439FA43F33E8 | sha512: F58ABB740A30467E2D8AEDD7EED357DA020FDC7D966E245890D102A52E96FEA296E122C1D2BC112423FC64B6F5E70B7DF3F3EB7DE1BF5C2F5F0EB3644F1E06D6
tools\LICENSE
 
tools\libmmd.dll
md5: 6ED07A2C50AA6E9F6573A5EAF79E7998 | sha1: 777E7A0C42FC64381A40D0F1B3A655F5EBB188B4 | sha256: DB87DF9D551F067CE1405F49D9B47CA1FF14C19723B3A196A22C9EAAA6BCF927 | sha512: 03AF5CB0BEF56FBF698D61A42385969AD3E168236E9086921730D0AEC01324BC74C6E6194E4D2BB0137030678259998426088B65D8B69532A215CC1054F9C245
tools\libiomp5md.dll
md5: 0CDDE8C80449D11DF589C75F1E96E16B | sha1: 466198D06A21CD581F4FD20200C1181B6CB6BB7E | sha256: AE789A9CEFF6D68DEED37383079BAD45E65F33345619DCC6AF054C5876D8278B | sha512: 7DE31C20FD31BF052B18359184211AFB57F28D83D9683BC18A77DC83F182DBE00D8E4440B1A8570E73027C194F419A6B34BEB195F827591CF242439E7D282357
tools\libifcoremd.dll
md5: EF5CD44103AED8B16062A0500B38314D | sha1: D5A32E1EC6D3713C19B2B631EF15AF55574B258A | sha256: F7828E9BAF1DF7E2797C246D0519A45ECAA2EFB28B66232A733126A8DB623CE1 | sha512: 9CE3E1E1329AB3AD7FDFA7626ABE25F02AA9177AF4E7DECD11D9F177F4F320D4331D0980E0925FDD8A5A3384AFF0484451D4D01F0AA2560DC88CB1F7A017FF28
tools\CHANGELOG.md
# Changelog

## known issues

1. `MKL` includes outdated `FEAST`, the external names in `FEAST` library are modified to avoid linking error.
2. `MUMPS` does not compile with `oneAPI 2021.4.0`
3. `OpenBLAS` causes SEG FAULT with version 0.3.18

## version 1.X

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

3. revise `SimpleSand` model
4. add `DafaliasManzari` sand model
5. add `materialtestbystrainhistory` and `materialtestbystresshistory` utility functions
6. bugfix: potential racing in initialising reference dof, change to serial initialisation
7. bugfix: wrong update of plastic strain in `CDP` model
8. 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

Log in or click on link to see number of positives.

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.2.0 32 Monday, November 6, 2023 Approved
suanPan 3.1.0 49 Sunday, October 1, 2023 Approved
suanPan 3.0 94 Saturday, May 13, 2023 Approved
suanPan 2.9 59 Saturday, February 25, 2023 Approved
suanPan 2.8 41 Friday, January 20, 2023 Approved
suanPan 2.7 35 Wednesday, December 21, 2022 Approved
suanPan 2.6.1 42 Wednesday, November 9, 2022 Approved
suanPan 2.6 38 Saturday, November 5, 2022 Approved
suanPan 2.5 49 Friday, August 12, 2022 Approved
suanPan 2.4 71 Friday, June 17, 2022 Exempted
suanPan 2.3 64 Saturday, May 14, 2022 Approved
suanPan 2.2 68 Tuesday, April 5, 2022 Approved
suanPan 2.1 81 Sunday, February 13, 2022 Approved
suanPan 2.0 84 Wednesday, January 12, 2022 Approved
suanPan 1.9 71 Saturday, November 13, 2021 Approved
suanPan 1.8 73 Saturday, September 25, 2021 Approved
suanPan 1.7 97 Sunday, August 1, 2021 Approved
suanPan 1.6 89 Saturday, June 26, 2021 Approved
suanPan 1.5 105 Wednesday, May 26, 2021 Approved
suanPan 1.4 78 Saturday, April 24, 2021 Approved
suanPan 1.3 105 Saturday, March 20, 2021 Approved
suanPan 1.2 121 Friday, February 12, 2021 Approved
suanPan 1.1 101 Sunday, January 10, 2021 Approved
suanPan 1.0 133 Sunday, October 18, 2020 Approved

This package has no dependencies.

Discussion for the suanPan Package

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.
comments powered by Disqus