Replies: 1 comment 2 replies
-
Hi, thanks for notification, I will check that, I made cylindrical coords working few months ago, I was using octave interface and I thought that I made it running also for python interface, but seems that something left there wrong. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Thank you for good macros for OpenEMS and FreeCAD.
I'm trying to running with python, and find the error in "FreeCAD-OpenEMS-Export-main\utilsOpenEMS\ScriptLinesGenerator\PythonScriptLinesGenerator.py"
and 2.py
def mesh():
x, y, z
maybe change as follows,
class Mesh:
def init(self):
self.x = np.array([])
self.y = np.array([])
self.z = np.array([])
mesh = Mesh()
def getCoordinateSystemScriptLines(self):
genScript = ""
Beta Was this translation helpful? Give feedback.
All reactions