Metadata-Version: 2.1
Name: FoilMesh
Version: 0.0.8
Summary: FoilMesh is a tool to mesh airfoil structural grid
Home-page: https://github.com/Zcaic/Foilmesh
Author: Zcaic
Keywords: aerodynamics cfd airfoil grid mesh
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: rich

A convenient program produces airfoil structural meshes and exports them in a variety of formats.<br>
The meshing code is extracted from [PyAero](https://github.com/chiefenne/PyAero)
![mesh zoom](./assert/mesh_zoom.gif "mesh")<br>

# Install
1. 
    ```
    pip install foilmesh
    ```
2.
    ```
    git clone https://github.com/Zcaic/Foilmesh.git
    cd Foilmesh && pip install .
    ```

# usage
```
import foilmesh as fm

af = fm.Airfoil(name="myairfoil")
# af.control.Airfoil_data=np.array([[1.00,0.95],[0.89565,0.777]])
af.readControl("./example.json")
af.StructureMesh()
```
