Skip to main content

WISDEM®

Actions Status Coverage Status Documentation Status

The Wind-Plant Integrated System Design and Engineering Model (WISDEM®) is a set of models for assessing overall wind plant cost of energy (COE). The models use wind turbine and plant cost and energy production as well as financial models to estimate COE and other wind plant system attributes. WISDEM® is accessed through Python, is built using OpenMDAO, and uses several sub-models that are also implemented within OpenMDAO. These sub-models can be used independently but they are required to use the overall WISDEM® turbine design capability. Please install all of the pre-requisites prior to installing WISDEM® by following the directions below. For additional information about the NWTC effort in systems engineering that supports WISDEM® development, please visit the official NREL systems engineering for wind energy website.

Author: NREL WISDEM Team

Part of the WETO Stack

WISDEM is primarily developed with the support of the U.S. Department of Energy and is part of the WETO Software Stack. For more information and other integrated modeling software, see:

Documentation

See local documentation in the docs-directory or access the online version at https://wisdem.readthedocs.io/en/master/

Packages

WISDEM® is a family of modules. The core modules are:

  • CommonSE includes several libraries shared among modules
  • FloatingSE works with the floating platforms
  • DrivetrainSE sizes the drivetrain and generator systems (formerly DriveSE and GeneratorSE)
  • TowerSE is a tool for tower (and monopile) design
  • RotorSE is a tool for rotor design
  • NREL CSM is the regression-based turbine mass, cost, and performance model
  • ORBIT is the process-based balance of systems cost model for offshore plants
  • LandBOSSE is the process-based balance of systems cost model for land-based plants
  • Plant_FinanceSE runs the financial analysis of a wind plant

The core modules draw upon some utility packages, which are typically compiled code with python wrappers:

  • Airfoil Preppy is a tool to handle airfoil polar data
  • CCBlade is the BEM module of WISDEM
  • pyFrame3DD brings libraries to handle various coordinate transformations
  • MoorPy is a quasi-static mooring line model
  • pyOptSparse provides some additional optimization algorithms to OpenMDAO

Installation

Installation with Anaconda is the recommended approach because of the ability to create self-contained environments suitable for testing and analysis. WISDEM® requires Anaconda 64-bit. However, the conda command has begun to show its age and we now recommend the one-for-one replacement with the Miniforge3 distribution, which is much more lightweight and more easily solves for the WISDEM package dependencies.

Installation as a "library"

  1. Create a conda environment with your preferred name (wisdem-env in the following example) and favorite, approved Python version:

    conda create -n wisdem-env python=3.13 -y
    
  2. Activate the environment:

    conda activate wisdem-env
    
  3. Install WISDEM via a conda or pip. We highly recommend via conda.

    conda install wisdem
    

    or

    pip install wisdem
    

To use WISDEM's modules as a library for incorporation into other scripts or tools, WISDEM is available via conda install wisdem or pip install wisdem, assuming that you have already setup your python environment. Note that on Windows platforms, we suggest using conda exclusively.

Installation for direct use or development

These instructions are for interaction with WISDEM directly, the use of its examples, and the direct inspection of its source code.

The installation instructions below use the environment name, "wisdem-env," but any name is acceptable. Below are a series of considerations:

  • For those working behind company firewalls, you may have to change the conda authentication with conda config --set ssl_verify no.
  • Proxy servers can also be set with conda config --set proxy_servers.http http://id:pw@address:port and conda config --set proxy_servers.https https://id:pw@address:port.
  • To setup an environment based on a different Github branch of WISDEM, simply substitute the branch name for master in the setup line.

Note For Windows users, we recommend installing git and the m2w64 packages in separate environments as some of the libraries appear to conflict such that WISDEM cannot be successfully built from source. The git package is best installed in the base environment.

Direct use

We still highly recommend users use conda install wisdem into an environment, but if there is a reason that is not desired, please use the following instructions.

Setup and activate the Anaconda environment from a prompt (Anaconda3 Power Shell on Windows or Terminal.app on Mac)

