EP2819097A1 - Maillage parallèle découplé pour conception assistée par ordinateur - Google Patents

Maillage parallèle découplé pour conception assistée par ordinateur Download PDF

Info

Publication number
EP2819097A1
EP2819097A1 EP13173430.3A EP13173430A EP2819097A1 EP 2819097 A1 EP2819097 A1 EP 2819097A1 EP 13173430 A EP13173430 A EP 13173430A EP 2819097 A1 EP2819097 A1 EP 2819097A1
Authority
EP
European Patent Office
Prior art keywords
meshing
cad
mesh
meshes
sections
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Withdrawn
Application number
EP13173430.3A
Other languages
German (de)
English (en)
Inventor
Serban GEORGESCU
Peter Chow
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Fujitsu Ltd
Original Assignee
Fujitsu Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Fujitsu Ltd filed Critical Fujitsu Ltd
Priority to EP13173430.3A priority Critical patent/EP2819097A1/fr
Priority to US14/305,669 priority patent/US20140379308A1/en
Priority to JP2014124181A priority patent/JP2015007976A/ja
Publication of EP2819097A1 publication Critical patent/EP2819097A1/fr
Withdrawn legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F30/00Computer-aided design [CAD]
    • G06F30/20Design optimisation, verification or simulation
    • G06F30/23Design optimisation, verification or simulation using finite element methods [FEM] or finite difference methods [FDM]
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T17/00Three dimensional [3D] modelling, e.g. data description of 3D objects
    • G06T17/20Finite element generation, e.g. wire-frame surface description, tesselation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2111/00Details relating to CAD techniques
    • G06F2111/02CAD in a network environment, e.g. collaborative CAD or distributed simulation

