Skip to content

Commit

Permalink
Apply formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskawczynski committed Sep 11, 2024
1 parent 180b1bd commit c24627e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ZenithAngleCalc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ function instantaneous_zenith_angle(

# zenith angle, radians
θ = mod(
acos(max(FT(-1), min(FT(1), cos(ϕ) * cos(δ) * cos(η) + sin(ϕ) * sin(δ)))),
acos(
max(FT(-1), min(FT(1), cos(ϕ) * cos(δ) * cos(η) + sin(ϕ) * sin(δ))),
),
FT(2π),
)

Expand Down

0 comments on commit c24627e

Please sign in to comment.