AutoCAD Inventor :: Adding Participants To A Feature Using ILogic

Nov 2, 2011

I have an assembly with a pattern in it, the number of instances of the patterned part increases based on an overall dimension input by the user. It requires a cut extrusion at a specific point, regardless of which instance of the pattern is affected. Hence  I need a way of adding all instances of the patterned part as a participant of the feature. How would I go about this?

View 2 Replies


ADVERTISEMENT

AutoCAD Inventor :: ILogic - Drawing Feature Suppression

Jul 23, 2012

I am looking to use iLogic to create feature suppression in individual drawing views, i.e for simplicity, in view 1 part has a hole in view 2 part does not have a hole it has been suppressed

I am aware this can be done with iParts but im trying to avoid using iparts.

View 1 Replies View Related

AutoCAD Inventor :: Suppression Of Hole Feature With VBA Instead Of ILogic

Feb 7, 2012

In ilogic it's easy to suppress features like holes, but I cannot combine iparts with Ilogic, so I try the same in VBA, but I don't know the way to do it

Is there some existing sample code like this ilogic one for VBA?:

if Dimension_A < 50 Then

Feature.IsActive("Hole1") = false 

End if 

View 4 Replies View Related

AutoCAD Inventor :: Add Thread Feature To A Part Using ILogic

Dec 27, 2012

Possible to add a thread feature to a part using iLogic.

Basically in the iLogic form if the user selects "Threaded Rod" the existing Extrusion is updated to reflect a cylinder with a length and diameter specified by the user and then I need to have a Thread Added to the cylinder.

Computer Specs:
Windows 7 (64 Bit) Pro. SP1, Inventor 2014 Pro, 3D Connexion SpaceNavigator (Driver 3.15.2)
Motherboard: ASUS Rampage IV Extreme x79 Socket 2011
Processor: Intel Core i7 Six Core Sandy Bridge-E 3.2GHz OCed to 4.7GHz (Under Water)
RAM: G.Skill Ripjaw Z-Series 32 gig quad channel of RAM 1800MHz OCed to 2133MHz
Video Card: 2x Nvidia Geforce GTX 770 (Running Six (6) Monitors)
Monitors: [Primary = 2x 24in HD WS][Secondary = 2x 22in HD WS][Tertiary = 2x 19in FS]
Primary Hard Drive: OCZ Vertex IV 256 GB Solid State Drive
Secondary Hard Drive: OCZ Vertex III 120 GB Solid State Drive

View 1 Replies View Related

AutoCAD Inventor :: Text Emboss Feature Does Not Regenerate (iLogic)

Jul 21, 2013

I amrying to create embedding of a text entered through dialog box. The sketch regenerates fine but the Emboss doesn't. Cannot figure it out, tried a lot of different approaches...the text has to be configured this way  - need to control it's height.

View 2 Replies View Related

AutoCAD Inventor :: Adding Final Feature To Design

Sep 17, 2013

I need to finish the design for my crate that I'm going to build. It's a personal project, and I already finished the whole box, but I have a big issue. I need to add a lock, and I've tried looking for some but I have not found a suitable design or lock for the box.

I might have to redesign it slightly if a hinge is going to be added, but I think the only proper way of locking it is putting 4 locks on the 4 sides at the top of the crate. The top and bottom of the box are 2 separate parts that are the same.

View 1 Replies View Related

AutoCAD Inventor :: Adding Feature Control Frames To Dimension

Sep 10, 2008

I can add Feature Control Frames in a Drawing Curve but i can't do it in General dimension. How I can add Feature Control .
Frames in General Dimension.

View 6 Replies View Related

AutoCAD Inventor :: Can't Get COG Of Single Part Inside Assembly Using Default Feature Of ILogic

Jul 10, 2012

can't get the COG of a single part inside an assembly using the default feature of iLogic:

centerPt=iProperties.CenterOfGravityOfComponent("part1:1")

Wikihelp states that it's possible to get the COG of a part within an assembly.It doesn't seem to work anytime getting an error on some missing included references .do I need a Sub-Rule inside the single part?

View 2 Replies View Related

AutoCAD Inventor :: ILogic To Change Feature Occurrence Upon Opening Part By User

Jul 9, 2013

I downloaded a model off a website, it is, (excuse my electrical background ignorance) a jumper for terminal blocks.Our electricians use these and cut them down to size as needed.

