Skip to content

Instantly share code, notes, and snippets.

@npyoung
Created February 22, 2018 18:55
Show Gist options
  • Save npyoung/ed3a568a3ebac88f2cb8c81a1e4af943 to your computer and use it in GitHub Desktop.
Save npyoung/ed3a568a3ebac88f2cb8c81a1e4af943 to your computer and use it in GitHub Desktop.
Refractive index of cured IP-S
def n_IPS(lam):
# Cauchy equation
A, B, C = 1.4915, 4.8486e3, 1.3694e8
return A + B / lam**2 + C / lam**4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment