Skip to content

Commit dca6c2f

Browse files
sbryngelsonclaude
andcommitted
Fix typos in m_viscous.fpp
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9b5101e commit dca6c2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/simulation/m_viscous.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1564,12 +1564,12 @@ contains
15641564
real(wp) :: divergence
15651565
integer :: l, q ! iterators
15661566

1567-
! zero the viscous stress, collection of velocity diriviatives, and spacial finite differences
1567+
! zero the viscous stress, collection of velocity derivatives, and spatial finite differences
15681568
viscous_stress_tensor = 0._wp
15691569
velocity_gradient_tensor = 0._wp
15701570
dx = 0._wp
15711571

1572-
! get the change in x used in the finite difference equaiont
1572+
! get the change in x used in the finite difference equation
15731573
dx(1) = 0.5_wp*(x_cc(i + 1) - x_cc(i - 1))
15741574
dx(2) = 0.5_wp*(y_cc(j + 1) - y_cc(j - 1))
15751575
if (num_dims == 3) then

0 commit comments

Comments
 (0)