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

Downloads of v 1.1:

101

Last Update:

10 Jan 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.1 | Updated: 10 Jan 2021

Downloads:

1,809

Downloads of v 1.1:

101

Maintainer(s):

Software Author(s):

  • Theodore Chang

Tags:

fem hpc iga

suanPan 1.1

This is not the latest version of suanPan available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

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

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


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

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


package { 'suanpan':
  ensure   => '1.1',
  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 by moderator TheCakeIsNaOH on 16 Feb 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%" (
	echo {"cmd":["%program%","-f","$file"],"selector":"source.supan","file_patterns":["*.supan","*.sp"]} > "%~dp0suanPan.sublime-build"
	xcopy "%~dp0suanPan.sublime*" "%target%"
)

:byebye
tools\CHANGELOG.md
# Changelog

## version 1.x

### User

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

### Developer

1. Validation of material/section is moved to element initialization. For all derived elements from `MaterialElement` and `SectionElement`, there is no need to validate material/section. As long as the element is active, material/section must have the correct type.

## version 1.0

1. initial release
tools\libifcoremd.dll
md5: 70491BB8DDE4E83BF3B363BD85783F7C | sha1: 5834FA1FB479BE9DF27DAA313B08AB40450529A2 | sha256: 4330FE8E460AA296DAAAB2B44C46AC392B026F25DF318B3CAF598E0C2747CC3E | sha512: 440A6A820489B77399B80FBF24BE99770D02EEF5206D66ED47A4A9BD22653F3BA0098AEDBA75535AADA0A0632051DACC162D2BC1D6BAE043CEF8208C258F53F2
tools\libiomp5md.dll
md5: EAD684817EC3DA993F4930BC37D73041 | sha1: 09E278AB76F11F4ACB83D0D4E96BD9FA4D7CF355 | sha256: FE59309B121C1DB38008A9277FCB2915639AA9DAC4528894DB3A3D2228FC9346 | sha512: 7A48866B6F2E9E42AE6989225B11DD763BA696BEBE838B5F2D75AC4AC637ED40B783B5596D41AE0ECE49101F6E5C740A8B5800C1ED3600E487DC4E6C96FC4D71
tools\libmmd.dll
md5: A79A9D1E9A913274C594149C484E774C | sha1: 635528D276FE6D94E3440844AB8AA1D2FBCD716E | sha256: 4774E67AA7EC036295BCDCEC4DDAD7E651C6E4D2078A694EA7EF82F915021671 | sha512: 9FBB14F44A67F719A3B6C716BBD607EE074DD31CE356610D7470E41DE90BA98814717DA2BD661C4C888AB35C9E3A9433DA2FDA3C43AC566DED80B5172FB98EE5
tools\LICENSE
 
