We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b5101e commit dca6c2fCopy full SHA for dca6c2f
src/simulation/m_viscous.fpp
@@ -1564,12 +1564,12 @@ contains
1564
real(wp) :: divergence
1565
integer :: l, q ! iterators
1566
1567
- ! zero the viscous stress, collection of velocity diriviatives, and spacial finite differences
+ ! zero the viscous stress, collection of velocity derivatives, and spatial finite differences
1568
viscous_stress_tensor = 0._wp
1569
velocity_gradient_tensor = 0._wp
1570
dx = 0._wp
1571
1572
- ! get the change in x used in the finite difference equaiont
+ ! get the change in x used in the finite difference equation
1573
dx(1) = 0.5_wp*(x_cc(i + 1) - x_cc(i - 1))
1574
dx(2) = 0.5_wp*(y_cc(j + 1) - y_cc(j - 1))
1575
if (num_dims == 3) then
0 commit comments