Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDoehring committed Mar 27, 2024
1 parent 8aaab77 commit ad4e995
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/callbacks_step/analysis_surface_integral_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ C_{L,p} \coloneqq \frac{\oint_{\partial \Omega} p \boldsymbol n \cdot \psi_L \,
{0.5 \cdot \rho_{\infty} \cdot U_{\infty}^2 \cdot L_{\infty}}
```
based on the pressure distribution along a boundary.
Supposed to be used in conjuction with [`AnalysisSurfaceIntegral`](@ref)
Supposed to be used in conjunction with [`AnalysisSurfaceIntegral`](@ref)
which stores the boundary information and semidiscretization.
- `aoa::Real`: Angle of attack in radians (for airfoils etc.)
- `rhoinf::Real`: Free-stream density
- `uinf::Real`: Free-stream velocity
- `linf::Real`: Reference length of geoemtry (e.g. airfoil chord length)
- `linf::Real`: Reference length of geometry (e.g. airfoil chord length)
"""
function LiftCoefficientPressure(aoa, rhoinf, uinf, linf)
# psi_lift is the normal unit vector to the freestream direction.
Expand All @@ -95,13 +95,13 @@ C_{D,p} \coloneqq \frac{\oint_{\partial \Omega} p \boldsymbol n \cdot \psi_D \,
{0.5 \cdot \rho_{\infty} \cdot U_{\infty}^2 \cdot L_{\infty}}
```
based on the pressure distribution along a boundary.
Supposed to be used in conjuction with [`AnalysisSurfaceIntegral`](@ref)
Supposed to be used in conjunction with [`AnalysisSurfaceIntegral`](@ref)
which stores the boundary information and semidiscretization.
- `aoa::Real`: Angle of attack in radians (for airfoils etc.)
- `rhoinf::Real`: Free-stream density
- `uinf::Real`: Free-stream velocity
- `linf::Real`: Reference length of geoemtry (e.g. airfoil chord length)
- `linf::Real`: Reference length of geometry (e.g. airfoil chord length)
"""
function DragCoefficientPressure(aoa, rhoinf, uinf, linf)
# `psi_drag` is the unit vector in direction of the freestream.
Expand Down

0 comments on commit ad4e995

Please sign in to comment.