pv.Spline command in Pyansys using spaceclaim mode #984
Replies: 2 comments
-
Hi @santoshdoddipatla - support for Splines is not implemented in PyAnsys Geometry yet. There is an issue #46 for tracking this implementation. It does not only depend on being able to sketch it using the |
Beta Was this translation helpful? Give feedback.
-
Hey @santoshdoddipatla - I know it is not the Spline implementation what I am going to show but... if you are interested in building an airfoil, have a look at this example! https://geometry.docs.pyansys.com/version/dev/examples/04_applied/01_naca_airfoils.html |
Beta Was this translation helpful? Give feedback.
-
first i created list of coordinate points of airfoil then create a plane
i use below code to create a airfoil using pyvista spline command
airfoil_points = np.array(upper + lower[::-1])
spline=Sketch(plane)
(pv.Spline(airfoil_points)
)
spline.plot()
code is executing but plot is not visible, why?.....
i want to extrude that spline is it possible?
Beta Was this translation helpful? Give feedback.
All reactions