Community
Inventor Programming - iLogic, Macros, AddIns & Apprentice
Inventor iLogic, Macros, AddIns & Apprentice Forum. Share your knowledge, ask questions, and explore popular Inventor topics related to programming, creating add-ins, macros, working with the API or creating iLogic tools.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

downloading iproperties materials?????

10 REPLIES 10
Reply
Message 1 of 11
Anonymous
412 Views, 10 Replies

downloading iproperties materials?????

Anonymous
Not applicable
Does anyone have any idea whether it is possible to download new materials into iproperties, and if it is, how might I go about it????
0 Likes

downloading iproperties materials?????

Does anyone have any idea whether it is possible to download new materials into iproperties, and if it is, how might I go about it????
10 REPLIES 10
Message 2 of 11
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
What exactly do you mean? iProperties and materials are two different
things.
--
Brian Ekins
Autodesk Inventor API
0 Likes

What exactly do you mean? iProperties and materials are two different
things.
--
Brian Ekins
Autodesk Inventor API
Message 3 of 11
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
I'm sorry. I was referring to the materials list under the physical tab in the iproperties menu. All I am able to apply to my objects are metals- but i need certain woods.
0 Likes

I'm sorry. I was referring to the materials list under the physical tab in the iproperties menu. All I am able to apply to my objects are metals- but i need certain woods.
Message 4 of 11
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
If you want to use a program to create new materials, here's the example
from the programming help.

Public Sub CreateMaterial()
' Set a reference to the part document.
' This assumes a part document is active.
Dim oPartDoc As PartDocument
Set oPartDoc = ThisApplication.ActiveDocument

' Create a new material.
Dim oNewMaterial As Material
Set oNewMaterial = oPartDoc.Materials.Add("My Material", 11.37)

' Define the other properties of the material
oNewMaterial.LinearExpansion = 5.73
oNewMaterial.PoissonsRatio = 0.38
' Arbitrarily assigns the first render style in the render styles
collection.
oNewMaterial.RenderStyle = oPartDoc.RenderStyles.Item(1)
oNewMaterial.SpecificHeat = 124.3
oNewMaterial.ThermalConductivity = 310.2
oNewMaterial.UltimateTensileStrength = 210.45
oNewMaterial.YieldStrength = 185.5
oNewMaterial.YoungsModulus = 76.37
End Sub

If you want to create new materials using the user-interface use the "Style
and Standard Editor..." command from the Format menu in Inventor. From here
you can manage all of the colors and materials that are available.
--
Brian Ekins
Autodesk Inventor API
0 Likes

If you want to use a program to create new materials, here's the example
from the programming help.

Public Sub CreateMaterial()
' Set a reference to the part document.
' This assumes a part document is active.
Dim oPartDoc As PartDocument
Set oPartDoc = ThisApplication.ActiveDocument

' Create a new material.
Dim oNewMaterial As Material
Set oNewMaterial = oPartDoc.Materials.Add("My Material", 11.37)

' Define the other properties of the material
oNewMaterial.LinearExpansion = 5.73
oNewMaterial.PoissonsRatio = 0.38
' Arbitrarily assigns the first render style in the render styles
collection.
oNewMaterial.RenderStyle = oPartDoc.RenderStyles.Item(1)
oNewMaterial.SpecificHeat = 124.3
oNewMaterial.ThermalConductivity = 310.2
oNewMaterial.UltimateTensileStrength = 210.45
oNewMaterial.YieldStrength = 185.5
oNewMaterial.YoungsModulus = 76.37
End Sub

If you want to create new materials using the user-interface use the "Style
and Standard Editor..." command from the Format menu in Inventor. From here
you can manage all of the colors and materials that are available.
--
Brian Ekins
Autodesk Inventor API
Message 5 of 11
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
I think the latter piece of advice will be helpful to me- the first one was foreign to me, I'm unskilled as far as programming, etc. goes but finding a menu shouldn't be too difficult.
Thanks much!!!
0 Likes

I think the latter piece of advice will be helpful to me- the first one was foreign to me, I'm unskilled as far as programming, etc. goes but finding a menu shouldn't be too difficult.
Thanks much!!!
Message 6 of 11
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
http://discussion.autodesk.com/thread.jspa?threadID=654188
0 Likes

http://discussion.autodesk.com/thread.jspa?threadID=654188
Message 7 of 11
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
I hope you're still checking this!! I feel so computer illiterate. I started a group and invited you to join but I wanted to find out if you got it. It's called Seamus's group. I know you aren't on often but let me know as soon as you can whether I'm doing this right!! 🙂
0 Likes

I hope you're still checking this!! I feel so computer illiterate. I started a group and invited you to join but I wanted to find out if you got it. It's called Seamus's group. I know you aren't on often but let me know as soon as you can whether I'm doing this right!! 🙂
Message 8 of 11
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
I didn't know if there was still an open issue here. I also don't know
anything about a group.

Looking back through this thread, do you want to create new materials using
a program, or is creating materials through the user-interface ok too?
--
Brian Ekins
Autodesk Inventor API
0 Likes

I didn't know if there was still an open issue here. I also don't know
anything about a group.

Looking back through this thread, do you want to create new materials using
a program, or is creating materials through the user-interface ok too?
--
Brian Ekins
Autodesk Inventor API
Message 9 of 11
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
When you figure it out, please let me know!
0 Likes

When you figure it out, please let me know!
Message 10 of 11
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
Is your group open to new members?
0 Likes

Is your group open to new members?
Message 11 of 11
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
e-mail transworldfmx
0 Likes

e-mail transworldfmx

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report