Skip to content

Instantly share code, notes, and snippets.

@HiCraigChen
Created February 22, 2020 20:39
Show Gist options
  • Save HiCraigChen/89255c81170a32bfe25476d92a31cecb to your computer and use it in GitHub Desktop.
Save HiCraigChen/89255c81170a32bfe25476d92a31cecb to your computer and use it in GitHub Desktop.
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