Definitions

  • the present invention relates to decoupled parallel meshing in computer-aided design (CAD), and in particular to methods and apparatus for use at different stages of a decoupled parallel meshing process.
  • CAD computer-aided design
  • CAE Computed Aided Engineering
  • a typical CAE process starts with a Computer Aided Design (CAD) file which represents the geometrical model of the object that is analyzed (step 1).
  • CAD Computer Aided Design
  • the CAD file created using specialized CAD software, passes first through a stage at which boundary conditions are set (step 2) and then through a pre-processing step (step 3) where the geometry is partitioned ( meshed ) by a mesher into a very large number of elements, which form what is called a mesh.
  • the mesh accompanied by the boundary conditions, is then sent to a solver which uses standard numerical techniques, like the Finite Element Method, to compute the effect (e.g. deformation) of the boundary conditions on the object (step 4).
  • step 5 the results are visualized in a post-processing step (step 5).
  • the solver step used to be the most time consuming step of the analysis, with the improvement in processing power that has happened in the last few decades, the balance has shifted in the direction of the pre-processing operations, like CAD model preparation, the setting of boundary conditions and meshing.
  • One of the main reasons for this shift is that, for complex CAD models, like the ones found in industry, a certain amount of user intervention is still required.
  • pre-processing is set to become a bigger and bigger bottleneck in the analysis. Additionally, much less effort has hitherto been spent in automating and parallelizing these tasks than it was in the case of solvers.
  • accelerating the pre-processing stage of the CAE process would be an important step towards achieving a faster and more efficient product development cycle and the development of better quality products.
  • Serial meshers are restricted to the computational power of only one processor and to the memory attached to it. With a mesh of the order of 1 million elements requiring in the order of 1 GB of memory to create, it is clear that memory is a severe limitation for such codes. Moreover, with all modern processors having multiple cores, serial meshers are able to use less and less of the peak performance of the processor. However, most meshing software available today and, in particular, all those that are freely available (e.g. NetgenTM, TetGenTM, GmshTM), fall into the serial mesher category.
  • Parallel meshers are able to create much larger meshes, and in a much shorter time, by distributing the workload to a number of processors found either in one computer or, more often, in a number of computers connected by a network.
  • parallel mesh generators can be further divided into three categories: tightly coupled, loosely coupled and decoupled. From these three subcategories, only decoupled meshers (which require no communication or synchronization between different processing parts) can achieve 100% reuse of the serial meshing code. This is achieved by partitioning the domain that is to be meshed into a number of disjoint sub-domains, which are then independently meshed.
  • An assembly model is a CAD model consisting of multiple solids, which may or may not be in physical contact with each other.
  • the term part will have the meaning of a single solid component of an assembly model.
  • a solid may be split/partitioned into a number of sections.
  • a 2D meshing operation is the discretization of the faces of a solid by 2D elements such as triangles or quadrilaterials.
  • a 3D meshing operation is the discretization of the entire volume of a solid by 3D elements such as tetrahedrals or hexahedrals.
  • a mesh merge operation is the combining of the 3D meshes of the individual sections of a part into one coherent 3D mesh for that part.
  • a coherent mesh is defined as one single connected mesh, without duplicate nodes on the interfaces between sections.
  • a mesh assembly operation is the putting together of the meshes for one or more individual parts into one single mesh for the assembly model. The difference between mesh assembly and mesh merging is that an assembled mesh does not become one single connected mesh. In other words, even if the meshes of two parts are in physical contact, the interface will contain two sets of nodes and elements, one set for each mesh. More formally, there is no element in the assembled mesh which has nodes belonging to the meshes of more than one part.
  • FIG. 2 A decoupled parallel meshing system proposed in EP12173469.3 is illustrated in Figure 2 of the accompanying drawings. It can be regarded as being built from one or more individual processes or modules 1 to 8, depicted in Figure 2 as rectangular blocks. These modules are used in sequence, starting with the reading of the CAD file that is to be meshed and ending, in the case the meshing is successful, with a 3D mesh of the CAD file.
  • Module 1 is a CAD Disassemble module
  • module 2 is a Mesh Parameter Setting module
  • module 3 is a CAD Split module
  • module 4 is a 2D Meshing module
  • module 5 is a 2D Mesh Modification module
  • module 6 is a 3D Meshing module
  • module 7 is a 3D Mesh Merging module
  • module 8 is a Mesh Assemble module.
  • the function of the 2D Meshing module 4 is to create a 2D (surface) mesh starting from CAD geometry.
  • the module 4 can use any off-the-shelf unmodified mesher to create the 2D surface mesh of the CAD file given as input and using the specified meshing parameters.
  • the CAD file is a section of a part, generated by the CAD split module, while the meshing parameters are computed by the Meshing Parameter Setting module 2.
  • the function of the 2D Mesh Modification module 5 is to modify the surface meshes for all the sections of one part such that the meshes of sections which have an interface with one another are the same at that interface. This is important when using meshers which use randomized meshing algorithms, for which there is no guarantee that the same geometry will be meshed in the same way every time. Actually, for meshers like GmshTM or NetgenTM, which are currently two of the most widely-used pieces of open source meshing software, the 2D and 3D meshes generated for the same input CAD file are different almost every single time the program is run.
  • EP12173469.3 recognizes that the restriction imposed on serial meshers used as bases for parallel meshing in the prior art, that they should always generate the same 2D surface mesh, may advantageously be relaxed, and proposes that the mesher only be required to generate the same 1D edge mesh.
  • EP12173469.3 proposes a method of modifying a 2D mesh at a surface of a section produced using a meshing method which generates the same 1 D edge mesh at every surface, in which, for all sections for which the method has not already been carried out and which have an interface with another section, nodes of elements along edges of a surface of a section on one side of the interface are matched with nodes of elements along edges of an opposing surface of a section on the other side of the interface; and the elements on the surface on one side of the interface are replaced with the elements on the surface on the other side of the interface.
  • the function of the 3D Meshing module 6 is to create a 3D (volume) mesh starting from 2D surface geometry.
  • the module 6 can use an off-the-shelf unmodified mesher to create a 3D volume mesh from the 2D surface mesh file given as input and using the specified meshing parameters.
  • the 2D surface mesh file is the 2D mesh of a section of a part, generated by the 2D Meshing module 4 and modified by the 2D Mesh modification module 5, while the meshing parameters are computed by the Meshing Parameter Setting module 2.
  • the 3D Mesher must not add any new nodes on the 2D surface.
  • One example of a meshing algorithm with this property is the Frontal method, used in meshers like GmshTM and NetgenTM.
  • the function of the 3D Mesh Merging module 7 is to combine the 3D meshes corresponding to all the sections of a part into one single coherent mesh (i.e. two meshes connected on the interfaces between sections from which duplicate nodes have been removed).
  • the 3D Mesh Merging module 7 takes as input a folder containing the 3D meshes for all the sections of a part and outputs one mesh file for the entire part. Because of the previously applied 2D Mesh Modification module 5 and because of the fact that the 3D Meshing module 6 is required not to add any new nodes on the surface mesh, the nodes and elements on the interface between sections are guaranteed to match perfectly.
  • the merging is then done by finding the pairs of duplicate nodes on the interfaces between sections, removing one of the two and renumbering accordingly.
  • Module 1 CAD Disassemble
  • module 8 Mesh Assemble
  • modules 2 Mesh Parameter Setting
  • 3 CAD Split
  • 5 2D Mesh Modification
  • 7 3D Mesh Merging
  • Modules 4 (2D Meshing) and 6 (3D Meshing) allow the opportunity for a high degree of parallelism, since each part that needs to be meshed can be further split (partitioned) into a number of sections.
  • All tasks that need to be executed are queued in a parallel task scheduler which executes them following the chain of dependencies associated with the tasks. For example, a 2D meshing operation for all sections of one part is dependent only on the successful completion of the previous CAD split operation for that part. In other words, as soon as the CAD split operation has finished for one part, the 2D meshing of all resulting sections can begin. In the same way, if the 2D meshing of one section of a part fails, the 2D meshing of all other parts will be aborted and the process will be restarted from module 2, where new meshing parameters will be automatically set.
  • the parallel meshing system described above uses an off-the-shelf serial meshing program to generate 2D and 3D meshes.
  • several meshing codes and meshing algorithms that can be used for this purpose.
  • the current version of the GmshTM mesher can use three 2D meshing algorithms (MeshAdapt, Delaunay and Frontal) and five 3D meshing algorithms (Delaunay, Frontal, Frontal Delaunay, MMG3D and R-tree).
  • MeshAdapt 2D meshing algorithms
  • 3D meshing algorithms Delaunay, Frontal, Frontal Delaunay, MMG3D and R-tree
  • a method of meshing for use in a computer-aided design (CAD) or computer-aided engineering (CAE) system, a CAD domain consisting of a single CAD solid, or one of a plurality of CAD parts in an assembly type CAD model, or one of a plurality of sections of a CAD part in an assembly type CAD model, which method comprises a procedure comprising: carrying out in parallel a plurality of CAD meshing processes so as to generate one or more meshes of the said CAD domain, each CAD meshing process of the said plurality being different from the other meshing processes in the said plurality; determining which of the meshes so generated satisfies one or more preset meshing criteria which are indicative of the quality of the mesh; and selecting for use in a subsequent CAD/CAE process one of the generated meshes which satisfies the said one or more preset meshing criteria.
  • CAD computer-aided design
  • CAE computer-aided engineering
  • the meshing process is more robust as a plurality of different meshing processes are used in parallel for the same task, thereby increasing the probability that one of them will succeed. Moreover, the mesh quality is increased because the most appropriate mesh is selected from multiple candidate meshes.
  • a meshing method embodying the first aspect of the present invention can avoid the need to manually select the appropriate meshing algorithm, avoid the restriction on what meshing algorithm can be used, and avoid an increase in mesh size caused by the fact that all sections of a part need to be meshed at the same resolution.
  • hexahedral elements instead of tetrahedral elements, since the former have much better numerical properties.
  • Tetrahedral meshing can be difficult to automate for complex geometries, so manual intervention is required to create the mesh.
  • Tetrahedral meshing is easier to automate, but is in general used as a substitute for hexahedral meshing, since it is not as good numerically.
  • another element type, prism element may be better than tetrahedral elements but this is dependent on the application. For example, in a CFD application this would depend on the direction of the flow with respect to the mesh.
  • the plurality of meshing processes comprises at least one primary meshing process which generates mesh elements of a first type and at least one additional meshing process which generates mesh elements of a second type different from the first type, and, if the primary meshing process generates a mesh which satisfies the said one or more preset meshing criteria, and the element type of that mesh is suitable for the domain being meshed, for the mesh generated by the primary meshing process to be selected for use in the subsequent CAD/CAE process.
  • the said at least one primary meshing process may generate hexahedral elements.
  • the said at least one or another primary meshing process may generate prism elements.
  • the said at least one additional meshing process may generate tetrahedral elements.
  • the said plurality of meshing processes comprises a first primary meshing process which generates hexahedral elements, a second primary meshing process which generates prism elements and an additional meshing process which generates tetrahedral elements.
  • At least some of the meshing processes in the said plurality may utilise different meshing codes.
  • At least some of the meshing processes in the said plurality may utilise the same meshing codes but different meshing algorithms.
  • the preset meshing criterion, or one of the preset meshing criteria may be whether the element volume, aspect ratio or skewness of each element in the generated mesh fall within predefined value ranges.
  • selecting the mesh for use in a subsequent CAD/CAE process may comprise selecting for use the mesh which has the lowest number of elements.
  • a method embodying the first aspect of the present invention may further comprise, when the CAD domain is one of a plurality of CAD parts in an assembly type CAD model, repeating the procedure for each part in the said plurality.
  • a method embodying the first aspect of the present invention may further comprise, when the CAD domain is one of a plurality of sections of a CAD part in an assembly type CAD model, repeating the procedure for each section of each part in the said plurality.
  • the said plurality of meshing processes comprises at least one primary meshing process which generates mesh elements of a first type and at least one additional meshing process which generates mesh elements of a second type different from the first type
  • the meshes of those sections which share an interface with one or more other sections which have the same mesh element type may be merged at that interface, and for any meshes of sections which share an interface with one or more other sections which have a different mesh element type, constraint conditions may be assigned to one or more selected nodes of elements on each interface between such section meshes, and those sections are processed unmerged in a CAD/CAE solver, using the constraint conditions to treat those sections as if joined at the said selected node(s) between them.
  • Modern Structural Analysis and CFD solvers are capable of internally combining multiple meshes. Examples of open-source solvers which possess such functions are the Structural Analysis solver FrontISTR and the CFD solver Overture.
  • a method for use in a computer-aided design (CAD) or computer-aided engineering (CAE) system after meshes have been generated for sections of a part of an assembly type CAD model but not merged, which method comprises: assigning constraint conditions to one or more selected nodes of elements on each interface between adjacent section meshes of the said part; and processing the unmerged sections in a CAD/CAE solver, using the constraint conditions to treat adjacent sections as if joined at the said selected node(s) on the interface between them.
  • CAD computer-aided design
  • CAE computer-aided engineering
  • Structural Analysis and CFD solvers are capable of internally combining multiple meshes, thus making external mesh merging unnecessary.
  • a method embodying the second aspect of the present invention can decrease the size of the mesh and avoid a reduction in scalability due to the need to merge meshes of sections if such modern solvers, having the capability of internally combining multiple meshes, is used inside each part instead of merging the meshes of the sections.
  • the sections are meshed using a method embodying the first aspect of the present invention.
  • meshing apparatus for use in a computer-aided design (CAD) or computer-aided engineering (CAE) system, which apparatus is configured to mesh a CAD domain consisting of a single CAD solid, or one of a plurality of CAD parts in an assembly type CAD model, or one of a plurality of sections of a CAD part in an assembly type CAD model, by carrying out a procedure comprising: carrying out in parallel a plurality of CAD meshing processes so as to generate one or more meshes of the said CAD domain, each CAD meshing process of the said plurality being different from the other meshing processes in the said plurality; determining which of the meshes so generated satisfies one or more preset meshing criteria which are indicative of the quality of the mesh; and selecting for use in a subsequent CAD/CAE process one of the generated meshes which satisfies the said one or more preset meshing criteria.
  • CAD computer-aided design
  • CAE computer-aided engineering
  • the said plurality of meshing processes may comprise at least one primary meshing process which generates mesh elements of a first type and at least one additional meshing process which generates mesh elements of a second type different from the first type, and, if the primary meshing process generates a mesh which satisfies the said one or more preset meshing criteria, and the element type of that mesh is suitable for the domain being meshed, the mesh generated by the primary meshing process is selected for use in the subsequent CAD/CAE process.
  • the said at least one primary meshing process may generate hexahedral elements.
  • the said at least one or another primary meshing process may generate prism elements.
  • the said at least one additional meshing process may generate tetrahedral elements.
  • the said plurality of meshing processes may comprise a first primary meshing process which generates hexahedral elements, a second primary meshing process which generates prism elements and an additional meshing process which generates tetrahedral elements.
  • At least some of the meshing processes in the said plurality may utilise different meshing codes.
  • At least some of the meshing processes in the said plurality may utilise the same meshing codes but different meshing algorithms.
  • the preset meshing criterion, or one of the preset meshing criteria may be whether the element volume, aspect ratio or skewness of each element in the generated mesh fall within predefined value ranges.
  • selecting the mesh for use in a subsequent CAD/CAE process may comprise selecting for use the mesh which has the lowest number of elements.
  • Apparatus embodying the third aspect of the present invention may be operable, when the CAD domain is one of a plurality of CAD parts in an assembly type CAD model, to repeat the procedure for each part in the said plurality.
  • Apparatus embodying the third aspect of the present invention may be operable, when the CAD domain is one of a plurality of sections of a CAD part in an assembly type CAD model, to repeat the procedure for each section of each part in the said plurality.
  • the said plurality of meshing processes comprises at least one primary meshing process which generates mesh elements of a first type and at least one additional meshing process which generates mesh elements of a second type different from the first type
  • apparatus which is operable, after meshes have been selected for each section, to merge the meshes of those sections which share an interface with one or more other sections which have the same mesh element type at that interface, and for any meshes of sections which share an interface with one or more other sections which have a different mesh element type, to assign constraint conditions to one or more selected nodes of elements on each interface between such section meshes, and to process those sections unmerged in a CAD/CAE solver, using the constraint conditions to treat those sections as if joined at the said selected node(s) between them.
  • apparatus for use in a computer-aided design (CAD) or computer-aided engineering (CAE) system, which apparatus comprises: constraint condition assignment means operable, after meshes have been generated for sections of a part of an assembly type CAD model but not merged, to assign constraint conditions to one or more selected nodes of elements on each interface between adjacent section meshes of the said part; and CAD/CAE solver means connected to receive the unmerged sections and to process the received unmerged sections using the constraint conditions to treat adjacent sections as if joined at the said selected node(s) on the interface between them.
  • CAD computer-aided design
  • CAE computer-aided engineering
  • the sections have been meshed using apparatus embodying the third aspect of the present invention.
  • a computer program which, when run on a computer, causes that computer to carry out a method embodying the first or second aspect of the present invention or to become apparatus embodying the third or fourth aspect of the present invention.
  • different meshing processes should be understood to mean either different meshing codes or instances of the same meshing code using different meshing algorithms.
  • one of the meshing processes could use the SALOME-Hexahedron algorithm which produces hexahedral elements
  • another meshing process could use the SALOME-3D Extrusion meshing algorithm
  • a different meshing process could use the Netgen meshing code which produces tetrahedral elements
  • another meshing process could use Gmsh with MeshAdapt algorithm for the 2D meshing and Frontal algorithm for the 3D meshing (both of which produce tetrahedral elements)
  • a further meshing process could use Gmsh with Frontal algorithm (which produces tetrahedral elements) for both 2D and 3D meshing
  • yet another meshing process could use Gmsh with Delaunay for 2D meshing and MMG3D algorithm for 3D meshing (both of which produce tetrahedral elements).
  • FIG. 3 shows where a meshing method or meshing apparatus embodying the present invention can be utilized in a CAD system comprising an off-the-shelf CAD engine, a plurality of n meshers and a solver.
  • one of the meshers, Mesher 1 generates elements of type A
  • another of the meshers, Mesher B generates elements of type B
  • a further one of the meshers, Mesher n generates elements of type C, where element types A, B and C are different to one another.
  • element type A may be hexahedral elements
  • element type B may be prism elements
  • element type C may be tetrahedral elements.
  • the meshers may all generate tetrahedral elements or may all generate hexahedral elements.
  • Scenario 1 Single CAD file, with no assembly and no CAD splitting
  • Figure 4 depicts the flow of a meshing procedure for the scenario where a 3D mesh is to be created for a CAD domain consisting of a single CAD solid (i.e. the CAD domain is not split into sections).
  • a CAD file describing a CAD domain with a single CAD solid is given as input to a plurality of n meshers, Mesher 1, Mesher 2, ..., Mesher n, which respectively carry out a plurality of n different CAD meshing processes.
  • Mesher 1, Mesher 2, ..., Mesher n which respectively carry out a plurality of n different CAD meshing processes.
  • Mesher 1 could use the Netgen meshing code
  • Mesher 2 could use Gmsh with MeshAdapt algorithm for the 2D meshing and Frontal algorithm for the 3D meshing
  • Mesher 3 could use Gmsh with Frontal algorithm for both 2D and 3D meshing
  • Mesher 4 could use Gmsh with Delaunay for 2D meshing and MMG3D algorithm for 3D meshing, and so on.
  • at least one of the meshers for example Mesher n, uses a meshing process which generates mesh elements of a type which is different to that generated by at least one of the other meshers in the plurality.
  • a meshing process will be referred to as a primary meshing process.
  • the mesh generated by the primary meshing process is of a type preferred over that generated by the other meshing processes, at least in certain circumstances.
  • Mesher n generates hexahedral mesh elements whereas the other meshers generate tetrahedral elements.
  • at least one mesher may use a primary meshing process to generate hexahedral mesh elements, at least another mesher may generate prism elements (which in certain circumstances may be preferred over tetrahedral elements), and at least a further mesher may generate tetrahedral elements.
  • meshing parameters e.g., maximum element size.
  • meshing parameters could be set automatically, for example as a function of default settings, the geometrical properties of the object to be meshed and dynamical runtime information. That is, meshing parameters could be decided independently for each part to be meshed and set using information from three sources:
  • a method embodying the first aspect of the present invention comprises carrying out in parallel a plurality of CAD meshing processes so as to generate one or more meshes of the said CAD domain, each CAD meshing process of the said plurality being different from the other meshing processes in the said plurality, determining which of the meshes so generated satisfies one or more preset meshing criteria which are indicative of the quality of the mesh, and selecting for use in a subsequent CAD/CAE process one of the generated meshes which satisfies the said one or more preset meshing criteria.
  • the plurality of meshing processes is executed in parallel, either on the same multicore computer or on multiple computers connected by a network, until either all the meshing processes have been completed or until a preset timeout is reached.
  • a first preset criterion of mesh quality i.e. a mesh quality metric
  • the mesh quality metric could be any one or more of those known in the art (e.g., element volume, aspect ratio, skewness).
  • selection of the mesh may be based on the number of elements in the generated mesh, that is for two or more meshes of similar quality, the mesh with the lowest number of elements is chosen. If no mesh can be successfully created, or no mesh from the successfully created meshes meets the minimum quality requirements, the meshing operation is considered to have failed.
  • Step 5 initial values for each mesher are set in Step 1 and the meshing operation is performed in Step 2 as described with reference to Figure 4 . If the meshing operation fails, the process returns to Step 1 where new parameters values are chosen (e.g., smaller maximum element size) and the process continues.
  • new parameters values e.g., smaller maximum element size
  • the meshing process is made more robust whilst potentially increasing the quality of the output mesh, since even if one meshing process cannot successfully create a mesh, as long as a mesh can be successfully created by a different meshing process, the meshing process ends in success.
  • the plurality of meshers can include some less robust meshers which provide higher quality meshes, because the process can fall back on a lower quality mesh provided by a more robust mesher in the plurality if the less robust meshers fail.
  • a user does not need to spend time and effort choosing the best mesher for the job.
  • the plurality of meshing processes comprises at least one primary meshing process which generates mesh elements of a first type and at least one additional meshing process which generates mesh elements of a second type different from the first type. If the primary meshing process (for example one producing hexahedral or prism type elements) generates a mesh which satisfies the said one or more preset meshing criteria, and the element type of that mesh is suitable for the domain being meshed, the mesh generated by the primary meshing process is selected for use in the subsequent CAD/CAE process.
  • the primary meshing process for example one producing hexahedral or prism type elements
  • the mesh generated by the primary meshing process is selected above others as the mesh to be used in the subsequent CAD/CAE process even if one or more of the other meshes, which have not been generated by the primary meshing process, satisfy the meshing criteria more closely.
  • the possibility of obtaining a mesh having elements of the different type is provided whilst retaining the robustness of the meshing method described above which uses a plurality of meshing processes generating elements all of the same type.
  • the process described for this scenario makes use of the process described in Scenario 1 and is described in Figure 6 .
  • the input CAD model of assembly type is first disassembled in Step 1. Following the disassembly process, a multitude of CAD files, equal in number to the number of parts, is generated. Each of these files contains a CAD domain consisting of a single solid. Following disassembly, the process described in Figure 5 is applied to all parts. That is, a plurality of different meshing processes are executed in parallel on each part and the best mesh (which would be that generated by a primary meshing process, if used and successful) is chosen for each part. If and when all parts have been successfully meshed, the assembly mesh is created by combining the meshes for the individual parts (in Step 4).
  • Firstly parts are split into sections, for example in a manner similar to that described in EP12173469.3 .
  • this may be done using a first recursive bisection method where, if the volume of a first section exceeds the maximum permitted volume, the part is considered to be the first section and the following steps are carried out: (a) determining the principal axis of inertia A of the section; (b) determining the centre of gravity of the section; (c) defining first and second solid boxes whose intersection is one face that passes through the centre of gravity and is perpendicular to A and whose union is the entire bounding box of the section; (d) performing a CAD Boolean operation of the section and the first box, and a CAD Boolean operation of the section and the second box, to obtain respective intermediate sections; and (e) if the volume of a section obtained in step (d) exceeds the maximum permitted volume, repeating steps (b) to (d) for each of the sections obtained in step (d) until final sections
  • An alternative recursive bisection method comprises the steps of: (a) determining (i) the number of split points Nx in an X direction, (ii) the number of split points Ny in a Y direction and (iii) the number of split points Nz in a Z direction, where the X, Y and Z directions are mutually parallel and (Nx+1)(Ny+1)(Nz+1) ⁇ DN; (b) recursively bisecting the part in the X direction until (Nx+1) sections are obtained; (c) for all sections obtained in step (b), recursively bisecting the sections in the Y direction until (Nx+1)(Ny+1) sections are obtained; and (d) for all sections obtained in step (c), recursively bisecting the sections in the Z direction until (Nx+1)(Ny+1)(Nz+1) sections are obtained.
  • Modern Structural Analysis and CFD solvers such as FrontISTR and Overture for example, have the capability to internally treat respective meshes for multiple sections as they would parts of a single solid. This capability requires the user to specify a list of nodes of elements on the interface between adjacent section meshes.
  • the solver then creates an internal map of nodes that must be kept “glued” together and uses special numerical techniques, such as the Multi-Point Constraint (MPC) method, to enforce this constraint..
  • MPC Multi-Point Constraint
  • the mesh assembly module of the present invention makes direct use of this functionality of such solvers as an efficient alternative to directly merging (knitting) the mesh sections together into a coherent part mesh.
  • one of the plurality of meshing processes is a primary meshing process, that is a meshing process which generates elements of a different type to other processes in the plurality, so one or more of the meshes selected to form the part being meshed may have elements of the different type.
  • the meshing method for this scenario is described in Figure 9 , and is like that of Figure 7 except in that, after meshes have been selected for each section, the meshes of those sections which share an interface with one or more other sections which have the same mesh element type are merged at that interface, and for any meshes of sections which share an interface with one or more other sections which have a different mesh element type, constraint conditions are assigned to one or more selected nodes of elements on each interface between such section meshes, and those sections are processed unmerged in a CAD/CAE solver (such as described with reference to Scenario 3A), using the constraint conditions to treat those sections as if joined at the said selected node(s) between them.
  • CAD/CAE solver such as described with reference to Scenario 3A
  • Embodiments of the present invention may be implemented in hardware, or as software modules running on one or more processors, or on a combination thereof. That is, those skilled in the art will appreciate that a microprocessor or digital signal processor (DSP) may be used in practice to implement some or all of the functionality described above.
  • DSP digital signal processor
  • the invention may also be embodied as one or more device or apparatus programs (e.g. computer programs and computer program products) for carrying out part or all of the methods described herein.
  • Such programs embodying the present invention may be stored on computer-readable media, or could, for example, be in the form of one or more signals.
  • signals may be data signals downloadable from an Internet website, or provided on a carrier signal, or in any other form.

