-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to impose temperature dependent material properties? #357
Comments
Yes, it is supported. You can either describe the property variation as a polynomial or as a table (I haven't used the table as much though). You need to set the property_format to adamantine/tests/test_material_property.hh Lines 416 to 429 in 5d54d97
You give the coefficient for order 0, then 1, etc. You don't need to use the same order for all material properties. Here is an example of the input using the table format: adamantine/tests/test_material_property.hh Lines 299 to 313 in 5d54d97
You give the temperature and the value at this temperature. The temperature needs to be given in increasing value. We interpolate the value between the one you give us. |
Thanks for the response. The following gives an error.
The error is
Have I messed up the formatting? |
Boost's parser stops reading the line at the blank space, so it doesn't get the other values 🫤 . There is another problem though . The |
No worries. This is all part of making a great open source solution for AM. |
I have opened #358. This should fix the issue. |
Are temperature dependent material properties possible? If so, how does one write them in the
.info
file.The text was updated successfully, but these errors were encountered: