Skip to content

Commit

Permalink
[MIRROR] Lowers thermic constant of Cryostylane reaction (#1192)
Browse files Browse the repository at this point in the history
* Lowers thermic constant of Cryostylane reaction (#81709)

## About The Pull Request
- Fixes #81687

Thermic constant of Cryostylane reaction now reduced from -7.5 to -1.5.

Meaning for every 1u of Cryostylane created the overall temperature of
the holder reduces by 1.5k so for e.g. if you create 30u of cryostylane
without any heating the temps reduces by 30 * 1.5 = 45k(the drop of
temperature increases as the reaction temps grows closer to optimal
temperature in our case -200k)

When testing upon adding 30u of water, nitrogen & stable plasma and
cooling the mixture to 270k via tier1 chem heater you acheive 30u of
Cryostylane at 82% purity and the final temps are 180k

P.S. adjusted range of chem debuger to include negative values. Helped
me in debugging this

## Changelog
:cl:
fix: Cryostylane reaction now has a moderate & not extreme cooling
effect. Helps you achieve more pure amounts of Cryostylane
/:cl:

* Lowers thermic constant of Cryostylane reaction

---------

Co-authored-by: SyncIt21 <[email protected]>
  • Loading branch information
2 people authored and StealsThePRs committed Feb 28, 2024
1 parent 7c2ec91 commit d9509b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/reagents/chemistry/recipes/pyrotechnics.dm
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@
determin_ph_range = 6
temp_exponent_factor = 0.5
ph_exponent_factor = 1
thermic_constant = -7.5
thermic_constant = -1.5
H_ion_release = 0
rate_up_lim = 10
purity_min = 0.2
Expand Down
2 changes: 1 addition & 1 deletion tgui/packages/tgui/interfaces/ChemRecipeDebug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ export const ChemRecipeDebug = (props) => {
step={0.1}
stepPixelSize={3}
value={editReaction?.editValue || 0}
minValue={0}
minValue={-1000}
maxValue={1000}
disabled={editReaction === null}
onDrag={(e, value) =>
Expand Down

0 comments on commit d9509b0

Please sign in to comment.