Skip to content

Commit de78aee

Browse files
Made it 11% through pre_process
1 parent a64686a commit de78aee

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/common/m_boundary_common.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1466,7 +1466,7 @@ contains
14661466
impure subroutine s_populate_F_igr_buffers(bc_type, jac)
14671467

14681468
type(integer_field), dimension(1:num_dims, -1:1), intent(in) :: bc_type
1469-
real(wp), target, dimension(idwbuff(1)%beg:, idwbuff(2)%beg:, idwbuff(3)%beg:), intent(inout) :: jac
1469+
real(stp), target, dimension(idwbuff(1)%beg:, idwbuff(2)%beg:, idwbuff(3)%beg:), intent(inout) :: jac
14701470

14711471
integer :: j, k, l
14721472

src/common/m_variables_conversion.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1363,7 +1363,7 @@ contains
13631363
q_cons_vf(n_idx)%sf(j, k, l) = q_prim_vf(n_idx)%sf(j, k, l)
13641364
nbub = q_prim_vf(n_idx)%sf(j, k, l)
13651365
else
1366-
call s_comp_n_from_prim(q_prim_vf(alf_idx)%sf(j, k, l), Rtmp, nbub, weight)
1366+
call s_comp_n_from_prim(real(q_prim_vf(alf_idx)%sf(j, k, l), kind=wp), Rtmp, nbub, weight)
13671367
end if
13681368
else
13691369
!Initialize R3 averaging over R0 and R directions

src/pre_process/m_assign_variables.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -666,11 +666,11 @@ contains
666666
667667
if (bubbles_euler .and. (.not. polytropic) .and. (.not. qbmm)) then
668668
do i = 1, nb
669-
if (f_is_default(q_prim_vf(bub_idx%ps(i))%sf(j, k, l))) then
669+
if (f_is_default(real(q_prim_vf(bub_idx%ps(i))%sf(j, k, l), kind=wp))) then
670670
q_prim_vf(bub_idx%ps(i))%sf(j, k, l) = pb0(i)
671671
! print *, 'setting to pb0'
672672
end if
673-
if (f_is_default(q_prim_vf(bub_idx%ms(i))%sf(j, k, l))) then
673+
if (f_is_default(real(q_prim_vf(bub_idx%ms(i))%sf(j, k, l), kind=wp))) then
674674
q_prim_vf(bub_idx%ms(i))%sf(j, k, l) = mass_v0(i)
675675
end if
676676
end do

src/pre_process/m_data_output.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ contains
353353
nRtmp(k) = q_cons_vf(bub_idx%rs(k))%sf(j, 0, 0)
354354
end do
355355

356-
call s_comp_n_from_cons(q_cons_vf(alf_idx)%sf(j, 0, 0), nRtmp, nbub, weight)
356+
call s_comp_n_from_cons(real(q_cons_vf(alf_idx)%sf(j, 0, 0), kind=wp), nRtmp, nbub, weight)
357357
end if
358358
end if
359359
write (2, FMT) x_cb(j), q_cons_vf(i)%sf(j, 0, 0)/nbub

0 commit comments

Comments
 (0)