L
by Luis on 14 Oct 2020, edited 27 Oct 2020#
+5 votes
Hi everyone.
We are developing some Python tools to automate the creation of 3D finite element models (using CBFEM to make meshing easier) in XC.
We have a decent solution for creating the finite element mesh from the block topology information (the points, lines and surfaces that define the domain to mesh like in Ansys or in Gmsh) but we are reinventing the wheel with the code that generates those blocks: we are using a quite dirty solution to express things like: this weld connects gusset plate A with column B top flange or this hole belongs to the plate C.
I imagine that IFC has already mechanisms to express the geometry of the different elements and the relationships between them. Could you point us to the right documents or examples we can use to understand how to do this?
Hi @Luis, very interesting work. Not sure if I can help, if I understand well you are using the structural (3D) elements in IFC and not the structural analysis (analytical) elements, in order to extract the geometries of your components. I would think that the connectivity relationships would be in IfcRelConnects classes and more specifically in IfcRelConnectsElements. You can see the documentation of these for IFC4/ADD2_TC1 here.
Note you have to select 5.1.3.35 for IfcRelConnects and 5.4.3.30 for IfcRelConnectsElements from the list on the left (no direct link possible)
Hi @Luis, very interesting work. Not sure if I can help, if I understand well you are using the structural (3D) elements in IFC and not the structural analysis (analytical) elements, in order to extract the geometries of your components. I would think that the connectivity relationships would be in IfcRelConnects classes and more specifically in IfcRelConnectsElements. You can see the documentation of these for IFC4/ADD2_TC1 here.
Note you have to select 5.1.3.35 for IfcRelConnects and 5.4.3.30 for IfcRelConnectsElements from the list on the left (no direct link possible)
Hi @Jesusbill thanks for the information. Yes the idea is to use a 3D representation of the connection that could be transformed into a finite element model. I've found this IFC file that could be used to explore the possibilities.
Also, if you have a plan to parse IFC into SQLite, then let me know, we're planning to write a parser for SQLite and SQL (MySQL)
Hi @ReD_CoDE. If I understand well your idea is to store the model in an SQL database storing the relationships between objects using SQL mechanisms, right?
If I'm not wrong, those examples show the analytical representation of the joint (pinned, fixed, ...). In our case the idea is to create a simplified model of the connection itself (with its plates, welds, bolts etc.) that can be "easily" converted into a finite element model (also a simplified model using CBFEM).
Hi @ReD_CoDE. If I understand well your idea is to store the model in an SQL database storing the relationships between objects using SQL mechanisms, right?
Yes, based on SQL databases, and also isogeometric analysis (IGA)
If you want to say some IFC servers are based on SQL, I have to say that, I don't talk about such approaches
Hi @ReD_CoDE. If I understand well your idea is to store the model in an SQL database storing the relationships between objects using SQL mechanisms, right?
Yes, based on SQL databases, and also isogeometric analysis (IGA)
If you want to say some IFC servers are based on SQL, I have to say that, I don't talk about such approaches