-
Hi, I am getting started with Tfel/Mfront I already tried to post this discussion, but it seems it did not pass the Github filter... My question is regarding tabulated data. I am doing a fairly complex analysis (more on that later) and I would like to be able to include the same data I have available. The data for the properties comes in tabulated form ala:
How does one work with this type of data? I have not seen any documentation about it anywhere (though I must be honest, I have yet a lot to read). Do I have to create an algebraic representation of the data for it to be processed by Mfront? The analysis I am trying to do is a elasto-visco-plastic (maybe damage too) in Code_Aster and Abaqus. I am using Abaqus as the primary program and all of its built in tools. The only addition I had to make to Abaqus is the inclusion of a customised CREEP subroutine describing the power law; with dependence on temperature and stress. Code_Aster does not provide much flexibility when it comes to creep nor combined isotropic and kinematic hardening (though VISC_CIN2_CHAB and HAYHURST do come close). Thank you for your time, P.S.: I will open another discussion talking about my case in more detail, this is just for the tabulated data. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 23 replies
-
To be honest, material properties are poorly documented in english (The french documentation is a bit better). For your problem, there is built-in feature to handle material properties given by tabulated data. You may want to open an issue about that. The main reason is that one must handle how data are interpolated and extrapolated. You'll find attached two examples of how to implement that. The first one is compatible with |
Beta Was this translation helpful? Give feedback.
-
Di you have a look at the |
Beta Was this translation helpful? Give feedback.
-
BTW, do not hesitate to use $ mfront --help-keyword=MaterialLaw:@Law
$ mfront --help-keyword=MaterialLaw:@Function |
Beta Was this translation helpful? Give feedback.
To be honest, material properties are poorly documented in english (The french documentation is a bit better).
For your problem, there is built-in feature to handle material properties given by tabulated data. You may want to open an issue about that.
The main reason is that one must handle how data are interpolated and extrapolated.
TFEL/Math
provides cubic spline and kriging for example. But no support for linear interpolation !You'll find attached two examples of how to implement that. The first one is compatible with
TFEL-4.0
. The second one shall compile with previous versions: