Skip to content

Instantly share code, notes, and snippets.

@blitzmann
Last active May 24, 2017 01:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blitzmann/7aeacfe68825ae348f4257c257811cca to your computer and use it in GitHub Desktop.
Save blitzmann/7aeacfe68825ae348f4257c257811cca to your computer and use it in GitHub Desktop.

Optimal Range

Original: 75000

Two unscripted modules

  • Module 1: 7.5% (modifier of 1.075)
  • Module 2: 7.5% * 0.869 = 6.5175 (modifier of 1.065175)

So it's 75000 * 1.075 = 80625 (first, unpenalized module)

Then 80625 * 1.065175 = 85879.734375 (second, penalized version, and value shown in pyfa)

One scripted module

  • Module 1: 15% boost

75000 * 1.15 = 86250 which, again, is what pyfa shows


Tracking Speed

Original: 0.012

Two unscripted modules

  • Module 1: 15%
  • Module 2: 15% * 0.869 = 13.035 (modifier of 1.13035)

So it's 0.012 * 1.15 = 0.0138

Then 0.0138 * 1.13035 = 0.01559883

One scripted module

  • Module 1: 30%

0.012 * 1.30 = 0.0156

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment