Hello,
This app works on windows (.exe)
Is there a similar app for linux ubuntu 16.04 ?
Thanks,
Moderator: bernd
How about this? It would run on any plattform: https://github.com/imirzov/ccx2paraview
Oooh, wow! I will follow this thread.... a python based ccx2vtk converter is really awesome!bernd wrote: ↑Thu May 16, 2019 6:33 amHow about this? It would run on any plattform: https://github.com/imirzov/ccx2paraview
... start FreeCAD, run this code ...EkaitzEsteban wrote: ↑Wed May 22, 2019 6:44 pmOooh, wow! I will follow this thread.... a python based ccx2vtk converter is really awesome!
Code: Select all
import Fem
from feminout.importCcxFrdResults import importFrd
doc = App.newDocument()
importFrd(FreeCAD.ConfigGet("AppHomePath") + 'Mod/Fem/femtest/testfiles/ccx/cube_static.frd')
Fem.writeResult('C:/Users/BHA/Desktop/cube_static.vtk', doc.results)