Skip to content

Commit

Permalink
change constant for cohereceTime and isoplanaticAngle
Browse files Browse the repository at this point in the history
  • Loading branch information
ojdf authored and matthewtownson committed Sep 16, 2024
1 parent 0be8a2a commit 0401fa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aotools/turbulence/atmos_conversions.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def coherenceTime(cn2, v, lamda=500.E-9, axis=-1):
coherence time in seconds
"""
Jv = (cn2*(v**(5./3.))).sum(axis)
tau0 = (Jv**(-3./5.))*0.057*lamda**(6./5.)
tau0 = (Jv**(-3./5.))*0.0581*lamda**(6./5.)
return tau0


Expand All @@ -135,7 +135,7 @@ def isoplanaticAngle(cn2, h, lamda=500.E-9, axis=-1):
isoplanatic angle in arcseconds
"""
Jh = (cn2*(h**(5./3.))).sum(axis)
iso = 0.057*lamda**(6./5.)*Jh**(-3./5.)*180.*3600./numpy.pi
iso = 0.0581*lamda**(6./5.)*Jh**(-3./5.)*180.*3600./numpy.pi
return iso


Expand Down

0 comments on commit 0401fa1

Please sign in to comment.