Fand ich jetzt aus dem Augenwinkel mal ganz interessant, wo sich so alles Gedanken zu sowas gemacht werden:
https://www.heise.de/news/DIN-SPEC-3105 ... view=print
Hatte ich auf dem RSS-Feed von Heise.
VG m.
Search found 198 matches
- Fri Aug 21, 2020 4:14 pm
- Forum: Forum in Deutsch
- Topic: OT - DIN SPEC 3105: Normungsvorschlag für Open-Source-Hardware
- Replies: 0
- Views: 335
- Fri Aug 21, 2020 4:10 pm
- Forum: Forum in Deutsch
- Topic: Probleme mit Gruppen (in Part Design)
- Replies: 8
- Views: 435
Probleme mit Gruppen (in Part Design)
Hallo zusammen, ich arbeite viel mit Gruppen und hatte damit schon so meine Probleme. Diesmal kann ich es konkret nachvollziehen: OK.png Ganz einfacher Aufbau. Es wird ein Clone des Quaders erzeugt und über Boolean mit dem Zylinder in einen neuen Body überführt. Neuberechnungen einzeln oder gesamt s...
- Sat Aug 15, 2020 6:36 am
- Forum: Help on using FreeCAD
- Topic: [solved] FEM/Gmsh: Error related to group meshing?
- Replies: 4
- Views: 249
[SOLVED] FEM/Gmsh: Error related to group meshing?
I just figured it out. This hat nothing to do with the warning regarding group meshing. In preferences instead of "gmsh binary path" the relevant executable has to be chosen.
If someone can confirm this might be worth a bug report?
Thanks,
Mark
If someone can confirm this might be worth a bug report?
Thanks,
Mark
- Fri Aug 14, 2020 12:08 pm
- Forum: Help on using FreeCAD
- Topic: [v0.17] Dependency graph: Graphviz failed to create an image file
- Replies: 36
- Views: 3408
Re: [v0.17] Dependency graph: Graphviz failed to create an image file
After having the same issues as above, the current version 2.44.1 for Windows (10) works - at least for me. https://www2.graphviz.org/Packages/stable/windows/10/msbuild/Release/Win32/ Be aware of virus warnings (Virustotal, Defender etc). Check out this and make up your mind: https://forum.graphviz....
- Fri Aug 14, 2020 8:53 am
- Forum: Help on using FreeCAD
- Topic: [solved] FEM/Gmsh: Error related to group meshing?
- Replies: 4
- Views: 249
[solved] FEM/Gmsh: Error related to group meshing?
Hi, I am just starting to wrap my head around FEM but got an error with the most trivial example: ksnip_20200814-104240.png 10:08:32 Active analysis found: Analysis 10:08:34 Active analysis found: Analysis 10:08:34 ElementDimension: 3 10:08:34 Group meshing for analysis is set to true in FEM General...
- Thu Aug 06, 2020 7:38 am
- Forum: Forum in Deutsch
- Topic: Thread size out of range
- Replies: 5
- Views: 682
Re: Thread size out of range
Ich kann das Problem ebenfalls nachvollziehen! VG m. _________________________________ OS: Windows 10 (10.0) Word size of OS: 64-bit Word size of FreeCAD: 64-bit Version: 0.19.22164 (Git) Build type: Release Branch: master Hash: f2a9f712e8d68ee2393d0fe748c02096c4148a32 Python version: 3.8.5 Qt versi...
- Sun Aug 02, 2020 9:43 am
- Forum: Python scripting and macros
- Topic: Is there such workbench for charting?
- Replies: 13
- Views: 1085
Re: Is there such workbench for charting?
Having seen quite a lot of software for diagrams this one is very lean, fast and easy to cope with. Used with VSCode für documentation: https://www.diagrams.net/blog/embed-diagrams-vscode If anyone can think of a documentation for a FC project via flowchart etc. could be making sense to give it a cl...
- Sat Aug 01, 2020 5:11 pm
- Forum: Forum in Deutsch
- Topic: Part Desgin: ShapeBinder (fast) für Assembly verwenden?!
- Replies: 0
- Views: 296
Part Desgin: ShapeBinder (fast) für Assembly verwenden?!
Hallo zuammen, in diesem Beispiel wird der ShapeBinder sicher nicht wie gedacht verwendet: ksnip_20200801-184527.png Über den Parameter "Trace Support = true" folgt das blaue Lager der roten Basis - allerdings natürlich nur in X- und Z-Richtung. Das ist also lediglich eine Sparversion für ein Assemb...
- Tue May 26, 2020 6:22 am
- Forum: Python scripting and macros
- Topic: addCommand: How to address variables of instance?
- Replies: 10
- Views: 408
Re: addCommand: How to address variables of instance?
you can do it this way link_to_command = MyCommand() FreeCADGui.addCommand('My_Command', link_to_command) This is the cleaner and more direct way. OK, thanks. But it is good to see it can be done with the __main__-module, as well. Doesn't seem to be very prevalent knowledge. The common way to solve...
- Mon May 25, 2020 5:22 pm
- Forum: Python scripting and macros
- Topic: addCommand: How to address variables of instance?
- Replies: 10
- Views: 408
Re: addCommand: How to address variables of instance?
Great, got it and learned something. This is quite hackish I think, but it was only intended for a quick fix anyway.This is a very simple example how you can do it:
The module __main__ keeps a dict of the global variables.
Thanks. Mark