1
0
Fork 0
mirror of https://github.com/gwm17/catima.git synced 2024-11-22 18:28:51 -05:00

Merge pull request #35 from hrosiak/comp

Comp
This commit is contained in:
Andrej Prochazka 2018-05-08 14:47:50 +02:00 committed by GitHub
commit 13ca8c54a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -154,6 +154,7 @@ namespace catima{
case material::UO2: return Material({{0,8,2},{0,92,1}},10.97);
case material::Urea: return Material({{0,1,0.067131},{0,6,0.2},{0,7,0.466459},{0,8,0.266411}},1.323);
case material::Valine: return Material({{0,1,11},{0,6,5},{0,7,1},{0,8,2}},1.23);
case material::C10H7I: return Material({{0,6,10},{0,1,7},{0,53,1}},1.738);
default:break;
}
return Material();

View File

@ -146,7 +146,8 @@ namespace catima{
UC = 339,
UO2 = 340,
Urea = 341,
Valine = 342
Valine = 342,
C10H7I = 343
};
Material get_compound(material m);