1@Parser   MaterialLaw;
2@Material UO2;
3@Law      YoungModulus_Fink1981;
4@Author   T. Helfer;
5@Date     04/04/2014;
6
7@Description
8{
9  Thermodynamic properties of Uranium dioxide
10  Fink, J.K. and Chasanov, M.G. and Leibowitz, L.
11  Argonne National Laboratory - ANL-CEN-RSD-80-3
12  04/1981
13}
14
15@Input T,p;
16T.setGlossaryName("Temperature");
17p.setGlossaryName("Porosity");
18
19@Output E;
20
21@PhysicalBounds T in [0:*[;
22@PhysicalBounds p in [0:1.];
23
24@Bounds T in [0.:1600.];
25
26@Function
27{
28  E=2.26e11*(1-2.62*p)*(1-1.31e-4*(T-273.15));
29}
30