Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations JAE on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

NX10: Material property change during solution time

Status
Not open for further replies.

Hwahn

Mechanical
Joined
Aug 20, 2015
Messages
4
Location
ZA
Hi there!

I want to specify the temperature dependent thermal expansion coefficient (TCE) of a material in two parts and have it switch from one to the other at a specified time during transient simulation. The specific material has a irreversible TCE during initial firing and after reaching a certain predetermined time, goes irreversible. I have provided a sketch of what I mean attached. So the TCE material property would have to contain an if statement or something, stating that before time = 100 seconds, the TCE value is the irreversible table field and if time > 100 seconds, the TCE value is the reversible table field.

Is this possible? Would there be a better way of doing it?

Warm regards,
Juan
 
 http://files.engineering.com/getfile.aspx?folder=0d0fa6b9-5e28-4d56-b9ec-fd3b77e574a8&file=TEC.png
Hi, thus far I have this set up as an example in the Thermal Expansion Coefficient Material Property:

If (ug_var("time") > 50[sec])
Then(fd("Steel Thermal Expansion Coefficient (A)") )
Else( fd("SS Thermal Expansion Coefficient (A)(2)") )

But it says the field does not match the filter.
The two variables are just copypasted fields from other materials.
 
I solved it, the "fd" needs to surround the entire statement:

fd(If (ug_var("time") > 50[sec])
Then("Steel Thermal Expansion Coefficient (A)")
Else("SS Thermal Expansion Coefficient (A)(2)") )
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top