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,819

Downloads of v 1.5:

105

Last Update:

26 May 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.5 | Updated: 26 May 2021

Downloads:

1,819

Downloads of v 1.5:

105

Maintainer(s):

Software Author(s):

  • Theodore Chang

Tags:

fem hpc iga

suanPan 1.5

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.5'" [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.5'" 
$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.5'
    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.5'
end

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


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

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


package { 'suanpan':
  ensure   => '1.5',
  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 26 May 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 /p "target=Input path contains sublime_text.exe (leave empty to quit): "
if "%target%"=="" 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\CHANGELOG.md
# Changelog

## known issues

1. `MKL` includes outdated `FEAST`, the external names in `FEAST` library are modified to avoid linking error.

## 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
tools\libifcoremd.dll
md5: 7E837B7D3B2D0734518807CB7B0E62B2 | sha1: A0CD756A01D4EF9012A2F3AFE0B517F22EF8D014 | sha256: 6C150A30DC02644B8308968907B3FCEF70864E8166204BAC0AAB63909DB18443 | sha512: 555FCDB6CC78DDB774D97B848ED8263164F8A102FDA66251FA86A337A3EA07FC083B0366166519BF58364828D8DA96E59B2F456523756F73E1DC6E7809F3E335
tools\libiomp5md.dll
md5: EC8DE9F8A0C4EAA3C8A5EB515DAB6B54 | sha1: 392A00C0CBE7709F60FC977C510D48E4BB2177C0 | sha256: 451A910E5A5399EFAE26A45554F179E838E238885C654E58539F830382C432F0 | sha512: EC0F4AF99E67FFFC1C81D1C59D05FEA3F9F9F7C22B5DA27C2FD75A5347BCE713D02F86C0F3231DB86DA17355072992C08BDE7FC5870C1589B0F4687B25B114B7
tools\libmmd.dll
md5: CC002B8782841AEC8F77189748D8445F | sha1: F3DFD638A1E683986EA9B8D3B9F96EB8E1EAE6E0 | sha256: C787E4F7D1E2B6DE207F017E7455E710EFF073C1E29697AA58A61973C2F2D888 | sha512: 98EDC50F9468E30B76A135742781465B55CAF3B8D019F07FE97EA89751E986E91B3E23CC7C7384482D6CAE36A06B2CB7AD9B3F4C812236498E052D57AB645580
tools\LICENSE
 
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)
[![Travis](https://travis-ci.com/TLCFEM/suanPan.svg?branch=master)](https://travis-ci.com/TLCFEM/suanPan)
[![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. Make sure the [Microsoft Visual C++ Redistributable for Visual Studio 2019](https://aka.ms/vs/16/release/vc_redist.x64.exe) is installed. Alternatively, install it via Chocolatey.

    ```
    choco install vcredist140
    ```

3. Use the following command to install `suanPan`.

    ```
    choco install suanpan
    ```

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

It is also possible to use [Scoop](https://scoop.sh/) to install the package.

```ps
scoop install https://raw.githubusercontent.com/TLCFEM/suanPan/dev/Enhancement/suanpan.json
```

### 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/341345.svg)](https://asciinema.org/a/341345)

### 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.ecs.umass.edu/~polizzi/spike/) version 1.0
- [**FEAST**](http://www.ecs.umass.edu/~polizzi/feast/) version 4.0
- [**SuperLU**](https://portal.nersc.gov/project/sparse/superlu/) version 5.2.2 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 2020U2
- [**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.2
- [**Armadillo**](http://arma.sourceforge.net/) version 10.4
- [**Intel MKL**](https://software.intel.com/en-us/mkl) version 2020

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\suanPan.exe
md5: 5F9A6AA542E39EF4C44BCC0DA087484D | sha1: 81359C7D5AFB7EED41E831A4206EADCFFDEE7664 | sha256: 6D9347A896C853940FE95429935CFBC66655F6A4832E0EEB3C1C34839E1ABF21 | sha512: CD42AF19DFF92A8A357E3D044FD2093A0A2659F77CBFC36A00E9226AE06EFC2326976E13218F5327C38FB6882C4AE5DC48D092FA9BD2EA9A0A4733AAC592F39F
tools\suanPan.sublime-completions
 
tools\suanPan.sublime-syntax
 
tools\svml_dispmd.dll
md5: 8E92FAD53A910D491963875CC7CF8533 | sha1: D9A133526ABBC8C6418E630D62CE35A9FE0308B6 | sha256: CE9CFF867DEA8D3C8DB56C8E13D7730DBB4CC70CFEF6A8E5C0B56C1526A74891 | sha512: 720DCECC93946D0FACADFB002A656ECC46FB9BD138F751E8B12A05368EBBE38A7170F647D557E039B8C08C788C8C24929A1995849CCD42960BDFFF114E02B3BE
tools\tbb.dll
md5: 8F16FB2FEA99D0442415D09C5346FE31 | sha1: 15AEE05CDD9B92F25894B39D145021865F19C4FE | sha256: 62A752D3D9DECBD79CD286DFC16980B51147F418F716F09A34CB0F4F9F9748D2 | sha512: F9851B364E7385AB01ADE2A3B22B1C70AB832AD56A7EE2F028CF729CC6D5EA390795B4637247A8953A4043EE7F07265A4CC2A8D418597353CAF063B568842DBF
tools\tbbmalloc.dll
md5: DA4389E59444AFA3038B3673D9789D72 | sha1: 5876EC2F67D2FE6CF05D484E58655AEDE665F5C4 | sha256: FB4FFDEBC306FC7BC52028558A9ECC0349D5AC62B3C469F683C5D744D58EBEC8 | sha512: F107C3EF896383ABD210FA84AFF9A0817CF4FD6C03A6F691350D535A93D294541E9BA5B0F2C13E16A77DC4B0B7B009383370CDF55FD48E88902F71D039F46A11
tools\tbbmalloc_proxy.dll
md5: AB5888D2D66CB83FE4D212FAC400C6A0 | sha1: FF92515E22A57A352E738FA651B770A20948FF66 | sha256: 3998B0A1AF00625862D17FAB04FC59B1AC798E273B81D2E9E71446FA09760C73 | sha512: 14F1437BB660915D4DF701CF399E3DCC8E3F9BD5946090DDB3ACDE84B21CCD2CFA84C1891EB4557B6402F8DD45D263E929DBD3F49F646FEC8FE8ECE0509C4726
tools\updater.exe
md5: 6E76D40A84895C0AB5AB411A76C1A11C | sha1: DF93C407CFB56FE8FCEAA02506562CD84132A7DB | sha256: 9E90FEB5CD0881E64594F8DAF300C39499B1BD32D63095D97D43F3F9672DF854 | sha512: 54DF09DD9038C543F656413C36B6DB5926AE4F0640ED668BF1B2D978A8F6397E3299361F61BA1F8F9FDB45BC8ADC4EED8594B5B1EC85C1C3DECCABAEBA60F187
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

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

From Intel MKL:
  libifcoremd.dll SHA256: 6C150A30DC02644B8308968907B3FCEF70864E8166204BAC0AAB63909DB18443
  libiomp5md.dll SHA256: 451A910E5A5399EFAE26A45554F179E838E238885C654E58539F830382C432F0
  libmmd.dll SHA256: C787E4F7D1E2B6DE207F017E7455E710EFF073C1E29697AA58A61973C2F2D888
  svml_dispmd.dll SHA256: CE9CFF867DEA8D3C8DB56C8E13D7730DBB4CC70CFEF6A8E5C0B56C1526A74891

From TBB:
  tbb.dll SHA256: 62A752D3D9DECBD79CD286DFC16980B51147F418F716F09A34CB0F4F9F9748D2
  tbbmalloc.dll SHA256: FB4FFDEBC306FC7BC52028558A9ECC0349D5AC62B3C469F683C5D744D58EBEC8
  tbbmalloc_proxy.dll SHA256: 3998B0A1AF00625862D17FAB04FC59B1AC798E273B81D2E9E71446FA09760C73

Main Executable:
  suanPan.exe SHA256: 6D9347A896C853940FE95429935CFBC66655F6A4832E0EEB3C1C34839E1ABF21
  updater.exe SHA256: 9E90FEB5CD0881E64594F8DAF300C39499B1BD32D63095D97D43F3F9672DF854

Text:
AddAssociation.bat
CHANGELOG.md
README.md
LICENSE
suanPan.sublime-completions
suanPan.sublime-syntax


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 48 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

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