Landscapes

  • Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • Theoretical Computer Science (AREA)
  • Geometry (AREA)
  • General Physics & Mathematics (AREA)
  • Software Systems (AREA)
  • Computer Hardware Design (AREA)
  • Evolutionary Computation (AREA)
  • General Engineering & Computer Science (AREA)
  • Computer Graphics (AREA)
  • Management, Administration, Business Operations System, And Electronic Commerce (AREA)
  • Architecture (AREA)
EP13173430.3A 2013-06-24 2013-06-24 Maillage parallèle découplé pour conception assistée par ordinateur Withdrawn EP2819097A1 (fr)

Priority Applications (3)

Application Number Priority Date Filing Date Title
EP13173430.3A EP2819097A1 (fr) 2013-06-24 2013-06-24 Maillage parallèle découplé pour conception assistée par ordinateur
US14/305,669 US20140379308A1 (en) 2013-06-24 2014-06-16 Decoupled parallel meshing in computer aided design
JP2014124181A JP2015007976A (ja) 2013-06-24 2014-06-17 コンピュータ支援設計における減結合並列メッシュ化

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
EP13173430.3A EP2819097A1 (fr) 2013-06-24 2013-06-24 Maillage parallèle découplé pour conception assistée par ordinateur

Publications (1)

Publication Number Publication Date
EP2819097A1 true EP2819097A1 (fr) 2014-12-31

