Moderator: bernd
you helped alreadynitramkaroh wrote: ↑Thu Mar 21, 2019 10:06 amIf you need any help with OOFEM input file structure or anything else I would be happy to help.
thanks for the flowersnitramkaroh wrote: ↑Thu Mar 21, 2019 10:06 amHi guys, I am one of OOFEM developers and the integration of OOFEM into FreeCAD is really great.
Code: Select all
from femexamples.manager import *
doc = run_ccx_cantilevernodeload(None, 'oofem')
doc = run_ccx_cantileverprescribeddisplacement(None, 'oofem')
doc = run_oofem_planestress2d()
Code: Select all
from femexamples.manager import *
doc = run_ccx_cantilevernodeload('oofem')
doc = run_ccx_cantileverprescribeddisplacement('oofem')
doc = run_oofem_planestress2d()
Thus I rebase fixes and changes to the approprate commits. Means as long as the branch is not in FreeCAD master the git history could (will) change.
Beside what @bernd mentions, perhaps it would be beneficial to get OOFem out in to the package ecosystem. Currently nothing returns when one searches OOFem on Repology.orgnitramkaroh wrote: ↑Thu Mar 21, 2019 10:06 amHi guys, I am one of OOFEM developers and the integration of OOFEM into FreeCAD is really great. If you need any help with OOFEM input file structure or anything else I would be happy to help.
Thanks. I must study rebasing with github and then i continue this waybernd wrote: ↑Wed Feb 19, 2020 2:24 pmrebased my oofem branch to latest FreeCAD dev, solved all conflicts and make the unit tests run again.
https://github.com/berndhahnebach/FreeC ... s/femoofem
Code: Select all
#include <Precision.hxx>
Code: Select all
error: ‘TColgp_Array1OfPnt::TColgp_Array1OfPnt(const TColgp_Array1OfPnt&)’ is private within this context
auto nodes = facets->Nodes();
error: ‘Poly_Array1OfTriangle::Poly_Array1OfTriangle(const Poly_Array1OfTriangle&)’ is private within this context
auto triangles = facets->Triangles();
Code: Select all
/bin/sh: 1: PYSIDE2RCCBINARY-NOTFOUND: not found
src/Mod/Material/CMakeFiles/Material.dir/build.make:89: recipe for target 'src/Mod/Material/Material_rc.py' failed
Your compilation problems do not have to do something wit oofem implementation in FreeCAD.nitramkaroh wrote: ↑Thu Sep 24, 2020 9:27 amI am trying to compile FreeCAD with oofem capabilities.
However, I got several errors during the compilation.