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

compunds added

This commit is contained in:
hrocho 2020-10-28 20:48:04 +01:00
parent f21646b132
commit 2ccdd01610
2 changed files with 5 additions and 1 deletions

View File

@ -156,6 +156,8 @@ namespace catima{
case material::Valine: return Material({{0,1,11},{0,6,5},{0,7,1},{0,8,2}},1.23);
case material::Iodonaphthalene: return Material({{0,6,10},{0,1,7},{0,53,1}},1.738);
case material::C21H24O4: return Material({{0,6,21},{0,1,24},{0,8,4}},1.18);
case material::CoRe_Alloy: return Material({{0,27,17},{0,75,23},{0,24,1}},11.5);
case material::LLZO_electrolyte: return Material({{0,3,7},{0,57,3},{0,40,2},{0,8,12}},5.1);
default:break;
}
return Material();

View File

@ -148,7 +148,9 @@ namespace catima{
Urea = 341,
Valine = 342,
Iodonaphthalene = 343,
C21H24O4 = 344
C21H24O4 = 344,
CoRe_Alloy = 345,
LLZO_electrolyte = 346
};
Material get_compound(material m);