[!IMPORTANT] In the environment.yaml please uncomment out the OS-dependent dependencies at the top

  1. Install git if you don't already have it:

    conda install git
    
  2. Clone the repository and enter it:

    git clone https://github.com/NLRWindSystems/WISDEM.git
    cd WISDEM
    
  3. Checkout the desired branch, if necessary:

    git checkout <branch>
    
  4. Create and activate your wisdem-env environment, substituting "wisdem-env" with a different desired name.

    conda env create --name wisdem-env -f environment.yml
    conda activate wisdem-env
    
  5. Install WISDEM.

    pip install --no-deps . -v
    

Development

In order to directly use the examples in the repository and peek at the code when necessary, we recommend all users install WISDEM in developer / editable mode using the instructions here. If you really just want to use WISDEM as a library and lean on the documentation, you can always do conda install wisdem and be done. Note the differences between Windows and Mac/Linux build systems.

[!IMPORTANT] In the environment_dev.yaml please uncomment out the OS-dependent dependencies at the top

For Linux, we recommend using the native compilers (for example, gcc and gfortran in the default GNU suite).

Please follow steps 1-3 in the Direct Use section above, replacing steps 4 & 5 with the following to ensure the development dependencies for building, testing, and documentation are also installed:

  1. Create and activate your wisdem-env environment, substituting "wisdem-env" with a different desired name.

    conda env create --name wisdem-env -f environment_dev.yml
    conda activate wisdem-env
    
  2. Install WISDEM. Please note the -e (editable) flag used to ensure your code changes are registered dynamically every time you save modifications.

    pip install --no-deps -e . -v
    

Run Unit Tests

Each package has its own set of unit tests, and the project runs the examples as integration tests. These can be run in batch with the following command:

pytest

Users can add either the --unit or --integration flags if they would like to skip running the examples or just run the examples. Otherwise, all tests will be run.

[!Note] Legacy users can continue to run python test/test_all.py to run the scipts, though it is recommend to adopt the simpler pytest call. In a future version, test_all.py will be removed.

Feedback

For software issues please use https://github.com/NLRWindSystems/WISDEM/issues. For functionality and theory related questions and comments please use the NWTC forum for Systems Engineering Software Questions.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wisdem-4.2.5.tar.gz (5.6 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

wisdem-4.2.5-cp314-cp314t-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

wisdem-4.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wisdem-4.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wisdem-4.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

wisdem-4.2.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wisdem-4.2.5-cp314-cp314t-macosx_15_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

wisdem-4.2.5-cp314-cp314t-macosx_14_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

wisdem-4.2.5-cp314-cp314-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.14Windows x86-64

wisdem-4.2.5-cp314-cp314-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wisdem-4.2.5-cp314-cp314-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wisdem-4.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

wisdem-4.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wisdem-4.2.5-cp314-cp314-macosx_15_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

wisdem-4.2.5-cp314-cp314-macosx_14_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

wisdem-4.2.5-cp313-cp313-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.13Windows x86-64

wisdem-4.2.5-cp313-cp313-musllinux_1_2_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wisdem-4.2.5-cp313-cp313-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wisdem-4.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

wisdem-4.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wisdem-4.2.5-cp313-cp313-macosx_15_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

wisdem-4.2.5-cp313-cp313-macosx_14_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

wisdem-4.2.5-cp312-cp312-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.12Windows x86-64

wisdem-4.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wisdem-4.2.5-cp312-cp312-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wisdem-4.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

