Skip to content

Commit bd9e4b0

Browse files
AnandAnand
authored andcommitted
Partial formatting
1 parent 23cb6be commit bd9e4b0

2 files changed

Lines changed: 7 additions & 8 deletions

File tree

src/simulation/m_rhs.fpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -623,8 +623,8 @@ contains
623623
do l = idwbuff(3)%beg, idwbuff(3)%end
624624
do k = idwbuff(2)%beg, idwbuff(2)%end
625625
do j = idwbuff(1)%beg, idwbuff(1)%end
626-
qL_rsx_vf(j, k, l, i) = qL_prim(id)%vf(i)%sf(j,k,l)
627-
qR_rsx_vf(j, k, l, i) = qR_prim(id)%vf(i)%sf(j,k,l)
626+
qL_rsx_vf(j, k, l, i) = qL_prim(id)%vf(i)%sf(j, k, l)
627+
qR_rsx_vf(j, k, l, i) = qR_prim(id)%vf(i)%sf(j, k, l)
628628
end do
629629
end do
630630
end do
@@ -661,8 +661,8 @@ contains
661661
do l = idwbuff(3)%beg, idwbuff(3)%end
662662
do k = idwbuff(2)%beg, idwbuff(2)%end
663663
do j = idwbuff(1)%beg, idwbuff(1)%end
664-
qL_rsx_vf(j, k, l, i) = qL_prim(id)%vf(i)%sf(j,k,l)
665-
qR_rsx_vf(j, k, l, i) = qR_prim(id)%vf(i)%sf(j,k,l)
664+
qL_rsx_vf(j, k, l, i) = qL_prim(id)%vf(i)%sf(j, k, l)
665+
qR_rsx_vf(j, k, l, i) = qR_prim(id)%vf(i)%sf(j, k, l)
666666
end do
667667
end do
668668
end do

src/simulation/m_surface_tension.fpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -284,11 +284,11 @@ contains
284284
!> Reconstruct left and right cell-boundary values of capillary variables
285285
subroutine s_reconstruct_cell_boundary_values_capillary(v_vf, vL_x, vR_x, norm_dir)
286286

287-
type(scalar_field), dimension(iv%beg:iv%end), intent(in) :: v_vf
287+
type(scalar_field), dimension(iv%beg:iv%end), intent(in) :: v_vf
288288
real(wp), dimension(idwbuff(1)%beg:,idwbuff(2)%beg:,idwbuff(3)%beg:,iv%beg:), intent(out) :: vL_x
289289
real(wp), dimension(idwbuff(1)%beg:,idwbuff(2)%beg:,idwbuff(3)%beg:,iv%beg:), intent(out) :: vR_x
290-
integer, intent(in) :: norm_dir
291-
integer :: i, j, k, l
290+
integer, intent(in) :: norm_dir
291+
integer :: i, j, k, l
292292

293293
$:GPU_PARALLEL_LOOP(collapse=4)
294294
do i = iv%beg, iv%end
@@ -302,7 +302,6 @@ contains
302302
end do
303303
end do
304304
$:END_GPU_PARALLEL_LOOP()
305-
306305

307306
end subroutine s_reconstruct_cell_boundary_values_capillary
308307

0 commit comments

Comments
 (0)