Skip to content
Snippets Groups Projects
Commit fabece68 authored by Martin Schrön's avatar Martin Schrön
Browse files

Hotfix: atm_depth in McJ-Des incoming correction

parent 4e7d0670
No related branches found
No related tags found
No related merge requests found
......@@ -38,3 +38,4 @@ rover.cfg
/examples/1908210604.RV1
*from_DWD.csv
*.spec
*.code-workspace
......@@ -44,5 +44,5 @@ def Tau(lat, lon, alt, Rc):
g = local_gravity(lon, lat, alt)
p_ref = local_air_pressure(lon, lat, alt)
atm_depth = 10*p_ref/g
tau = eps*K_JUNG*(c0*atm_depth+c1)*(1-np.exp(-(c2*atm_depth+c3)*Rc**(c4*x+c5)))
tau = eps*K_JUNG*(c0*atm_depth+c1)*(1-np.exp(-(c2*atm_depth+c3)*Rc**(c4*atm_depth+c5)))
return(tau)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment