Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kalyanpi4/pySW
A Wrapper Around Solidworks VBA API
https://github.com/kalyanpi4/pySW
Last synced: 9 days ago
JSON representation
A Wrapper Around Solidworks VBA API
- Host: GitHub
- URL: https://github.com/kalyanpi4/pySW
- Owner: kalyanpi4
- License: gpl-2.0
- Created: 2020-02-03T10:49:17.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-24T10:14:44.000Z (over 1 year ago)
- Last Synced: 2024-03-15T01:03:48.215Z (9 months ago)
- Language: Python
- Size: 99.6 KB
- Stars: 40
- Watchers: 2
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - kalyanpi4/pySW - A Wrapper Around Solidworks VBA API (Python)
README
[![DOI](https://zenodo.org/badge/237943198.svg)](https://zenodo.org/badge/latestdoi/237943198)
# pySW
A Wrapper around Solidworks VBA API for Automating Geometry Modifications for Python-based Optimization and Design Space Exploration
pySW is simply a Python wrapper around Solidworks built-in VBA API for automated modifications to Solidworks assemblies and parts.
Primary purpose of pySW is optimization studies, Design Space Exploration studies etc. There are many good libraries which offer framework for single and multi-ojective optimization, like [pymoo](https://pymoo.org/index.html), [openMDAO](https://openmdao.org/) and [pyOpt](http://www.pyopt.org/) written in Python itself. Design space can be explored using libraries like [pyDOE](https://pythonhosted.org/pyDOE/index.html). Apart from these, the famous [Scipy](https://docs.scipy.org/doc/scipy/reference/optimize.html) library provides functions for minimizing (or maximizing) objective functions, possibly subject to constraints.
In many cases the optimization or the space exploration problem is not straight-forward that it can be expressed as equations. Some problems require some communication link between various software. For example, consider an optimization of a winglet of a commercial aircraft. This problem requires modifying and saving geometry using a CAD program, using a CAE program for analysing and saving results of the analysis and a third program/code to act as a link between CAD and CAE code as well as perform the tasks of optimization or space exploration. The first task can be prformed using pySW and the third task using the libraries mentioned above.
Note: Solidworks is a proprietary software of 3DS Systems. If you hav access to Solidworks, pySW will make your life much easier if you want to optimize using Solidworks.
As an option, FreeCAD is an open-source primarily CAD program written completely in Python. It also as modules for CFD using OpenFOAM and FEM analysis.It currently does not have the capability to modify or create sketches.
### Installation
You can install pySW from pip from the command prompt by running:
```sh
pip install pySW
```Dependencies:
1. [pywin32](https://pypi.org/project/pywin32/)
2. [Numpy](https://numpy.org/)
3. [Pandas](https://pandas.pydata.org/)You can install the dependencies by running the following commands in the command prompt. If you have installed the open-source Anaconda distribution for Python, please check if the libaries are already installed.
```sh
pip install pywin32
pip install numpy
pip install pandas
```License
----GNU Lesser General Public License v2
[//]: # (These are reference links used in the body of this note and get stripped out when the markdown processor does its job. There is no need to format nicely because it shouldn't be seen. Thanks SO - http://stackoverflow.com/questions/4823468/store-comments-in-markdown-syntax)
[dill]:
[pymoo]:
[openMDAO]:
[pyOpt]:
[pyDOE]:
[Scipy]:
[pywin32]:
[Numpy]:
[pandas]: