AutoCAD Inventor :: ILogic To Generate Models Of Units

Jul 5, 2012

So what I am doing is using iLogic to generate models of units customers submit orders for. Using a form you select your components/options and it auto generates the model itself. The problem I am having is when it comes to saving out that file. Once it is saved out I obviously don't want it to change it any way so that way I know exactly what that customer was shipped. I am utilizing skeletons in these assemblies and sub assemblies. A problem I did notice is however I save my main "template" if i re-open a customer generated order. The skeletons shift back to whatever state is in the main template hence moving components to places they shouldn't be and creating a mess. Is there a way to save out or another way to avoid this issue.

View 9 Replies


ADVERTISEMENT

AutoCAD Inventor :: Ilogic Generate Parts List?

Oct 4, 2012

I curently have a rule that generates a part list automatically in a drawing. the problem is that I want the rule to be continuisly running but it keeps generating 2,3,5... parts lists. I need an if statment to check if a parts list already exists.
 
iLogicVb.UpdateWhenDone = True On Error Resume Next ' Set a reference to the drawing document. ' This assumes a drawing document is active. Dim oDrawDoc As DrawingDocument oDrawDoc = ThisApplication.ActiveDocument 'Set a reference to the

[Code].....

View 2 Replies View Related

AutoCAD Inventor :: ILogic - Generate Derived Part

Sep 12, 2012

I have created a very simple yet effective  tool for starting a new manifold assembly using iLogic. The rules and windows essentially fill out the size of the block, material type, description, project and part number.

Below I have a hydraulic manifold I have designed and from that I created the final .ipt of the internals. The way I did this (which may not be the best method) was to create a second .ipt matching the LxWxH of the original manifold, next I inserted and aligned both into another .iam file, lastly I derived a third .ipt from a subtraction resulting in the third image below. This is a bit time consuming to create, but has been very useful in error checking our designs. I would like to see if iLogic is capable of allowing me to automate this so we can easily create these internal flowpath .ipt's for every manifold we design.

View 8 Replies View Related

AutoCAD Inventor :: Generate IPart Member Files In ILogic?

Aug 8, 2011

I am looking to generate ipart members for each ipart as I activate it?

View 2 Replies View Related

AutoCAD Inventor :: ILogic Rule To Change All Units?

Nov 25, 2012

I am after a rule to change the unit type of all .ipts from cm to mm.

This has to go down to all levels in hierarchy  but only change .ipt files

View 3 Replies View Related

AutoCAD Inventor :: Change Document Units Using ILogic Rules?

Aug 23, 2012

How do I change the document units using iLogic rules.

View 3 Replies View Related

AutoCAD Inventor :: How To Write-out Parameters In Correct Units In ILogic

Aug 14, 2013

I have this little iLogic snippet that writes out the name and value of all parameters in active document.

doc = ThisDoc.Documentparams = doc.ComponentDefinition.Parametersnames = New List(Of String)values = New List(Of String)For Each param In paramsIf Len(param.Name)>4 Thennames.Add(param.Name)values.Add(param.Value.ToString)ElseEnd IfNextMultiValue.List("ParamsList") = namesMultiValue.List("ParamsValues") = valuesGoExcel.CellValues("COVER.DEFAULT.PARAMS.xlsx", "Sheet1", "A2", "A400") = MultiValue.List("ParamsList")GoExcel.CellValues("COVER.DEFAULT.PARAMS.xlsx", "Sheet1", "B2", "B400") = MultiValue.List("ParamsValues")GoExcel.SaveGoExcel.Close

 The problem is it ignores the parameter's units and assumes cm for length and rad for angular. I need another nested IF - Then that says: 

IF param.Values.'UnitType' is "in"  THEN
param.Value = param.Value/2.54
Else If   param.Values.'UnitType' is "deg"  THEN
param.Value = param.Value*360/2/3.14159
End If

I just do not know the syntax or proper method.

View 1 Replies View Related

AutoCAD Inventor :: ILogic Rule To Switch Units In Drawing Between Imperial To Metric

Apr 22, 2013

I would like a few rules to be triggered once the new drawing template is opened.select sheet size, I have been given a rule that already works, basically the rule selects a border and title block based on sheet size selection.

trigger = iTrigger0iLogicForm.Show("BorderChange", FormMode.Modal)iLogicVb.UpdateWhenDone = TrueIf Parameter("BorderSize") = "A0" Then ActiveSheet.ChangeSize("A0", MoveBorderItems := True)ActiveSheet.TitleBlock = "MJTD A0"ActiveSheet.Border = "MJTD A0.
[code]....

I would also like a rule to let me annotate in metric or imperial. this is where I require assistance. I am not sure the best way to achieve this rule. My programming is very basic.I have found some links here, but I can't seem to make them work in the drawing environment. Also these rules seems to change the units of an already created .ipt.

Rule #1 Link

Rule #2 Link

I am just looking for a rule to select either .in or mm from the styles library(i think) , before I even place a base view. Regardless of the original units used to make the model.

View 2 Replies View Related

AutoCAD Inventor :: ILogic Rule - Change Linear Units In Active Standard

Jul 16, 2013

Within an IDW file, you can go to the Styles Editor, then click on a standard.  On the General tab, there's a drop down for the unit of length.

Provide the code so that I can change this setting from Inches to mm with an iLogic rule?

View 2 Replies View Related

AutoCAD Inventor :: Developing Casting Models Into Machining Models

Oct 6, 2011

We are looking for a workflow example of developing casting models into machining models.

Typically our castings are made from different materials (Fig-1) and then machining (Fig-2) are created from these castings.

Is creating the casting as an iPart (with different materials) and then deriving the machining from the casting the proper method?

Doing it this way seems to force us into making a machining for each casting material instead of just one machining that is an iPart. How should this be set-up for BOM purposes and for use with Vault (Base Version)?

View 3 Replies View Related

AutoCAD Inventor :: IPart Workflow And Vault - Generate All Or Generate Only New

Sep 4, 2012

We are using iPart - iAssembly workflow with Inv-2013 and  Vault Basic 2013

My question is related to released state of iparts. Currently we are generating/ releasing

all the iparts when new member is added in order to manintain the parent child version relationship

Example  : say i have a ipart 41020.ipt and i have members 41020- 001 ~ 008 . I check out the parent

from Vault and add 009 member to it.

Question :

Do I have to generate all and check those in to maintain the version relationship between the child and parent inside

Vault 2013 ?
 Or
Only generating 009 will maintain version relationship inside Vault 2013

Config :: Intel (R) Xeon (R) CPU E31245 @ 3.30 GHz, 16.0 GB, 64bit win7
Inventor 2013 and Vault Basic 2013

View 4 Replies View Related

AutoCAD Inventor :: Close ILogic Form With VBA Or ILogic Rule

Aug 19, 2013

how can I close an iLogic Form from either an iLogic Rule, or a VBA Rule (VBA is the Preferred method)?

View 5 Replies View Related

AutoCAD Inventor :: Cotter Pin Models

Nov 1, 2011

what's everyone using for cotter pin models:
1. content center pre-bent model 
or   
 2. the one from CBLISS that’s straight, but looks more accurate

View 1 Replies View Related

AutoCAD Inventor :: Compare Two 3D Models?

Jun 6, 2012

How to compare two 3d models in Inventor or any of autodesk modules to see the changes?

View 7 Replies View Related

AutoCAD Inventor :: Red Circle Symbol On Models

Nov 19, 2012

We have a user that has a mysterious red cicle symbol with a slash through it showing up on a draft in a model. I've attached a screen capture of it. The drawing isn't showing any other errors but this symbol won't go away.

View 7 Replies View Related

AutoCAD Inventor :: Models That Have Optional Materials?

Jul 30, 2012

I am lookng for a way to allow multiple material selections for a drawing/model

We have components that avaialable in both 304 and 316. We have seperated stock codes for each of the selections what I would like to do is to come up with a way that I don't need multiple models of these features. The deisgns are virtually the same except for the material change.

In previous cad systems I used a tabled system in the model that would allow you to vary paramters such as Iproperties or even dimensions in one model.

This elimated duplication of work includeing double maintenance for the models?

View 4 Replies View Related

AutoCAD Inventor :: Superimpose Two Different Models In Drawing?

Mar 11, 2013

I have two different models that I want to place on top of one another in a drawing. One is a before machining and the other is after. I would like to be able to show one model with a different line type on the drawing and have it superimposed on the other drawing so that somone can see them both and the difference between them. I looked at the Positional Representations feature and it does not seem to do this.

I am using Inventor 2013.

View 9 Replies View Related

AutoCAD Inventor :: Standard Part Models

Oct 6, 2004

i am looking for a resource for models for standard parts....in this particular case a micrometer or something that i can through in an assembly to give a sense of scale.

View 3 Replies View Related

AutoCAD Inventor :: Inventor Hole Table - Mixed Units - Description Cell

Dec 18, 2013

Is there a way in the description field of an Inventor hole table to have mixed units?   Some hole sizes at fractions, some at 2 plc, and others at 3 places.

Inventor Pro 2013 or 14

View 1 Replies View Related

AutoCAD Inventor :: Find Models For Bar Size Channels

Sep 6, 2007

where I could find models for Bar Size Channels. I can't find any in Content center, CBliss, or MFG Community member files.

View 2 Replies View Related

AutoCAD Inventor :: Cannot Get Model Sketches On All Models In Drawing?

Nov 26, 2013

I am making a control console with a bunch of plastic tags on my pilot devices. I use the sketch text tool to write the label on each tags.

When comes the time to make my drawing, I get my model sketch and they show on my 2D, no problem.

Well today, it seems Inventor 2014 just gave up on giving me my sketches. Here is the console view of of the lid with the tag texts showing:

Now let's go over the second lid on the same plan and get my model sketch to see the rest of my text.

Click on it and ....

Nothing! still no text.

Windows 7 Ultimate 64-bit SP1
Intel Core i7-4930MX CPU @ 3.00GHz
32.0GB Dual-Channel DDR3 @1600MHz
NVIDIA GeForce GTX 780M 4GB Ram
240GB SSD/500GB HDD
Autodesk Product Design Suite Premium 2014

View 6 Replies View Related

AutoCAD Inventor :: Share 3D Models With Mac And Linux Users

Feb 6, 2013

We are using Autodesk Inventor for our 3D modelling and we are working together with a group of scientists.

Those people would like to see our models, rotate them, take measurements, change the visibility of parts or subassemblies and maybe even make cross sections.

It works quite well with the Design Review program, but unfortunately our scientists mostly use Mac OS or Linux. Running Design Review under a windows emulation is not an option for our big models.

View 5 Replies View Related

AutoCAD Inventor :: Professional 2013 - Lagging With Big Models

Aug 29, 2013

At work we have recently upgraded to Inventor 2013 Pro, Although Inventor isnt the most widely used program in the company so its hard to find time to do some set up and get it going smooth. My problem is that i am working on a large process plant all done in inventor and the file is quite large. It takes along time to load and is really laggy when inside the model. Now the model is based in my local office's server my question is if i was using Vault would it keep a local copy on my C:// rather than trying to refresh all parts from ther server. If it is a matter that when working with large files using Vault is the better option than i will need to take some advantages

View 3 Replies View Related

AutoCAD Inventor :: How To Get Solid Models Of Standard Parts

Jan 8, 2013

Where to get solid models of the standard parts uned in the first robotics competition, which has jast begun? Seems the parts are available in the prt format, but my IV2013 will not open them.

View 1 Replies View Related

AutoCAD Inventor :: Parts List In Assembly Models

Nov 7, 2013

I am just having a flashback to another software, but is it possible to insert a parts list into an assembly model?  For those of us that want and need to manipulate it within the assembly model without having to create a drawing?

Inventor Suite 2012
Windows 7 Professional
Intel (R) Xeon (R) CPU 3.47 GHz
12.0 GB Memory, 64 bit OS

View 7 Replies View Related

AutoCAD Inventor :: DimFactor - Converting Models To Drawings

Dec 31, 2013

Often i take 3D models and lay them out flat in Sheet Metal.  Take the flat layout and convert it to DXF in AutoCAD.  I recently came across an issue i haven't seen before and am confused as to how it occurred.  I dimension the blanks in Inventor since Inventor is much more user friendly then AutoCAD as far as dimensioning goes.  Somehow my DIMFactor was switched to .8 in AutoCAD which made my model scaled to 1.25 and therefore incorrect.  I have no clue how i switched my DIMFactor to .8 in Autocad.

View 5 Replies View Related

AutoCAD Inventor :: Possible To Overlay Design Views From Different Models

Oct 4, 2011

My drawing has two design views, an old and new. They need to align perfectly, superimposed; is there a way move DV's, align them more than the Horiz/Vert./In Pos. currently available?  How about make a DV Grounded or Fixed?

View 1 Replies View Related

AutoCAD Inventor :: Can't Export Enclosure Models From RiCAD

Nov 20, 2013

Use RiCAD-3D 3.2? I have Inventor 2013 installed and can't export encloure models from RiCAD to Inventor format.I turned on Inventor 2013 before using RiCAD-3D.

RiCAD-3D gives an error message of "Error occurred during export (CAD system should be started up.)!".

View 3 Replies View Related

AutoCAD Inventor :: Models Of Standard Bottle Threads?

Jan 6, 2012

I'm working on some bottle concepts and I have a need to model standard plastic bottle threads. These threads are designated by a diameter in mm and how many threads are on the bottle. Example: 33-400  The 33 is the diameter and 400 refers to a single turn of the cap. Manufacturers like Aptar make bottle tops of various types to fit this spec. I happen to be looking at dispensing lids (think Heinz Ketchup bottle). While I've found specs for Major diameter, Minor diameter and TPI, I have found precious little that describes the thread shape itself. I've tried to reverse engineer a sample thread from... you guessed it.. a Heinz Ketchup bottle. I feel that my venier caliper and micrometer are not doing this effort justice. 

Looking for DWG file or Inventor model of the thread profile? 

I'm using the coil command to create the thread on the bottle neck. It works okay. An issue arises with the thread termination. The threads on the bottle itself "chamfer" into the bottle neck. While I don't think I can do this with the coil command itself, how to create the "lead-in" for the plastic thread.

View 8 Replies View Related

AutoCAD Inventor :: 3D Models Of Roller Chain Sprockets?

Jan 15, 2013

Any good place to get 3d models of roller chain sprockets? I've been looking for a while now but i can't find anything that provides the variety or accuracy i need.

View 9 Replies View Related

AutoCAD Inventor :: Generate Shrinkwrap Of An IAM

Jul 10, 2013

is it possible to do something like this but to create an shrinkwrap of an IAM and save it as IPT?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved