Skip to content

Commit

Permalink
EL intel fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Vaca committed Dec 11, 2024
1 parent 35d1889 commit 9f0c644
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/simulation/m_bubbles_EL.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -1429,7 +1429,6 @@ contains
if (scoord(i) < 0.0d0) cell(i) = cell(i) - 1
end do


end subroutine s_locate_cell

!> This subroutine transfer data into the temporal variables.
Expand Down Expand Up @@ -1543,8 +1542,8 @@ contains
dq%sf(i, j, k) = q%sf(i, j, k)*(dx(i + 1) - dx(i - 1)) &
+ q%sf(i + 1, j, k)*(dx(i) + dx(i - 1)) &
- q%sf(i - 1, j, k)*(dx(i) + dx(i + 1))

Check warning on line 1544 in src/simulation/m_bubbles_EL.fpp

View check run for this annotation

Codecov / codecov/patch

src/simulation/m_bubbles_EL.fpp#L1542-L1544

Added lines #L1542 - L1544 were not covered by tests
dq%sf(i, j, k) = dq%sf(i, j, k) / &
((dx(i) + dx(i - 1))*(dx(i) + dx(i + 1)))
dq%sf(i, j, k) = dq%sf(i, j, k)/ &
((dx(i) + dx(i - 1))*(dx(i) + dx(i + 1)))
end do
end do
end do
Expand All @@ -1558,8 +1557,8 @@ contains
dq%sf(i, j, k) = q%sf(i, j, k)*(dy(j + 1) - dy(j - 1)) &
+ q%sf(i, j + 1, k)*(dy(j) + dy(j - 1)) &
- q%sf(i, j - 1, k)*(dy(j) + dy(j + 1))

Check warning on line 1559 in src/simulation/m_bubbles_EL.fpp

View check run for this annotation

Codecov / codecov/patch

src/simulation/m_bubbles_EL.fpp#L1557-L1559

Added lines #L1557 - L1559 were not covered by tests
dq%sf(i, j, k) = dq%sf(i, j, k) / &
((dy(j) + dy(j - 1))*(dy(j) + dy(j + 1)))
dq%sf(i, j, k) = dq%sf(i, j, k)/ &
((dy(j) + dy(j - 1))*(dy(j) + dy(j + 1)))
end do
end do
end do
Expand All @@ -1572,8 +1571,8 @@ contains
dq%sf(i, j, k) = q%sf(i, j, k)*(dz(k + 1) - dz(k - 1)) &
+ q%sf(i, j, k + 1)*(dz(k) + dz(k - 1)) &
- q%sf(i, j, k - 1)*(dz(k) + dz(k + 1))

Check warning on line 1573 in src/simulation/m_bubbles_EL.fpp

View check run for this annotation

Codecov / codecov/patch

src/simulation/m_bubbles_EL.fpp#L1571-L1573

Added lines #L1571 - L1573 were not covered by tests
dq%sf(i, j, k) = dq%sf(i, j, k) / &
((dz(k) + dz(k - 1))*(dz(k) + dz(k + 1)))
dq%sf(i, j, k) = dq%sf(i, j, k)/ &
((dz(k) + dz(k - 1))*(dz(k) + dz(k + 1)))
end do
end do
end do
Expand Down

0 comments on commit 9f0c644

Please sign in to comment.