• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

automatic parts

  • Thread starter Thread starter Davidex10
  • Start date Start date

Davidex10

Guest
good morning I would like to know if it is possible to mark in a corner of the sheet (using the name of the file) automatically inventor at the time of the export of the sheet in dxf. if it is a feasible thing someone can tell me how to do
Thank you.
 
a quick idea:
1) create a text user parameter with a chosen name (e.g. filename). attention, you must first go into flat model mode and then add this user parameter: the parameters between bent model and flat model change, almost two totally different models (never noticed before)
2) with some ilogic code line (see below) compile the variable with the file name;
3) in flat model environment add a sketch with text connected to the boundary variable (unfortunately in sketch environment not you can I find the way to point directly to iproperties)
4) insert a swing processing in flat model environment
5) Configure dxf export so that you see also the processing that do not cut all the solid
Code:
dim partdoc as partdocument = thisdoc.document
dim sheetdef as sheetmetalcomponentdefinition = partdoc.componentdefinition
dim flat = sheetdef.flatpattern
dim params = flat.parameters
dim param_nomefile = params("nomefile")
param_nomefile.value = thisdoc.filename(false)
inventorvb.documentupdate()
I did a couple of quick tests, it seems to me to work, for a general use it is a possible starting point.
There are no error control or other sophisticated things so eye.
 
but does the nesting software for laser cutting used in the company not have the automatic function for marking?
 
but does the nesting software for laser cutting used in the company not have the automatic function for marking?
from what the laserista told me no (we use lantek 2020) if you know otherwise. . Tell me how thank you
 
from what the laserista told me no (we use lantek 2020) if you know otherwise. . Tell me how thank you
in my past I used some different software for nesting and all had this option, if it is not by default you can contact the software house and ask for information. the marking on the pieces of the code would always be better to manage it to the nesting software as the font but above all the logic of the text path is optimized to have a more continuous path possible without interruptions speeding the processing and heating less the piece. managing this operation directly on the nesting the operator could decide the location of the text, the font size or decide any equal pieces to mark or other options.
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
Back
Top