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.6.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.6-cp314-cp314t-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

wisdem-4.2.6-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.6-cp314-cp314t-musllinux_1_2_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wisdem-4.2.6-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.6-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.6-cp314-cp314t-macosx_15_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14tmacOS 14.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

wisdem-4.2.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wisdem-4.2.6-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.6-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.6-cp314-cp314-macosx_15_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

wisdem-4.2.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wisdem-4.2.6-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.6-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.6-cp313-cp313-macosx_15_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

wisdem-4.2.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wisdem-4.2.6-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.6-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.6-cp312-cp312-macosx_15_0_arm64.whl (5.3 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

wisdem-4.2.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wisdem-4.2.6-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.6-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.6-cp311-cp311-macosx_15_0_arm64.whl (5.3 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

wisdem-4.2.6-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.6.tar.gz.

File metadata

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

File hashes

Hashes for wisdem-4.2.6.tar.gz
Algorithm Hash digest
SHA256 64e05de5f836fa5b9d7f4e330e01f2309838564d7942b85b8a713c5ae2590266
MD5 679e088614ab6f6a39c5047d61fc8776
BLAKE2b-256 67462bdf989c0b6a630582e6b9da152a59cccbff15bd7fbe3e1ba71a33ab2465

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6.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.6-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wisdem-4.2.6-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.14

File hashes

Hashes for wisdem-4.2.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 79094d84af05b4a52c22049ed66c2d353df0d7c183016fcf80f3ef94023e1ddd
MD5 4e71fca41fe1fd7980f8a4ac200f160c
BLAKE2b-256 77bb2c982614b3731fbf23869a29f95561c9fdc686c3bd4c4dfca980ffe4d274

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 294c6c895b1f1064337c1c85fff1c9c14e5925aaa51ad8f56c1c3fff58ee5086
MD5 a5b9d05b21bd19c6876956bde8bb205f
BLAKE2b-256 975f18b9fbaccb2122f1763e2762d03e2c161600137e993d48eed47db28e405e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c129d825253b32f42b70956f806216a955e539a18abacdc9d63985e56b5f8263
MD5 ae80cb2476d09e74ebbca0eafde523a5
BLAKE2b-256 d1446e8682e0ea3b581add0acb8ba397f6222531d0afec66cb81628c704001f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-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.6-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb474681c44dc9646f2e44ccaf67c4d8ebd18b9237eace4125e0c5dceeb7193a
MD5 e605f0594257277e6eb2aacda317f967
BLAKE2b-256 a104dffd84d4a1d4f06253619b8a0fb820e805712c8848b4dc8a024ba06ae393

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15c962c981ccaa4bfc6c045bcf440f54c2787b981e63f308696fa95bba4f8b59
MD5 812aed59d55904c4de5c2038d232f249
BLAKE2b-256 62d716544d83917628264d0c48d4748ae20ced03cf8add0fb3aa51f929aa428c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 34142474360b58128f939dbad7a636cf57e757feebb9d18880eb960b9e8a9d0a
MD5 85a0230e861117137cc7d3bb3128ee59
BLAKE2b-256 09b7a3f2ad180221032c67382bc1ad098563254f0523247f8a17c24e125f58f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2152ef7ebb20ac07e7f557a0d11f4faedfc5904cb6df0b0152ba925f29b63962
MD5 b2f2c93fdcd6ef24b598f2ceb96f003d
BLAKE2b-256 6684b818ccb63cd37417b0084171b4f621a3fc9acc2d87047a910a2322bfcf16

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wisdem-4.2.6-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.14

File hashes

Hashes for wisdem-4.2.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f1db97c1ff4fc4bb3ae02350158fc2cf07de952033595399795c3cec13b285cc
MD5 55c88484a578c13fdc8ecbde4ac6acbe
BLAKE2b-256 37cdbdaed8d6f53e625445226a3346996b495b7988acd78bed6d40424fd349b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a8d78eaaa4475c9234a55131a58d6f0a8d5296c4779c387878a2e4d9ca13799
MD5 0daa4c25034990ad12e990a5281fbd43
BLAKE2b-256 55c77b57b8afa4df4c8a84a68c023b26741cba353cddf762bafdafc53d856641

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 441a51d734b498af98015e157f78fa53d5a56b70a2f8be5a75371eeffc87e4e8
MD5 1dea7d124826b4fe4e2e6213d5ae3799
BLAKE2b-256 f60c1ab5bd2066a4337a5d4323878b6cb4366286a336a4cd5f057c05ea51dd00

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-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.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 533d5dd56151e1df9c87e3b0043734ce1f5f4e7f28a869d945bf8e7abcec0ef9
MD5 afbee0d9e92a10fc0e777b99355f6f61
BLAKE2b-256 789c3e4ea063985380da2fed06039406864c4160066bf97a816d423a0870e315

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6be37d2afe1434554cb51259be0cc41fd6a4f081ef8f88305944a39acf4dee7b
MD5 b488e5eb09bbeec2075ea3998df9badd
BLAKE2b-256 a9e9dc7388ed47d7e78a02082e5904807488bac97d40ee25927dbc336e1e81f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ad8dc9328ad8e456dcfb9004b5b38eb3a51078ba2ce3c49132bf829aba112f51
MD5 6b706c8fa7290a4c47b883621e60f08d
BLAKE2b-256 46772eb35f9a6d9eecdd1ccce101dd70b47c274a9e287db57ec28fb9073906d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1b5608aac0c5650dc376bdcd31d4f9a84f88ae26d241916a1abd4127d21501c5
MD5 318ad23050d372150d7b0af0815327f6
BLAKE2b-256 ae38b00f42d841254f0285bf27e436a6a92d9b7d538eabaceeba56e256157b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wisdem-4.2.6-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.14

File hashes

Hashes for wisdem-4.2.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d2f787a2de2954156334b14427340616cce26ee014cc473095817ea573a4e3bc
MD5 e695b1a4073d568729fcee49c9bfa1de
BLAKE2b-256 2c2fb634b762a27cbd5cfad206ba2558ceec99da4f3cef61bd72f7a71a8fc47b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ab04ee7bca95fbb32842461d5af0aa3f12b714bd69483dce19cbab79d5f34de
MD5 ddb8c424fc15a59824eb8cbebd309c48
BLAKE2b-256 b8c13f603ae27b10df8e2a6a34957c1f2bdfa8acbfc2d6fa7caccee8e8e78136

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28b416d4834054b8fcc6935c58ab411142d5f81d5023433b25474ab096c98f44
MD5 c5932694e5c51c10a7149ca4406416fc
BLAKE2b-256 83f77343dcd8ffa978255c1cb725ca9fecae223eb2fb11ec1e26d5d7b4c552ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-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.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa9e243fa5144d1305760709a2bf6aa05bdbe4bbf5beb5a6b5fe9875cbab1843
MD5 ba8b17f57c24169c13e10f4392decd58
BLAKE2b-256 89998bc3821a6e608f3149a0b7fd2a7cd349fe4b8d54e8b90e2fbdedd208857e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21805904871ba028ec980683af90db977a21c6a2ffca8db02b1c0f6d880ddd10
MD5 990f9d0662dfd59f8df04180824e1236
BLAKE2b-256 4b1b46ba8bbb7abfa83c8be0507676771d6697f98cd6810c91ffca1f29770cc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5b3e44eec122ee295cb90a2c9298e0a80ef10a60ec652a6144f1c9fc9cbaee61
MD5 13b4914a02a80d622be736f96925e330
BLAKE2b-256 d1ed9831b91064df169aa1cecb07f26346b8787276356107526a5e7702cf0f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d4365c7be7b5e0f760bbd955b3cb2898ed07639239dcfb4758fc11976d62abe6
MD5 b80238d389e37f6b6a09d42dfe2e6d92
BLAKE2b-256 794a6a10628048b7776a72be941cef79b1083e236b0a42325bafd6a04f40690e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: wisdem-4.2.6-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.14

File hashes

Hashes for wisdem-4.2.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e408f759e26dac4de2328421144f4d156b5613ebb9ab12e00fb23b84fde68471
MD5 d177be0e90460dfe4fcfb34373cfb05c
BLAKE2b-256 44871919c0f3986e2606d46b19d7ce95324cc3e324975414aeef99b0b78ef36c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b6ab72ea3f34aaba478094d38056fbd01d9982985f125aa84d517bc39549a9f
MD5 bd9924f67d4be2e7461ef72741c972b5
BLAKE2b-256 cfa54618510bad4b8491d483a139fe0d6396f950e44e9de65c544b5b14174e1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d58c1995b44349e1cb64cb75d46ed6fa49ca4177f7646ac29e6923a526c7e93
MD5 6e94a62b7b2943d2fda780076bc63192
BLAKE2b-256 60fb82d0d22ea40392c817f81ffe98f661a1971fdd2d89159b24eb892ab483c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-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.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eedee420618e6044db3ddd1e763e42d7b394f7f03113844193f744dc4797de47
MD5 bce734d52b5a3d36c321041a8e721486
BLAKE2b-256 c18cf3043406e8773d4aa21c26dbae3f96bd2374aaf827aecc90a205872e4188

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 509927846d392b2b4267c8dca3c3e1d1543e885f831dad0bb2748cd25f733fa8
MD5 4f37b687cdb7fc9ea64341fd1d8dcdb6
BLAKE2b-256 04e228e9ce89fc9b253ec1f29b305408e3fa89d009403a21ad644d9f5f1da7d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 edf3f0e222390ded52f0210003105a9eb39c0ef60672a408ec6543892eb57a30
MD5 77b5709a83505ba82f1ba3d49b778349
BLAKE2b-256 ce5f7e183499b0c51272b42473c08581b863857cfb9c2c8c0a32a064135c0ae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 58f9a8fa3aaa666b8b717e24ae318e3383b2774ad85a2ed9e83de300bc78691a
MD5 e92f7d6a2f8926d6743dc617a3379dad
BLAKE2b-256 f0d20ef19d699699fdf3782e6dfd8c66ecc31c3e80bc886b602c737351c37a46

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: wisdem-4.2.6-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.14

File hashes

Hashes for wisdem-4.2.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 85c29c542d3667dae3a91b323e4d985b2ac2cae16be8cfcb67319049338138a3
MD5 018b02f33004b4a9bdf1738d0f4f0eb3
BLAKE2b-256 f625a96cc99802ceff0aefab5506579e3ee64b607dfa3eb5328626d82fb2bcde

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e45ef59a052860f001cb4c9446bd35914b40eb40f911f3c6797b2a4b1edfcbb6
MD5 e7e27c3f2171c94dd6500667bf501db8
BLAKE2b-256 f91de352f4ce4ff69a8fd653a49b95021a460a1b41607a1c9e7bc9b173bb0311

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17df70798ba235155039fd2dc875012294e67219ecca090130f69f7f33118383
MD5 a4c7c7f68da3691f43e2bf8299fb8a77
BLAKE2b-256 63511c94ff923d10a40c5c10a35e2db50b377018d1e0357b5851c81fc3439c48

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-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.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05746fb3258728a1c80c30d79209fc7271b47d3efdf9f4496b992aac271f1d43
MD5 9e17aeab3dbf477ec29852a4a9d4cf77
BLAKE2b-256 786dd4c10b07e8bb4cb7cd5ef6f128c026fe4108b8b630fb216e1225deffc67e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8edf1768ecad012777ca4e0cf1d3bb7a807c2389db44cc8fcab0849fb48551b0
MD5 cefabd81a253aef50cb6b10e6b742e8f
BLAKE2b-256 21a22b4be684229328c210aa6b366f36100f03428ce4b777f64a7a96b96d5aa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b3183f4db0661e301804314671de2648fb27b0504c4e577de0adccc21dd71042
MD5 2a145069658d45cd4ee77c9f03ab4b70
BLAKE2b-256 89c080d1fdb432fb07abfe13bcf55d6f7ac1522537d26e37a207a1c38a01c445

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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.6-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for wisdem-4.2.6-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 09c1acc3fb9d7c3243ad0b552be3f687e715327e38c6f27761ba985911237848
MD5 236d41a98550886483373c1395081f6b
BLAKE2b-256 92e3ecfc2a21d18b2132f158e197ab8ee34093c267e9cc540fc43671d58b2610

See more details on using hashes here.

Provenance

The following attestation bundles were made for wisdem-4.2.6-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