A package for Design of Experiments (DoE) and Design Space Exploration (DSE)
Project description
EngineeringDoE
Introduction
This package is a wrapper of pyDOE2 package. It is used to generate design of experiments (DoE) for engineering applications in a way that are easy to set up and export as csv files.
Installation
To install the package, run the following command in the terminal:
pip install EngineeringDoE
Usage
There package support two phases: Generation of DoE and tracking of the evaluation of the DoE design cases.
Generation of DoE
from EngineeringDoE import DoE, VariableDefinition, Variable
v1 = VariableDefinition("Thickness", bounds=(0.1, 0.5), units="m")
v2 = VariableDefinition("Width", type="discrete", options=[4, 5, 6])
v3 = VariableDefinition("Height", bounds=(0.1, 0.5), units="m") PerformanceMetricDefinition("Weight", "kg")
# create a DoE object with 10 samples distrubuted according to a Latin Hypercube Sampling.
doe = DoE(variables=[v1, v2, v3], n=10)
# export the DoE to a csv file
doe.export("doe.csv")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file engineeringdoe-0.1.0-py3-none-any.whl.
File metadata
- Download URL: engineeringdoe-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acfb9ac9853154f2afd1ec90259105b33408313da1a3b0f5613e306782a916ad
|
|
| MD5 |
22f8511cfac5de9f75639cd5738685dd
|
|
| BLAKE2b-256 |
b4c5be83783cd4ada55f622417b36be37dec1c6a7617b559c089d1249d492ac9
|