Search found 115 matches

by cnirbhay
Wed Jul 17, 2019 4:31 pm
Forum: Open discussion
Topic: Conference
Replies: 17
Views: 5888

Re: Conference

hardeeprai wrote: Sun Jul 14, 2019 4:49 am Has FreeCAD developers / users ever conducted any conference?

I might be good, if we have one in near future.

What is your opinion?
This would be a great initiative. I'm happy to join. :-)
by cnirbhay
Mon Feb 25, 2019 5:29 pm
Forum: IFC
Topic: Export structural analysis data to IFC
Replies: 23
Views: 6595

Re: Export structural analysis data to IFC

Tandy wrote: Tue Feb 12, 2019 9:59 am I am starting working on them from today only and give you updates soon.
Some sample IFC files attached FYI.
by cnirbhay
Sun Jan 27, 2019 2:37 pm
Forum: Help on using FreeCAD
Topic: FEM analysis from Freecad manual using Freecad 0.18
Replies: 4
Views: 893

Re: FEM analysis from Freecad manual using Freecad 0.18

You just have to simply unhide the structure again to apply material, constraints and loads. Don't worry about the mesh unhiding.
by cnirbhay
Sun Oct 07, 2018 11:14 am
Forum: IFC
Topic: Issue regarding ifc file in FreeCAD
Replies: 23
Views: 5500

Re: Issue regarding ifc file in FreeCAD

Rather, there are shortcuts being adopted by ETABS, ISM or other for the mapping purposes. Moreover, the mapping is done in a way considering the 'family' approach of Revit. For eg: In ETABS, section name is mapped to the 'ObjectType' of 'IfcColumn' and section dimensions are mapped to 'XDim' and 'Y...
by cnirbhay
Fri Sep 28, 2018 6:08 pm
Forum: IFC
Topic: Issue regarding ifc file in FreeCAD
Replies: 23
Views: 5500

Re: Issue regarding ifc file in FreeCAD

I had converted the ifc file to ism file using software of Bantley. Then i had opened that ism file in Staad Pro. Firstly, you are importing an ISM file into Staad, not the original IFC. Secondly, when you convert the IFC to ISM, make sure you do proper mapping of the elements and their respective ...
by cnirbhay
Fri Sep 07, 2018 7:12 pm
Forum: Python scripting and macros
Topic: Importing FreeCAD in Dynamo Python
Replies: 13
Views: 3134

Re: Importing FreeCAD in Dynamo Python

I don't know another way to get the compiler used to build python. I suspect Dynamo's Python 2.7 is built with VC9, this is what standard Python is built with. FreeCAD's python is built with VC12, so the 2 python's would be incompatible as they would try load different CRT's. Maybe you can get some...
by cnirbhay
Fri Sep 07, 2018 4:25 pm
Forum: Python scripting and macros
Topic: Importing FreeCAD in Dynamo Python
Replies: 13
Views: 3134

Re: Importing FreeCAD in Dynamo Python

sgrogan wrote: Thu Sep 06, 2018 5:15 pm What is the result of

Code: Select all

import platform
print(platform.sys.version)
So, now what is the solution to it? Any hints or pointers would be great. :-)
by cnirbhay
Thu Sep 06, 2018 5:23 pm
Forum: Python scripting and macros
Topic: Importing FreeCAD in Dynamo Python
Replies: 13
Views: 3134

Re: Importing FreeCAD in Dynamo Python

sgrogan wrote: Thu Sep 06, 2018 5:15 pm I suspect the compilers are different.
Well, in that case, I got a warning in Dynamo that no module named platform found. Both the applications are 64-bit.
Screenshot (373).png
Screenshot (373).png (151.15 KiB) Viewed 2210 times
by cnirbhay
Thu Sep 06, 2018 4:48 pm
Forum: Python scripting and macros
Topic: Importing FreeCAD in Dynamo Python
Replies: 13
Views: 3134

Re: Importing FreeCAD in Dynamo Python

Then cnirbhay check the Python version used by Dynamo and that of your FreeCAD version. They must match with their major and minor version number as otherwise they are not binary compatible and thus cannot be mixed in one process. I checked their respective Python versions also and they matched too...
by cnirbhay
Wed Sep 05, 2018 6:14 pm
Forum: Python scripting and macros
Topic: Importing FreeCAD in Dynamo Python
Replies: 13
Views: 3134

Importing FreeCAD in Dynamo Python

Hi all. Please guide me in the following issue where I'm unable to import FreeCAD in the Python console of Dynamo, whereas I was able to import any other module from the same path. Please see the code and screenshot below: import clr clr.AddReference('ProtoGeometry') from Autodesk.DesignScript.Geome...