tools\mkl_avx.dll
md5: 174430B8392D4719669EEF26C333A381 | sha1: C192AD4B12EDBAD8980C38A9F1AA516359D262CD | sha256: 103D8A6BC1EF7259C43540CB83B7FE770040DBE8FC3ED5D4B59E49FD27990FC4 | sha512: BD076EA80894E5C7D35DA3FB8A1455ED9FB1C99593172BCDD63345053B54B630C325E38A26BC23DF33D27B28ECC1FDB596DF5166B2FC34C4330C0F653DD7A959
tools\mkl_avx2.dll
md5: 9424ADD2B21C0285BA5539A9D59A1F96 | sha1: EF6C602A93B4238D3D49F83FA6A78F775A209746 | sha256: 2B93EC8CBBE19156F5E431A6BEE39A62269D4A26B0B63AA430CA34CCAAF72F5E | sha512: 81BCB7BCA50F4EC14B41A893DD4F26D2A3E1AA23212982D271F2D2A0F6F2DA01BBD03A902506D5897FD7CEB20F66A1678128BE5663BA36E1B2E41F37FA0149F4
tools\mkl_core.dll
md5: B496D49F23CD085EBA6B2051C94689AD | sha1: 8E3954F661CD6D9434D6BCEFBA0142EB2262CFD4 | sha256: A3F25635AE333589D9459E003024D279E164CA0E33224D5127DEE238046F6280 | sha512: 8BFB34EE7F4E4F040FEFA46E39B3DE7B37B648DD6B9AC3FC0E0ADBF6826912677EF10AF51A6F7943E9989E8C1A47592561B6D43F279470EC3D979C5C6264CBA0
tools\mkl_intel_thread.dll
md5: F2CE5833B0A553F3FD433460D70F3392 | sha1: 48F4034C26A78E9697AA3360715CCD476B6E8839 | sha256: CE27D6AF0CBFBAE264EA2E637D137AE68408CD77CE467E8A0576CE45B01B971B | sha512: F5946445A2B6A434BA763A01037698631259676C709913F3681C32EC0D243EA387093D00D4B650E595C7F1AFBEB7F574D6494FDCD2EB44A33921F94FFBCD8EAD
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)](https://codecov.io/gh/TLCFEM/suanPan)
[![codacy](https://api.codacy.com/project/badge/Grade/0754f66f6fae4829993eb879b222a32a)](https://www.codacy.com/app/TLCFEM/suanPan?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/lgtm/grade/cpp/g/TLCFEM/suanPan.svg?logo=lgtm)](https://lgtm.com/projects/g/TLCFEM/suanPan/context:cpp)
[![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)
[![alerts](https://img.shields.io/lgtm/alerts/g/TLCFEM/suanPan.svg?logo=lgtm)](https://lgtm.com/projects/g/TLCFEM/suanPan/alerts/)
[![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)

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

All precompiled binaries can be executed out-of-box. 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
    ```

### Linux

Linux users are strongly 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

Binaries precompiled with [OpenBLAS](https://www.openblas.net/) are provided by 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 [MAGMA](http://icl.cs.utk.edu/magma/) 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 file is also provided. Please check the `Enhancement` folder.

## 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/index.htm) version 1.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.10
- [**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
- [**MAGMA**](https://icl.cs.utk.edu/magma/) version 2.4.0
- [**Armadillo**](http://arma.sourceforge.net/) version 10.1
- [**Intel MKL**](https://software.intel.com/en-us/mkl)

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)
tools\suanPan.exe
md5: C0B867FE94EE708D5E93A1941FB08CA8 | sha1: 6F013EBA0B5790C124C6B28B462CC0305F379B7C | sha256: E327361D583E28DC154748D210D93D0B5A3A8B522123E255DFBC672EA3EA0D6C | sha512: 8BFCB3C66DBA7538A8A7D016FA8D5CCA52406EA56E82EF3A80F7EA4C6A53D31129182C951C7D58C7213376BDFD68101FDD19B9B6285762795342842CADC40B72
tools\suanPan.sublime-completions
 
tools\suanPan.sublime-syntax
 
tools\svml_dispmd.dll
md5: A3A6E17D51D4D6F08F6B36F9DA851C50 | sha1: 34873304FD198E755199893EE4ABA3748BFCFEE4 | sha256: B73412CC3E02A562668F1A095CB6BA245F2CA9E70ED9550C924BB200EFB29CA5 | sha512: 412101C8D48BE82673EEA15B9AD807221F8FFFFE6C39D9ABB48AF3182E5B8AD1480ECF25586C4F35F4BA195CF1EBEF4F80C5C7274CD6E03172A463E54BDCC4C9
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\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

From Intel MKL:
  libifcoremd.dll SHA256: 4330FE8E460AA296DAAAB2B44C46AC392B026F25DF318B3CAF598E0C2747CC3E
  libiomp5md.dll SHA256: FE59309B121C1DB38008A9277FCB2915639AA9DAC4528894DB3A3D2228FC9346
  libmmd.dll SHA256: 4774E67AA7EC036295BCDCEC4DDAD7E651C6E4D2078A694EA7EF82F915021671
  mkl_avx.dll SHA256: 103D8A6BC1EF7259C43540CB83B7FE770040DBE8FC3ED5D4B59E49FD27990FC4
  mkl_avx2.dll SHA256: 2B93EC8CBBE19156F5E431A6BEE39A62269D4A26B0B63AA430CA34CCAAF72F5E
  mkl_core.dll SHA256: A3F25635AE333589D9459E003024D279E164CA0E33224D5127DEE238046F6280
  mkl_intel_thread.dll SHA256: CE27D6AF0CBFBAE264EA2E637D137AE68408CD77CE467E8A0576CE45B01B971B
  svml_dispmd.dll SHA256: B73412CC3E02A562668F1A095CB6BA245F2CA9E70ED9550C924BB200EFB29CA5

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

Main Executable:
  suanPan.exe SHA256: E327361D583E28DC154748D210D93D0B5A3A8B522123E255DFBC672EA3EA0D6C

Text:
AddAssociation.bat
CHANGELOG.md
README.log
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 31 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 40 Friday, January 20, 2023 Approved
suanPan 2.7 35 Wednesday, December 21, 2022 Approved
suanPan 2.6.1 41 Wednesday, November 9, 2022 Approved
suanPan 2.6 37 Saturday, November 5, 2022 Approved
suanPan 2.5 48 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 66 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 72 Saturday, September 25, 2021 Approved
suanPan 1.7 97 Sunday, August 1, 2021 Approved
suanPan 1.6 88 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