Hidden WordScanner
Private scans · No account required

DuckieDai Arrhenius Equation

Calculate an Arrhenius rate constant, a second-temperature rate constant, activation energy, or pre-exponential factor and show the rearrangement used.

Version 1.0.0 · Not calculator tested

← Back to Calculator Program Library

Independent compatibility resource: Hidden Word Scanner is independent and is not affiliated with or endorsed by Texas Instruments. TI product names describe compatibility only.

Action-count privacy: Successful downloads, preview starts, and preview completions increment same-origin aggregate counters. No entered values, source text, IP address, account, cookie, device identifier, or fingerprint is stored with these counts.

chemistry · MIT License

Overview

Calculate an Arrhenius rate constant, a second-temperature rate constant, activation energy, or pre-exponential factor and show the rearrangement used.

Usage

Inputs

  • Solve mode: k, k2, Ea, or A
  • Positive rate constants and absolute temperatures as required
  • Activation energy in kJ/mol; pre-exponential factor in the same rate units as k

Outputs

  • Requested rate quantity, activation energy, or pre-exponential factor
  • Exponent or rate ratio where the interactive mode provides it

Units: Temperature is kelvin, activation energy is kJ/mol, R is 8.314 J/(mol*K), and A and k use matching rate units.

Assumptions and limitations

Assumptions

  • The Arrhenius model and a temperature-independent A and Ea are suitable over the interval.
  • The two-temperature form compares the same reaction mechanism.

Constraints

  • Temperatures, rate constants, and A must be positive; entered Ea is nonnegative except a solved Ea may expose inconsistent data.

Known failures

  • Extreme exponents can overflow or underflow floating-point display.
  • A mechanism change or non-Arrhenius behavior can make the model misleading.

Compatibility and review

Review status
Not calculator tested
Tested on
The owner reports personally testing the supplied archive programs on a calculator; exact model, OS, and Python App versions were not recorded
What happened
Owner reported interactive testing is disclosed, but the published bytes are not labeled independently calculator tested because the environment is unrecorded and Arrhenius received a narrow intake correction
Dependencies
math
Suggested calculator name
ARRHEQ — you can give it another valid, unique name when you transfer it
Desktop test cases
Not available for this interactive-only source

This exact source auto-launches an interactive calculator session, so compatibility evidence comes from the recorded physical-device review rather than an importable desktop fixture.

Browser preview

Try the DuckieDai calculator screen

Follow the same opening, solve menu, prompts, validation, and result flow as the downloadable program.

Simulation boundary: This preview uses a reviewed browser adapter. It does not execute the downloaded Python and does not prove TI-Python or calculator compatibility.

JavaScript is required for the optional browser simulation. Source viewing and downloading remain available without it.

Exact reviewed bytes

Source code

Download .py

View source below, copy it when JavaScript is available, or download the exact .py bytes.

  1. from math import exp,log
  2. R=8.314
  3. def duckiedai_intro(program_name,wait=True):
  4. title=program_name[:16]
  5. empty=16-len(title)
  6. left=empty//2
  7. right=empty-left
  8. print("+----------------------+")
  9. print("| "+" "*left+title+" "*right+" |")
  10. print("| |")
  11. print("| __ |")
  12. print("| ___(o )> quack! |")
  13. print("| \\ <_. ) |")
  14. print("| `---' |")
  15. print("| by DuckieDai |")
  16. print("+----------------------+")
  17. print("Loading...")
  18. if wait:
  19. input("Press enter to start ")
  20. print("\n"*6)
  21. duckiedai_intro("ARRHENIUS")
  22. def pos(s):
  23. while 1:
  24. try:
  25. x=float(input(s))
  26. if x>0:return x
  27. except:pass
  28. print("Enter a positive #")
  29. def ea():
  30. while 1:
  31. try:
  32. x=float(input("Ea kJ/mol: "))
  33. if x>=0:return x
  34. except:pass
  35. print("Enter 0 or more")
  36. print("ARRHENIUS EQ")
  37. print("1 Find k")
  38. print("2 Find k2")
  39. print("3 Find Ea")
  40. print("4 Find A")
  41. c=""
  42. while c not in ("1","2","3","4"):
  43. c=input("Choose 1-4: ")
  44. if c=="1":
  45. a=pos("A: ")
  46. e=ea()*1000
  47. t=pos("Temp K: ")
  48. try:
  49. k=a*exp(-e/(R*t))
  50. print("k =",k)
  51. except OverflowError:print("k too large")
  52. elif c=="2":
  53. k1=pos("k1: ")
  54. e=ea()*1000
  55. t1=pos("T1 K: ")
  56. t2=pos("T2 K: ")
  57. try:
  58. k2=k1*exp((-e/R)*(1/t2-1/t1))
  59. print("k2 =",k2)
  60. except OverflowError:print("k2 too large")
  61. elif c=="3":
  62. k1=pos("k1: ")
  63. k2=pos("k2: ")
  64. t1=pos("T1 K: ")
  65. t2=pos("T2 K: ")
  66. if t1==t2:print("T1 and T2 differ")
  67. else:print("Ea kJ/mol =",-R*log(k2/k1)/(1/t2-1/t1)/1000)
  68. else:
  69. k=pos("k: ")
  70. e=ea()*1000
  71. t=pos("Temp K: ")
  72. try:
  73. print("A =",k*exp(e/(R*t)))
  74. except OverflowError:print("A too large")
  75. input("ENTER for guide: ")
  76. print("QUICK GUIDE")
  77. print("Higher T: larger k")
  78. print("Higher Ea: smaller k")
  79. print("Catalyst lowers Ea")
  80. print("R=8.314 J/mol K")
  81. print("DuckieDai: done!")
  82. input("ENTER to exit: ")
Filename
arrhEQ.py
Size
1837 bytes
SHA-256
6ab61f3be9266dd9123bc38a0f3309fcb6150a5b8a36391c5307b6cffa24a245

Transfer and launch

  1. Confirm that your calculator is the Python-capable model named above. This release has no verified calculator OS or Python App version; treat transfer and execution as unverified until independently tested.
  2. Download the .py source above and verify its SHA-256 digest if your computer provides that option.
  3. Use TI Connect CE to send the Python file to a compatible calculator. ARRHEQ is a suggested name; you may choose another valid, unique calculator name.
  4. Open the Python App, select the program, and check sample inputs before relying on other results.

Read the complete installation, launch, troubleshooting, and removal guide.

Availability does not mean a teacher, school, or exam permits this program. Follow the applicable rules.

Version history

Any source change requires a new immutable version and digest. Historical downloads remain available only while their review records remain valid.