wisdem-4.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wisdem-4.2.5-cp312-cp312-macosx_15_0_arm64.whl (5.3 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

wisdem-4.2.5-cp312-cp312-macosx_14_0_arm64.whl (5.3 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

wisdem-4.2.5-cp311-cp311-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.11Windows x86-64

wisdem-4.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wisdem-4.2.5-cp311-cp311-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wisdem-4.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

wisdem-4.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wisdem-4.2.5-cp311-cp311-macosx_15_0_arm64.whl (5.3 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

wisdem-4.2.5-cp311-cp311-macosx_14_0_arm64.whl (5.3 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

File details

Details for the file wisdem-4.2.5.tar.gz.

File metadata

  • Download URL: wisdem-4.2.5.tar.gz
  • Upload date:
  • Size: 5.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wisdem-4.2.5.tar.gz
Algorithm Hash digest
SHA256 53e13bf0ce0a653027a0558fb0f2bb7d6f03ab4c0b4df0531495afc1ff0d6064
MD5 c78ca3b0517e3ceb42c71e6dca7b3658
BLAKE2b-256 e63d0da9d0d3f33d0820652b25235299e21ab2ce0ce251bc8e806e7867c22f0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5.tar.gz:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wisdem-4.2.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wisdem-4.2.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fd4fa63e13d148195c8c65811c004e536af44e177c81d5a790867d729f7c38ec
MD5 b6b549945e019853562f8d061cb9ae04
BLAKE2b-256 63daa1f83c83a58c2e5308b79d20159d4645f98c10295884edfd87d8252d77c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314t-win_amd64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53a852e047509978c1db596b69999e7198de188c7279cf4040108aea69a3a032
MD5 34b08a520323be18123ae5a12b732b23
BLAKE2b-256 5de29f187e68b8129b78822a89b006b95098455457dd36bc9b704622486de083

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 276579fe78536c20113aae5b23b441bcb969ed9e4378a6f8472ff312f40f2339
MD5 7a438018d56073ae1b61901c165b69e5
BLAKE2b-256 3427bfd3150cb8977fdf0da81c2847d1573005747b8a8992b3b1bb156a65e34f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 364bbccfa0eadf7a76aeb08f2d20849dc8ab8e846d5e7f4759dd3e0cc97529af
MD5 d42a643a5689afe9a85d0ed7e210731c
BLAKE2b-256 329c93026b365e3ecd047f44886a19c48c92386635f3a90b1e688d854c9a3f29

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8796754c4ae20ecbde3c08dd692dc3d32e75c490fbf51aaade674a98c68977d
MD5 af16c1651b1f77b7130a97f905823d0e
BLAKE2b-256 2dee44bf3de3f3489f38ce4aabe4fe9e40d4b2c7165f8bff94b2d2f94707283b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5ebea8465a921e3469282dae2c04d7ed28fe9c152abc0bf2726ef632d6124011
MD5 4c88ccb25993a3f98a34c922885ad84c
BLAKE2b-256 99a795f1bdd171680a851cd04e7dbd09b9a3a1b9db70ce41d010ef413659aeb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314t-macosx_15_0_arm64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 62e8d5dec01bea71d91fb3800ecf019e442e7b67c07406ea84c32330058961ff
MD5 cdf161373bb1d261ab52e019b0397f6d
BLAKE2b-256 9acb10e453f1654af1df27c2b6651d4d6e9734a600b3de9ffcf6772ec6865f11

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314t-macosx_14_0_arm64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wisdem-4.2.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wisdem-4.2.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b2f15fd0510cf9cee022c4124989b0f00b520b275cd91d94eb7919eca3680772
MD5 92f1ea986fce64513015dc64a079c707
BLAKE2b-256 153a47ed01c91f42318713386112080255cb8bde91c3eb09b930e7b3246a8df7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314-win_amd64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f3bea5f071b56511680e870eeafc54a0b8a6315bc9026ec25d47c2685558791
MD5 153045aa2b74ead33c02b47950b1a50b
BLAKE2b-256 06c8c9b66c74489c7d12a44d8a1a77ee11edc55e2bb29d2acbef2f5b2b9bd88b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b9c7597338d1143f8456af08c2c225d850264ed913c0ea47088bfdd7ce0ed06
MD5 85d1d51d833ebbecb37ce5cff0ce6d9c
BLAKE2b-256 ccb1b3bad1cc846ccf2ee9fe47a3b411c7b4ccde64d4729a89a8e3236160580e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e35089d3cc7878f3db2c9d34891bd6a8634e86875d0a47df5aabfe6ce4739749
MD5 aef295afc7f6e8344edf3073ec1c3e2b
BLAKE2b-256 b463a17708b437720da651ae674b11d3cd0cbe13a6a27325e2bdd0a50a412658

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72b3cb02d1bf77ffef2762e66fc0cf8f6096fcf410289fc1a55e75ee2a9768d0
MD5 449021e09f3fcc5d388e12cfc5e3aac4
BLAKE2b-256 ec8aa4f160988fc285a514ee3f409520b3e4a9e95665586a4f42d2a76ecd983d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3cfdcacaadcfd7dbe3338c643c16ea298cb4fa8153e1517e066a49069fec6e4a
MD5 643a2736f16743a28218d1df4db57752
BLAKE2b-256 f46fc3443803a6aa7d07d3537190878ec11c06222e8e648ec45491f1a255e8d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9612db73dcf7d3b23aa40b5c6c2e9b78d5b3d860228ca6df69405210328faf7a
MD5 5b4fd80960ba632babb15dc8d4113649
BLAKE2b-256 7f59314f66427e3f8d4da47c5277c509cbe11bc3266f3012844d98e51fc078e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wisdem-4.2.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wisdem-4.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8a95958aa7e424328161700c777d6aeb020c89c7e29fe83646572e2a800f7799
MD5 e29e6f1064e963029aa95e87a0e6e191
BLAKE2b-256 1d9713caf1ac25961e443621740513a8c4594050652d2606b3094b64d27e69ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp313-cp313-win_amd64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b06b1d6bf49477f4d563dd00a1a18fb9ce74beaf946bb2e0d5ab7ac1425cff01
MD5 9139bdf8026d694508e27896dc2996e2
BLAKE2b-256 5b6967db4e271b9cff1fe5103132edf24545422196f1c640c1100a402d4fb27b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c7f87316d1f98dd9cbe8443b3066a996eed35811a746193a8af027d81cb6929
MD5 6f9374fb3b550cbf1b365dff9e43cb56
BLAKE2b-256 f93e48a686cfd67c04085817fcb7f111ee032a10a4e6dd5a93579d1639d77624

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97989bcecc43c8975c250ca51ebb9b584f1a0ba648868c829465889c5424eb5d
MD5 53ab065104e324c54b5223ac3a4ece93
BLAKE2b-256 668880b9994eb0e2de769954645870de083d27f98d09ae047fe606db604ce7f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4edaca99680425a91dd36a5e3a6f909e784778a6a02354b843626ac9ba27b76
MD5 803cd03201f751d83a6793df8fda89ce
BLAKE2b-256 90bdef0a477737b366e1300b6940b8378acb280128c140a7b13fb81c3c2d86b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4a0a695d08e902c2ad360902a6179330128de0b2b3509cbe66ea326a7e3a9a99
MD5 39cf090f69e46bc4469ff2fbc968b648
BLAKE2b-256 bb694ec6f6104afdbd5534277a102f223a16d0d8485c70c16ba1f73374cbe04e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9b062d266c84b8450129a123f407b89ec0ab1820653909f6c02415fc120772d0
MD5 7eb32ba2175a8c1244e1fe7599eed2ab
BLAKE2b-256 fad1f58d6c0957d5a55d21daaa5762eb22f1ea23670ee28e7d626bd9b1c70fcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: wisdem-4.2.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wisdem-4.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1d8a15888a449f8137d11fa86430339624d413497993cdb984df57c850a0d43e
MD5 876b8d43e9c1f9b4374b27a547a1aa29
BLAKE2b-256 696cfdaf850698f594c21b877211a76f4a3feeac96dd37a5b3b6d8096b368d93

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp312-cp312-win_amd64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1fa5d3daa5ce4ab7cab9c1107fffc6b4240363f7b14fefd5c15d398b0e2dd9a
MD5 5ab0e902d3216acf855f0046143729b0
BLAKE2b-256 32322a00f40de2a93f2b8047cb3a3b53b396a33b40e5952b4b63c115e18bda26

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfaf143696be9d66078cb6e95caca34bcfd7c78df0b3cc8c9aaceaef51eb1790
MD5 7ba739adb6888644164704d419b7b91d
BLAKE2b-256 f2c69ffb39f8169d2f98217cc60f0658d6a85764e5aad8dbe712c7f2896599fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a642497d4ca97f662819a54c712b0e832cc78faa1b488e1805cc7c73553f4ff
MD5 8d42bb34f68e8c3b1f9e4b47d9968798
BLAKE2b-256 6807c45b080f2ca28b8d39853d9b57149bf3f1fb698145039a6bf8e635569a8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 351f4015a8d162fcf63fe88f4ff50ee7529ec832cbb00d6b03086430b3cd2c7f
MD5 14d4aded217dbe2de2e3c23f64768a3e
BLAKE2b-256 bcef1d26ef5a8d230db03b227463d9698eae7c288cc720fdc5416e961dec6dd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 923b0c8b89d30aac1980374146f6fcb8744c9578b14ac6a9693847ddbd34f90c
MD5 ac2deb85776b6501fb59a63b634b6479
BLAKE2b-256 ed563d7ee4f846b25461490edcc3284feccf05d8b74ba5f634c7cf42a03ce8d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 232ec0780bbdec8061c41a9dbf49283782434f7356f9a738ad1340435d4b0d01
MD5 3be32fab4ad5abc8838029a3b723df30
BLAKE2b-256 dea9ed84bb8221360b7a2c19e5cb032c056390afc122d29aa99f1d2b181f8981

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: wisdem-4.2.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wisdem-4.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 89868b0ddd79d3dd378fcdf6012f69f828aa808e3c0f74a4a782237da96def11
MD5 c2e3c03da56eb4fd7989f6ed30219956
BLAKE2b-256 8fb1c9055185fc0ef261c144770f2c97e2b96944a80bf6d70557698d54df15e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp311-cp311-win_amd64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69163f3ae6ce03e39bee1460b446c101fa0146513d668a7e4ffc49f4b6b56955
MD5 981aaa8d20cb98c49251f94579aed3ef
BLAKE2b-256 c3ef11f158da67b5ff2b4388028036b6de50a625fffccea1ad2e798833d2c4cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7fd99cf6c1898039a18f63bc225eaddd8b32a9281c3a0b20dc55ee79525a059
MD5 074a7bb2a28e4e58c895cccbe1ee4d70
BLAKE2b-256 abc59804153d079a11d7b4dfe3c12b31b57b1b67da77b271595cc3b768314448

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 953d50da01c63e6ec88314ac0e09788c73ec7544d368319674fad39052d28971
MD5 9d4f5e41a7ca9c9432b21db66f9b3c84
BLAKE2b-256 a125b81660ef6790896b9799d16aedfb39959c815dc464bc40aaadde8d7927b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 96c2d4289621f3dd7eb65deb19e221ca801510b0585aea0210e8328b0fc6e25b
MD5 737265b52c53214b2b3e85d6541acc6a
BLAKE2b-256 698004941aafedc29b3901b62b66d6cecd0b99bd9d0ac7edecefff965321f401

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 44af705c96f7adef2fdf623f497f9eb2e29ebd8d9b572617631d44776b733578
MD5 5ab36c94d9258101821c1b7022263b5f
BLAKE2b-256 3599216a283e80743dd4622a22abe01103d2412b5f7a1c844a7949d60a187ad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wisdem-4.2.5-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.5-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 10a05a2fae0f855dff77ca4e13f8e319bb8cf1b333c409961cb74427272efde5
MD5 abb906f28b992e96607df49056ece96a
BLAKE2b-256 4ce92db214dc194cf91746aae685e13e576c633761af3a3106abfd239674cfd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.5-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: Publish_WISDEM.yml on NLRWindSystems/WISDEM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page