Skip to content

Commit bc102c8

Browse files
committed
incremental step 2
1 parent 432f915 commit bc102c8

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

src/post_process/m_data_output.fpp

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1187,8 +1187,18 @@ contains
11871187
11881188
end subroutine s_write_energy_data_file
11891189
1190-
subroutine s_write_kymo_data_file
1191-
1190+
subroutine s_write_kymo_data_file(q_prim_vf)
1191+
type(scalar_field), dimension(sys_size), intent(IN) :: q_prim_vf
1192+
integer :: j, k, l, t !< Generic loop iterators
1193+
1194+
do l = 0, p
1195+
do k = 0, n
1196+
do j = 0, m
1197+
1198+
end do
1199+
end do
1200+
end do
1201+
11921202
11931203
end subroutine s_write_kymo_data_file
11941204

src/post_process/m_start_up.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ subroutine s_save_data(t_step, varname, pres, c, H)
210210
end if
211211

212212
if (kymograph) then
213-
call s_write_kymo_data_file()
213+
call s_write_kymo_data_file(q_prim_vf)
214214
end if
215215

216216
! Adding the grid to the formatted database file

0 commit comments

Comments
 (0)