Skip to content

Commit 5f3adcb

Browse files
committed
fixing wp issues
1 parent e080104 commit 5f3adcb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/post_process/m_data_output.fpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1241,9 +1241,9 @@ contains
12411241
subroutine s_write_kymo_data_file(q_prim_vf)
12421242
type(scalar_field), dimension(sys_size), intent(IN) :: q_prim_vf
12431243
integer :: j, k, l, t !< Generic loop iterators
1244-
real(kind(0d0)) :: vonMises_d, vonMises_h1 !< selected planes for kymograph comparison
1245-
real(kind(0d0)) :: vonMises_h2, vonMises_h3 !<kymograph plane comparison continued
1246-
real(kind(0d0)) :: i !< counting integer
1244+
real(wp) :: vonMises_d, vonMises_h1 !< selected planes for kymograph comparison
1245+
real(wp) :: vonMises_h2, vonMises_h3 !<kymograph plane comparison continued
1246+
real(wp) :: i !< counting integer
12471247
12481248
do t = 0, t_stop
12491249
do j = 0, m
@@ -1254,7 +1254,7 @@ contains
12541254
end do
12551255
end do
12561256
1257-
i = m/4d0
1257+
i = m/4.0_wp
12581258
do t = 0, t_stop
12591259
do k = 0, n
12601260
!xcen_bub is roughly +/- m/4

0 commit comments

Comments
 (0)