AutoCAD Inventor :: Make 18" Diameter Pipe Wall Thickness Of .1793"?
Dec 21, 2011I need to make a 18" diameter pipe wall thickness of .1793" and it need to be a 90 degree bend with 22.5 degree segments.
View 3 RepliesI need to make a 18" diameter pipe wall thickness of .1793" and it need to be a 90 degree bend with 22.5 degree segments.
View 3 RepliesThe 2013 .NET API exposes just 10 of the 22 PartDataFields for Pipe objects. WTh (Wall thickness) is not one of them so I'm attempting to get it via Late Binding. This lisp code works, where (vl-sel) is just a helper function to select an object and convert it to a vla-object:
(setq pdr (vlax-get (vl-sel) 'partdatarecord))(setq itm (vlax-invoke pdr 'find "WTh"))
to get the PartDataField. However, putting this into my C# code, it fails on the Find portion with an exception
//ps is a valid PartSize objectPartDataRecord pdr = ps.SizeDataRecord;PartDataField diafld = pdr.GetDataFieldBy(PartContextType.PipeInnerDiameter);object[] args = new object[1];
object acadobj = ps.AcadObject;
object pdrobj = acadobj.GetType().InvokeMember("PartDataRecord", System.Reflection.BindingFlags.GetProperty, null, acadobj, null);
args[0] = "WTh";
[code]....
what's the best way to draw pipe, say 20" dia with .594 wall thickness in 3d?
View 9 Replies View RelatedI made a pipe network in one drawing, d-reffed it to another, drew parts in profile.
Then I realised that I needed to show the outside walls of some pipes in profile. We don't normally display them. And I found that the wall thickness was wrong. I eventually figured out how to edit the wall thickness, and I have it working right in the source drawing. (I had to swap parts to get it to update.) But the host drawing is not updating.
So if I go to pipe properties in the source drawing, it gives a wall thickness of 165mm (correct). If I go to the same pipe in the host drawing, and go the the pipe properties, the wall thickness is 75mm (wrong).
how to trigger an update? I've swapped parts back and forth to different sizes, synchronized, SetNetworkCatalog and done PartCatalogRegen in both drawings.
For background, read Edit wall thickness.
Civil 3D 2011, 32 bit
Win 7 Pro, 32 bit; Intel Core i5 @ 2.80GHz; 4GB RAM
I have a blade housing that requires a continuos radius around the profile. It is not a full radius. When I shell the blade, it looks like the raidius wants to continue. I was told I had to use two fillets and the particial radius will not work. However, the continuous radious in the customers requirement. Is there a way to shell this part correctly?
View 2 Replies View Relatedare there any other analysis tools available to find the minimum internal wall thickness in a part? I'm aware of the cross-section tool, but that only analyzes an area the user has already noticed. In a prismatic part with several cross-holes and features (cavities), it could be easy to miss a thin spot that could give up under internal pressure just by 'eyeballing' the part with Hidden Edges turned on.
I guess I could try the 'unground and move the part thru a sectional plane' trick, but I think it would be too haphazard, especially if the weak point is not thru a principal plane.
Is there a tool I'm missing or maybe something that has been added in newer releases? Maybe this is too much analysis to ask of a modeling package.
Inventor Professional 2014 64 SP1
Windows 7 64 bit - SP1
Xeon E5-1620
16 GB Ram
Quadro 2000
How do I insert pipe with diameter greater than 12" diameter
View 6 Replies View RelatedI am doing casting model in the inventor. i need to check the modelling wall thickness.
I tried in section analysis & drafting method but i am not satisfy on that.
I would like to make a 1" long, 1" diameter straight pipe as a block. I would like to insert that block into my drawing, say...on a 90 degree elbow. After inserting the straight stub, I would like to use a grip to "stretch" the pipe length to the next fitting. Ultimately, I would like to compile a parts list for my pipe drawing that will give me the straight pipe length. I've been doing some searching and 3d dynamic blocks seem to be impossible.
View 2 Replies View RelatedI am experiencing a problem in 2013. In part builder, I am trying to add wall thicknesses to the simple cylinder. I was able to add options for inside diameter and set floor thickness to a list and add options for that, but when I try to set wall thickness to list instead of constant, I get an error in the value menu.
Everything disappears and in red at the bottom, I get a message about an error in calculations. I even tried temporarily deleting the With from any calculations, but I still got the error. I have had no problems doing this in 2011 or 2009.
As it stands, if you view a pipe network in a profile view with no vertical exaggeration, you expect to see what is essentially an accurate long section in all directions. However, rather than being applied perpendicularly from the center line (or arguably the invert), diameter is applied strictly vertically.
Now, this made sense in the days of hand drafting when it was far easier in a vertically exaggerated profile view to simply measure the dimension vertically rather than determining how the exaggeration affects the perpendicular distance. But with the computer doing the measurements, is this really a problem anymore? I've debated that to some degree it's strange to consider that the crown of the pipe may be at a (slightly) different station than the invert, but this is simply fact in the field. And I've also thought that it's nice to be able simply measure vertically in an exaggerated profile, but I can't remember the last time I dug my scale out of the drawer.
All the theory aside, the real problem appears when you try to profile a vertical, or even a near-vertical, pipe. The fact that the diameter is applied vertically means that the vertical centerline is shifted the length of the pipe radius downward and upward. In other words, rather than seeing the invert and crown of the pipe, you just see one line, though it's really two lines on top of each other.
I wrote this off for the last 4 years of basic Pipe Networks because I acknowledge that storm/sanitary outside the building is rarely designed vertically, but with 2013's release of the Pressure Pipe Network, I really expected Autodesk to change the way the profile views represented pipes.
I would like to create an expression that returns the inner pipe diameter if the pipe is circular, and the inner height and width dimensions if the pipe section is square or elliptical. I tried this in the expression editor:
{Inner Pipe Diameter}|{Inner Pipe Height}&{Inner Pipe Width}
but it returned ? in the label .
So I have a proposed storm sewer pipe network and 90% of pipes snap to the structures fine, with a start/lengthen snap on one end and an end/lengthen on the other, and a location/pipe diameter one in the middle. When I go to draw one of the pipes though, I draw structure to structure and it doesn't sit properly. I click on it to make sure it snapped to the structure but there is no start, end, or lengthen snaps on either end of the pipe. Only a Location/Pipe Diameter one in the middle. Therefore, I cannot manipulate it's length or where it connects, I can only move it around from the center.
View 5 Replies View RelatedI'm creating Annotation for pipe diameter on a water main atlas. I have spans of pipe that are 50-200 feet in length. I often don't want the Annotation for pipe size to be placed at the midpoint of the line segment. I'd prefer it to be placed at the location where I 'select' on the feature. It seems like .LAGELPT, .CENTER, AND .CENTROID all place Anno at the midpoint of the line. X1,Y1 places Anno at the start of the line. X2,Y2 places Anno at the end of the line.
Is there an Expression String or Property I couldspecify, that would place the Annotation at the point where the feature was selected on-screen?
I'm trying to use a formula in a family that requires the host wall thickness.
I've setup an instance reporting parameter (dimensioned to the host wall faces) - which works fine in reporting the correct value.
But when I try to use that variable in a formula, I keep getting the error:
"Instance Parameters can't be used in Type Parameter formulas."
Is there a way of getting the reported dimension as a Type rather than an Instance - or is there another work around ?
I can make a curved wall, now I need to make a "cylinder" wall or a closed curved wall. If a curved wall can be closed I cannot figure it out.
View 4 Replies View RelatedI have a finished floor plan with 5.5" thick walls, but now i want to make all my walls thicker without changing the size of my rooms. What i can do to achieve this. I tried locking the wall dimensions before changing their thickness but it still shrunk my room sizes.
View 4 Replies View RelatedI have drawn an existing building thats needs a renovation. In the project i need to add 100mm insulation to the external side of the outer walls. Are there any way that i can add theese 100mm to my existing walls but only show the new 100mm in new construction ?
View 1 Replies View Relatedhow to make a radius dimension a diameter dimension? I have Inventor Profession 2013.
View 1 Replies View RelatedIs there a way to make the linear dimension a diameter dimension?
View 9 Replies View RelatedI'm trying to make a piping run that at one point branches off in another direction. Basically I want to have one straight pipe, a main line, where another pipe branches off and sticks out vertically from it and goes its own way. However, I want this branching pipe to be welded to the main line, not connected with a tee fitting. Inventor won't let me create branches from within a route, and it doesn't seem to want to let me snap to the existing main line run if I create a new run for the branching pipe.
View 5 Replies View RelatedHow to convert the single line below containing 42" radius curves to a solid 4" diameter cylinder/pipe?
Capture.jpg
How Autodesk came up with the wall thicknesses for pipes in their parts lists under pipe networks in Civil 3D? I found that for DIP the wall thicknesses for pipes was way greater than anything commercially available; and that for PVC the wall thicknesses were way thinner than what's commercially available.
Are most client's modifying these lists to conform to pipe specifications or ignoring these discrepancies?
How do I make Diameter and radius symbols when annotating?
View 2 Replies View RelatedIs there a way in inventor if you have an existing pipe route to create a new pipe run and place that existing route into the new run.
View 3 Replies View RelatedI'm trying to create pipe route using the tube & pipe run. And its not constrained when I try to drag away. I tried grounding the components which is not working either. since the routing opens in 3dsketch its kinda tricky to make it fully constrained.
View 2 Replies View Relatedarrows.jpg
I need to make lines of different thicknesses, with arrowheads. However, when I increase the line width the arrowhead should not be proportional. It need to stay a bit smaller.
Example: if the line is expanded to "Thick 3", I need the arrow keeps equivalent to "Thick 2" - for aesthetic reasons.I can do edit as I show in the bottom of the sample picture.
However, I need to build HUNDREDS of arrows of different sizes.Is there any way (Macro function?) permitting I enlarge/reduce line thickness and allowing me to edit the arrow without changing the line thickness?
Important Note: Is not enough I edit some arrows and save them as a kind of Template, then import them to work. The arrows have different ways in thickness and may be straight, curved, winding, etc.. Hence the need to edit the edges easily.
When i create a part in inventor, and create a rule for my part list of my drawing. Where do i find the diameter character
PL-5 Ø 300
Curious, I am trying to get numbers 'engraved' (extruded) into a diameter of a dial ring. I was able to create a couple of planes to create the marking lines around the OD, but am unsure how to add numbers and extrude said numbers (in the easiest fashion possible). I need to go from 0 to 90 on the longest marking that starts at 0° and is every 36°.
Also, that being said, with the little I tried and was unhappy with, I created a text box at the 0° marker but the text was in the wrong rotation the marker and rotation box was greyed out. How can I resolve this...or is it even related?
File attached.
----------------------
Inventor 2014 PDS
In Cable and Wire harness in AIP is there a way I can extract or dimension abundle diameter that is associative with the model? I was expecting that Ican dimension the diameter sizes in the nailboard drawing.
View 2 Replies View RelatedWhen I save an IDW as a PDF using the 'Save Copy As' function the spacing on the diameter logo for dimensions running up the page gets lost and makes it difficult to read and confusing. (see attached pic). I am not sure if it is a style thing, or a template issue, or just a general inventor fault.
View 9 Replies View Related