Skip to content

Commit 7e61509

Browse files
committed
Formatting
1 parent 7739f59 commit 7e61509

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/common/m_chemistry.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ contains
3030
integer :: x, y, z, eqn
3131
real(wp) :: energy, mean_molecular_weight
3232
real(wp), dimension(num_species) :: Ys
33+
3334
do z = bounds(3)%beg, bounds(3)%end
3435
do y = bounds(2)%beg, bounds(2)%end
3536
do x = bounds(1)%beg, bounds(1)%end
@@ -52,7 +53,6 @@ contains
5253

5354
call get_temperature(energy, dflt_T_guess, Ys, .true., q_T_sf%sf(x, y, z))
5455
end do
55-
5656
end do
5757
end do
5858

src/pre_process/include/3dHardcodedIC.fpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,9 @@
171171
q_prim_vf(f + jump)%sf(i, j, k) = stored_values(data_i, data_j, f)
172172
end do
173173
! Set z velocity to zero
174-
q_prim_vf(4)%sf(i, j, k) = 0.0_wp ! Put your variable assignments here
174+
q_prim_vf(4)%sf(i, j, k) = 0.0_wp
175175

176+
! Put your variable assignments here
176177
case default
177178
call s_int_to_str(patch_id, iStr)
178179
call s_mpi_abort("Invalid hcid specified for patch "//trim(iStr))

0 commit comments

Comments
 (0)