Is there a way to use iLogic and a form or message box, to prompt upon opening the part as to how many jumpers are needed for the current assembly> It comes stock with 10, but they sometimes only use 2, 3 4 etc. etc..

I didn't model the part, but I can if it will make the rule easier to write.My idea I suppose was to have the part modeled with 2 jumpers and then use ilogic to create more if necessary.

View 4 Replies View Related

AutoCAD Inventor :: Adding ILogic Rule Using API

Oct 5, 2011

I've caught glimpses of how to do this (For instance, this plugin (Inventor LinkParameters)  [URL]...... when trying to actually find information on any documentation of how to get from point A to point B. I can't seem to find anything about ilogic automation / rule creation / ilogic in general, in the object browser at all. 

I know code like this exists

Option ExplicitSub RuniLogicRule()Dim iLogicAuto As ObjectSet iLogicAuto = GetiLogicAddin(ThisApplication)If (iLogicAuto Is Nothing) Then Exit SubDim doc As DocumentSet doc = ThisApplication.ActiveDocumentDim ruleName As StringruleName = "Rule0"Dim rule As ObjectSet rule = iLogicAuto.GetRule(doc, "Rule0")If (rule Is Nothing) Then Call MsgBox("No rule named " & ruleName & " was found in the [code].......
 
(and even fixed the error it gave me due to the original code leaving something out) , but any info on the GetRule method is. 

View 3 Replies View Related

AutoCAD Inventor :: Adding Custom Iproperties With ILogic?

Nov 2, 2010

Is it possible to automatically add custom iproperties using iLogic?

I have a rule thats adds text to a propery, but when I run the rule in an old partfile i get the error:

"Can't find a property named DrawingNo"

Is there something like:

"Create iProperties.Value("Custom", "DrawingNo")"?

View 3 Replies View Related

AutoCAD Inventor :: Adding New Members To IPart By ILogic Rule

Apr 1, 2013

I’m trying to make an iLogic rule that creates a new row in the iPart  table (new member). Is it possible?

View 2 Replies View Related

AutoCAD Inventor :: Adding ILogic Rule To Event Trigger With VBA

Jul 11, 2013

How to get the API to add an iLogic Event Trigger but I cannot find the exact code on how to do it.

Is there a Simple way to add an Ilogic Rule (External or Internal) to an event trigger with a VBA Macro or iLogic Rule?

I would like to automate adding an iLogic rule to an Event Trigger when we update our old drawings.

The details of the Rule I am trying to call is as follows:

Rule Name = Save On Close Commands

Event = Before Close

We currently have Inventor 2013 and 2014.  If it is not possible in 2013, is it possible in 2014?

get the Rule Added to the Event Trigger

View 9 Replies View Related

AutoCAD Inventor :: Adding Part To Frame Generator With ILogic Rules For Features

Jul 17, 2013

I have a wire trough that we typically use on all our units. Instead of modelling each trough as it's own separate part to length, I would like to add this part to frame generator for tracking there cut lengths etc...

A few items, there is two sizes that we use, but for now I will work with just one.

I have modeled the part and renamed the important parameters.

-WIDTH - stays the same

-HEIGHT - stays the same

-LENGTH - adjusted by frame generator

-RIBS - the part has 6 currently, but there is a rib added for every 1/2 inch. it is a rectangular pattern

-SLOTS - will be added to the trough every 2 inches of length, it is a rectangular pattern

-SLOT_DISTANCE - is 2 inches and never changes, if the trough is cut on a slot, which ever is easiest, to show half a slot or none, doesn't matter, this is just for a visual and BOM reference

I found a video that shows me how to publish parts to FG, but I am stuck for the iLogic part. Part attached.

Inventor Professional 2014-Update 2 - AutoCAD Electrical 2014
Win7-x64 | ASUS P8Z77-V | i7 3770 -3.4 GHz | 32GB RAM |
240GB SSD | nVidia GTX 670 4GB - 320.49

View 6 Replies View Related

AutoCAD Map 3D :: Adding Geometry To Existing Feature Record Through FDO?

Aug 28, 2012

I'm running Map 2012 64 bit on Windows 7.  I've connected to an sdf file through FDO.  In the sdf file, it has points representing where people live.  Some of the records have the person's information, but no point associated with it.  Is there a way to add a point to an existing record through FDO?  Typically, i'll create a new point, then re-enter all the data i need for that person and then delete the old record. 

View 4 Replies View Related

AutoCAD Civil 3D :: Adding Vertex To Feature Line Or Pline?

Sep 12, 2013

how I can add in some vertex's at regular intervals on a fline or pline?

C3D 2013

View 2 Replies View Related

AutoCAD Civil 3D :: Adding Feature Lines To Surface As Break Line

Jan 31, 2012

When adding break lines to a surface, a dialog box like appears that asks for weeding factors and supplementing factors.  What I would like to know is, how can I change the defaults to reflect the settings needed on my project.

I am using C3D 2009.

View 6 Replies View Related

AutoCAD Civil 3D :: Error Adding Breakline Message When Editing Surface With Feature Lines

Jul 11, 2012

I am working on a 6 mile highway project whose surface file is 85MB big. So, I created a Data Shortcut of this surface and used this for creating profiles. However, at some locations the corridors go below the surface(as per their original profile) which was not intended. So, I need to restrict the surface to follow the corridors but not go beyond it.

I have created feature lines from corridors and tried to add them as breaklines to the surface. But " error adding breakline" error pops up. 

Is it because I am trying to add the breaklines to the mirror surface which I created from Data Shortcut ??

Will it be useful if I copy feature lines to original surface file and add these feature lines as breaklines in that file??

Windows 7 x 64
Nvidia Quadro 2000
24 GB Ram
i7 960 @ 3.20 GHz
Civil 3D 2012

View 2 Replies View Related

Photoshop :: 1024 Grayscale - Draw Stimuli With Low Contrast To Stimulate Participants?

May 29, 2012

I need to draw stimuli with low contrast to stimulate the participants. As my standard 24-Bit RGB stimuli aren't satisfying, my second supervisor told me to use 1024 grayscale.

As I'm a absolutel newbie to that stuff, I tried different editing software. I can only change between 8- and 16 Bit grayscale respectively 24/48 Bit RGB or CMYK. However, as soon as I try to change the contrast (i.e. by the use of the histrogram) , I only have 256 grayscale values.

View 2 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 Civil 3D :: Combining Feature Data (Adding Data To Shape File)

Apr 24, 2012

I have a master shape file that contains parcel ID, owner, tax info., etc. I have another file ( access 2003 -open to better file format suggestions-) which contains parcel ID and a "yes" or " no" entry for whether or not the parcel needs a new water meter. All I want to do is add the water meter information into the other shape file. This would create one shape file with one table with all the information that I need.

Ultimately I will use the information to do a map query and find out spatially where i need new water meters.

Right now i have the master shape file connected though the “Connect to Data” feature. I also have the new data added to the drawing though the Data sources------>attach under the “Map Explorer” Task pane. I attached access file (ver. 2003 .mdb) which has two columns “Parcel ID” and “Meter”.

I right click on the shape file under the display manager and select”Create a Join;” however my water meter table is not listed as an option. Will this not work?

Plan B - I tried to Create and connect to the access file as an ODBC connection. Followed this guy’s directions to a T [URL]. But when i populate my table under the fdo connection the column headings exist ( “parcel ID” and “Meter”) but the actual data is missing. Am I missing something important?

Note: I am running c3d 2012 on a  Win 7 64 Bit machine. I also removed office 32 bit apps and installed 64 bit apps to see if that would solve the problem. No go. 

View 3 Replies View Related

AutoCAD Map 3D :: Adding Data To A Feature Data Table?

Jan 20, 2012

Is it possible to add data to a feature data table?  Example: The shape file data downloaded from NRCS only has the Soil number for the State.  As I check out features I would like to add data for the soil name, soil group, etc. as additional columns in the data table and have it available in the future by checking the feature back in to my local information.

View 2 Replies View Related

AutoCAD Map 3D :: GIS Data - Feature Was Not Saved In The Target Feature Source

Jun 16, 2011

I have been working with some GIS data in the form of SHP files in autocad map 3D 2011. On one of my layers I have started getting "Feature was not saved in the target feature source" when I try to check in my data. In total there are 308 errors in the data table, all of which were features I deleted. They all have a featID of null and I cannot remove them from the data table. I need to fix these errors without going back and starting over.

View 4 Replies View Related

AutoCAD Map 3D :: Feature Labeling - Obscure Feature Symbols

Jul 24, 2012

I am running Autodesk Map3D 2012 and I need to label my feature points no matter if they overlap or not.The Map3D documention refers to a check box that will allow what I believe I need- but I cannot find the checkbox in the style editor. Here's a clip from the Autocad documentation:
 
To allow labels to obscure points on the selected layer..In the Display Manager , select the point layer. Click the Style button.In the Style Editor, click Allow Other Labels To Obscure Feature Symbols On This Layer.

View 1 Replies View Related

AutoCAD Inventor :: ILogic Design Copy - Error Copying A File / Inventor Crashes

Nov 5, 2013

I'm trying to use iLogic Design Copy to copy an assembly and all its associated parts to another directory. The assembly contains content center parts. Inventor warns me that the destination file of one of the CC parts (and 18 others) will be overwritten. When I go ahead and copy anyway, the copying process stops at that specific CC part. The Design Copy Progress dialog box states there is an error copying that CC part. When I close the Design Copy Progress dialog box, Inventor crashes.

The error copying the CC part: I'm allowed to use content center parts in iLogic Design Copied stuff, right? I searched some related topics and I'm under the impression that Inventor keeps the CC parts in its own directory and shouldn't be trying to overwrite them.

View 3 Replies View Related

AutoCAD Inventor :: Cut Across Bend Feature

Dec 27, 2013

I'm trying to use the cut across bend feature on a sheet metal part. However, when I check cut across bend, it grays out all of the other cutout options, and only has thickness as the only option. This is perplexing to me, because I can't think of too many times I'd need this option other than when there is more than one thickness of material I need to manipulate the profile onto.

I was to understand that this "cut across bend" is for use similar to the "normal cutout" command in solid edge? Keeps the cut perpendicular to the sheet face in a sheet metal part.
 
Cybertron PC
Intel Core i5-3470 CPU @ 3.20 GHz 3.60 GHz
16.0 GB RAM
Windows 7 Professional 64 Bit
3D Connexion Space Pilot
Inventor Professional 2014
Autocad Mechanical 2014

View 3 Replies View Related

AutoCAD Inventor :: Suppress Feature If Value Is 0?

Nov 24, 2011

Can not find the table where you can input "suppress feature if this equals 0" and so...

View 1 Replies View Related

AutoCAD Inventor :: Mirror And Flip A Feature

Jun 11, 2013

I would like to both flip and mirror (or pattern) a feature onto the opposite side of a rectangular extrusion.

For example (assuming a rectangular solid extruded in the Z dimension), I have two counter bored holes on the top surface of the solid aligned with the X axis and I would like a copy of those holes on the bottom surface but aligned with the Y axis. If I pattern the holes rotating them 90 degrees and then attempt to mirror them, I can only select all four or the two originals. Is there any way to disassociate the rotated copies from the originals while still retaining control over their dimensions from a single sketch?

View 3 Replies View Related

AutoCAD Inventor :: Rip Feature Not Completing Correctly

Oct 12, 2012

I am working on a sheet metal tee and i am having a problem with the Rip feature on this particular piece. I am not understanding why it will not rip all the way through this part.

Part was created with Inventor 2013

View 4 Replies View Related

AutoCAD Inventor :: Custom Feature Dialog

Oct 10, 2013

Creating feature edit dialogs? I currently have working program that creates a custom pocket/cavity but I'm having trouble with the User Interface and setting up a solid structure to handle events.My goal is to mimick how the "add hole" dialog works by having the following attributes:

 - Ribbon button to bring up dialog
 - Dimensions update when the dialog text boxes are updated
 - Right click menu to edit existing features
 - Existing dimensions and other properties are loaded when the dialog is used to edit existing features

So far, I have my classes structured this way:

AddinServer (handles loading and unloading the command) ->
CavityCommand (defines the buttons and containes event handlers) ->
CavityFeature (wraps up multiple identicle cavities into one client feature) ->
Cavity defitions (draws individual cavities using more specific classes)

View 1 Replies View Related

AutoCAD Inventor :: Feature Suppression Without Dependents

Sep 12, 2013

Is there a way to suppress a feature without suppressing it's dependents?

View 3 Replies View Related







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