Skip to content

Commit 0d3f031

Browse files
Merge branch 'AOtools:main' into master
2 parents e3aa5a4 + 0401fa1 commit 0d3f031

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aotools/turbulence/atmos_conversions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def coherenceTime(cn2, v, lamda=500.E-9, axis=-1):
115115
coherence time in seconds
116116
"""
117117
Jv = (cn2*(v**(5./3.))).sum(axis)
118-
tau0 = (Jv**(-3./5.))*0.057*lamda**(6./5.)
118+
tau0 = (Jv**(-3./5.))*0.0581*lamda**(6./5.)
119119
return tau0
120120

121121

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

141141

0 commit comments

Comments
 (0)