Family

ID=48672461

Family Applications (1)

Application Number Title Priority Date Filing Date
EP13173430.3A Withdrawn EP2819097A1 (fr) 2013-06-24 2013-06-24 Maillage parallèle découplé pour conception assistée par ordinateur

Country Status (3)

Country Link
US (1) US20140379308A1 (fr)
EP (1) EP2819097A1 (fr)
JP (1) JP2015007976A (fr)

Families Citing this family (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10121279B1 (en) * 2014-07-14 2018-11-06 Ansys, Inc. Systems and methods for generating a mesh
US11046009B2 (en) * 2018-03-07 2021-06-29 New York University System and method for malware detection in additive manufactured parts
CN109271726A (zh) * 2018-09-05 2019-01-25 重庆创速工业有限公司 一种工作镶件的设计实现方法
US10977549B2 (en) * 2019-02-14 2021-04-13 Adobe Inc. Object animation using generative neural networks
CN110334380A (zh) * 2019-05-08 2019-10-15 北京伏羲车联信息科技有限公司 汽车基础数字模型构建方法及装置
CN111125949A (zh) * 2019-12-06 2020-05-08 北京科技大学 一种有限元分析的大规模并行网格划分系统及方法
CN115292853B (zh) * 2022-09-30 2022-12-20 北京科技大学 一种型钢轧制仿真分析工程中刚性轧辊网格划分方法

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20070097117A1 (en) * 2005-10-27 2007-05-03 Coretech System Co., Ltd. Automated mesh creation method for injection molding flow simulation

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH0697020A (ja) * 1992-09-14 1994-04-08 Hitachi Ltd プロセスシミュレータ
JP3692460B2 (ja) * 2003-08-07 2005-09-07 学校法人慶應義塾 混合格子型解適合格子法を用いた数値解析装置
US20070011646A1 (en) * 2005-06-24 2007-01-11 College Of William And Mary Parallel Decoupled Mesh Generation
JP4999522B2 (ja) * 2007-04-06 2012-08-15 株式会社日立製作所 解析メッシュ生成装置
JP4468409B2 (ja) * 2007-06-11 2010-05-26 株式会社日立製作所 解析用メッシュ生成装置

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20070097117A1 (en) * 2005-10-27 2007-05-03 Coretech System Co., Ltd. Automated mesh creation method for injection molding flow simulation

Non-Patent Citations (5)

* Cited by examiner, † Cited by third party
Title
BOUSSUGE F ET AL: "Generating assembly models for adaptive simulations", ADAPTIVE MODELING AND SIMULATION 2013 - PROCEEDINGS OF THE 6TH INTERNATIONAL CONFERENCE ON ADAPTIVE MODELING AND SIMULATION, ADMOS 2013 - ADAPTIVE MODELING AND SIMULATION 2013 - PROCEEDINGS OF THE 6TH INTERNATIONAL CONFERENCE ON ADAPTIVE MODELING AND, 5 June 2013 (2013-06-05), pages 108 - 118, XP002719951 *
CHOW P ET AL: "A natural extension of the conventional finite volume method into polygonal unstructured meshes for CFD application", APPLIED MATHEMATICAL MODELLING ELSEVIER USA, vol. 20, no. 2, February 1996 (1996-02-01), pages 170 - 183, XP002719953, ISSN: 0307-904X *
GEORGESCU S ET AL: "Software design for decoupled parallel meshing of CAD models", 2013 5TH INTERNATIONAL WORKSHOP ON SOFTWARE ENGINEERING FOR COMPUTATIONAL SCIENCE AND ENGINEERING (SE-CSE) IEEE PISCATAWAY, NJ, USA, May 2013 (2013-05-01), pages 24 - 31, XP002719950, ISBN: 978-1-4673-3073-2 *
LOHNER R: "Automatic unstructured grid generators", FINITE ELEMENTS IN ANALYSIS AND DESIGN, ELSEVIER, AMSTERDAM, NL, vol. 25, no. 1-2, 20 March 1997 (1997-03-20), pages 111 - 134, XP002693578, ISSN: 0168-874X *
QIAN J ET AL: "Sharp feature preservation in octree-based hexahedral mesh generation for CAD assembly models", PROCEEDINGS OF THE 19TH INTERNATIONAL MESHING ROUNDTABLE, IMR 2010 - PROCEEDINGS OF THE 19TH INTERNATIONAL MESHING ROUNDTABLE, IMR 2010 2010 SPRINGER PUBLISHING COMPANY USA, 2010, pages 243 - 262, XP002719952, DOI: 10.1007/978-3-642-15414-0_15 *

Also Published As

Publication number Publication date
JP2015007976A (ja) 2015-01-15
US20140379308A1 (en) 2014-12-25

Similar Documents

Publication Publication Date Title
US9990445B2 (en) Decoupled parallel meshing in computer aided design
US20140379308A1 (en) Decoupled parallel meshing in computer aided design
US10496704B2 (en) Quantifying consistency of a system architecture by comparing analyses of property graph data models representing different versions of the system architecture
US8041744B2 (en) Computer-aided modeling
US8421798B2 (en) Method of computer-aided design of edges connecting faces of a modeled object
CN110167756B (zh) 用于通过增材制造构造实体物体的基于构建方向的划分
US20150221130A1 (en) Mesh quality improvement in computer aided engineering
US10430462B2 (en) Systems and methods for generating a property graph data model representing a system architecture
US10459929B2 (en) Quantifying robustness of a system architecture by analyzing a property graph data model representing the system architecture
US10430463B2 (en) Systems and methods for generating a weighted property graph data model representing a system architecture
US11281491B2 (en) Execution of services concurrently
Lianos et al. Manufacturability assessment and design for AM
JP2009181446A (ja) プログラム生成装置およびブロック線図生成装置
JP6451997B2 (ja) 演算実行装置、方法、及びプログラム
JP7131277B2 (ja) システム移行支援装置、システム移行支援方法及びプログラム
KR102131305B1 (ko) 충돌 사건의 수치상 시뮬레이션에서 저차 및 2차 유한 요소들을 수반하는 접촉면 정의 생성
US10546076B2 (en) Analytical consistent sensitivities for external intervening between two sequential equilibriums
JP2015210827A (ja) 周波数依存材料特性を有する製品の周波数領域構造解析
JP2008134943A (ja) 解析モデル作成方法、cadシステム、及び解析モデル作成プログラム
CN111209302A (zh) 数据库访问的并行执行方法及装置
KR101896112B1 (ko) 자동차 부품의 최적설계를 위한 cad 및 cae의 통합 방법
Georgescu et al. Software design for decoupled parallel meshing of CAD models
KR102329789B1 (ko) 구조물 평가 방법
Böhm et al. On the development of strategies for an efficient semi-automated hex-meshing process of complex jet engine component assemblies
CN114207594B (zh) 计算机程序系统的静态分析和运行时分析

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

17P Request for examination filed

Effective date: 20140721

AK Designated contracting states

Kind code of ref document: A1

Designated state(s): AL AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HR HU IE IS IT LI LT LU LV MC MK MT NL NO PL PT RO RS SE SI SK SM TR

AX Request for extension of the european patent

Extension state: BA ME

17Q First examination report despatched

Effective date: 20150619

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE APPLICATION HAS BEEN WITHDRAWN

18W Application withdrawn

Effective date: 20180608