Created
February 22, 2020 20:39
-
-
Save HiCraigChen/89255c81170a32bfe25476d92a31cecb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def FrontierSimplePower12(x): | |
if x <= 500: | |
return 53 | |
else: | |
return 53 + (x-500)*(0.1286+0.038447) | |
def constellation(x): | |
rate = 0.074 | |
return 3.42+(0.038447+rate)*x | |
def Gexa(x): | |
rate = 0.1331 | |
if x < 500: | |
return 3.42+(0.038447+rate)*x | |
else: | |
return 3.42+(0.038447+rate)*x-35 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment