Created
February 22, 2018 18:55
-
-
Save npyoung/ed3a568a3ebac88f2cb8c81a1e4af943 to your computer and use it in GitHub Desktop.
Refractive index of cured IP-S
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 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