
Moderator: bernd
I guess I still need to add a menu item here ... https://github.com/HarryvL/FreeCAD/blob ... #L121-L134HarryvL wrote: ↑Tue Oct 09, 2018 9:01 pmPlenty of changes (https://github.com/HarryvL/FreeCAD/tree/assess) compared to my forked master, but so far "no show" of OOFEM solver object in the Fem>Solve drop down menu![]()
And I guess I missed one here:HarryvL wrote: ↑Wed Oct 10, 2018 4:19 amI guess I still need to add a menu item here ... https://github.com/HarryvL/FreeCAD/blob ... #L121-L134HarryvL wrote: ↑Tue Oct 09, 2018 9:01 pmPlenty of changes (https://github.com/HarryvL/FreeCAD/tree/assess) compared to my forked master, but so far "no show" of OOFEM solver object in the Fem>Solve drop down menu![]()
If so, why is there not also an entry for Z88, whereas it pops up in the Fem>Solve drop-down menu?
bernd wrote: ↑Fri Feb 10, 2017 3:46 pmDoes this helps ? There are still a few in your bucklebranch. I assume the one which produces the error is in the "def check_prerequisites(self):" of FemTools but I did not have a closer look.Code: Select all
$ $ git checkout remotes/jee-bee/bucklebranch Note: checking out 'remotes/jee-bee/bucklebranch'. ... HEAD ist jetzt bei ed9e707... few bug fixes and typos $ $ grep -r EigenmodesCount src/Mod/Fem/FemTools.py: elif not hasattr(self.solver, "EigenmodesCount"): src/Mod/Fem/FemTools.py: message += "Frequency analysis: Solver has no EigenmodesCount.\n" src/Mod/Fem/Gui/DlgSettingsFemCcx.ui: <cstring>EigenmodesCount</cstring> src/Mod/Fem/TestFem.py: self.solver_object.EigenmodesCount = 10 src/Mod/Fem/TestFem.py: fea.solver.EigenmodesCount = 1 # we should only have one result object $
Thanks @ Jee-BeeJee-Bee wrote: ↑Wed Oct 10, 2018 4:42 amOnce i get a tip of @bernd (he is kind of grep master) for searching terms in some files/ folders if some other exist
bernd wrote: ↑Fri Feb 10, 2017 3:46 pmDoes this helps ? There are still a few in your bucklebranch. I assume the one which produces the error is in the "def check_prerequisites(self):" of FemTools but I did not have a closer look.Code: Select all
$ $ git checkout remotes/jee-bee/bucklebranch Note: checking out 'remotes/jee-bee/bucklebranch'. ... HEAD ist jetzt bei ed9e707... few bug fixes and typos $ $ grep -r EigenmodesCount src/Mod/Fem/FemTools.py: elif not hasattr(self.solver, "EigenmodesCount"): src/Mod/Fem/FemTools.py: message += "Frequency analysis: Solver has no EigenmodesCount.\n" src/Mod/Fem/Gui/DlgSettingsFemCcx.ui: <cstring>EigenmodesCount</cstring> src/Mod/Fem/TestFem.py: self.solver_object.EigenmodesCount = 10 src/Mod/Fem/TestFem.py: fea.solver.EigenmodesCount = 1 # we should only have one result object $
because it is here https://github.com/HarryvL/FreeCAD/blob ... h.cpp#L252HarryvL wrote: ↑Wed Oct 10, 2018 4:19 amI guess I still need to add a menu item here ... https://github.com/HarryvL/FreeCAD/blob ... #L121-L134HarryvL wrote: ↑Tue Oct 09, 2018 9:01 pmPlenty of changes (https://github.com/HarryvL/FreeCAD/tree/assess) compared to my forked master, but so far "no show" of OOFEM solver object in the Fem>Solve drop down menu![]()
If so, why is there not also an entry for Z88, whereas it pops up in the Fem>Solve drop-down menu?
this is needed too. Without this workbench.cpp does not know the command which iss added to the menue and toolbar by workbench.cppHarryvL wrote: ↑Wed Oct 10, 2018 4:28 amAnd I guess I missed one here:HarryvL wrote: ↑Wed Oct 10, 2018 4:19 amI guess I still need to add a menu item here ... https://github.com/HarryvL/FreeCAD/blob ... #L121-L134HarryvL wrote: ↑Tue Oct 09, 2018 9:01 pmPlenty of changes (https://github.com/HarryvL/FreeCAD/tree/assess) compared to my forked master, but so far "no show" of OOFEM solver object in the Fem>Solve drop down menu![]()
If so, why is there not also an entry for Z88, whereas it pops up in the Fem>Solve drop-down menu?
https://github.com/HarryvL/FreeCAD/blob ... #L875-L880
A lot of guesswork![]()
Yes, sure, I think this are few lines of code only. I will have a look at this too when I find time to tackle the VTK and node numbering issue we talked about.
issue #3628 and some helpful links ...