Skip to content

Commit

Permalink
Add the ability to make POLO from acceleration (#477)
Browse files Browse the repository at this point in the history
tmp value of 310+ results in POLO.
  • Loading branch information
moonheart08 authored and jacob1 committed Jul 14, 2017
1 parent 1ff280a commit a76afb0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/simulation/elements/PROT.cpp
Expand Up @@ -127,15 +127,17 @@ int Element_PROT::update(UPDATE_FUNC_ARGS)
int newID, element;
if (parts[i].tmp > 500000)
element = PT_SING; //particle accelerators are known to create earth-destroying black holes
else if (parts[i].tmp > 500)
else if (parts[i].tmp > 700)
element = PT_PLUT;
else if (parts[i].tmp > 320)
else if (parts[i].tmp > 420)
element = PT_URAN;
else if (parts[i].tmp > 150)
else if (parts[i].tmp > 310)
element = PT_POLO
else if (parts[i].tmp > 250)
element = PT_PLSM;
else if (parts[i].tmp > 50)
else if (parts[i].tmp > 100)
element = PT_O2;
else if (parts[i].tmp > 20)
else if (parts[i].tmp > 50)
element = PT_CO2;
else
element = PT_NBLE;
Expand Down

0 comments on commit a76afb0

Please sign in to comment.