@@ -50,6 +50,7 @@ module m_data_output
5050 real (wp), allocatable, dimension (:, :, :), public :: q_sf
5151 real (wp), allocatable, dimension (:, :, :) :: q_root_sf
5252 real (wp), allocatable, dimension (:, :, :) :: cyl_q_sf
53+
5354 ! Single precision storage for flow variables
5455 real (sp), allocatable, dimension (:, :, :), public :: q_sf_s
5556 real (sp), allocatable, dimension (:, :, :) :: q_root_sf_s
@@ -219,10 +220,6 @@ contains
219220
220221 file_loc = trim(proc_rank_dir)//' / .'
221222
222- !INQUIRE( DIRECTORY = TRIM(file_loc), & ! Intel compiler
223- !EXIST = dir_check )
224- ! INQUIRE( FILE = TRIM(file_loc), & ! NAG/PGI/GCC compiler
225- ! EXIST = dir_check )
226223 call my_inquire(file_loc, dir_check)
227224 if (dir_check .neqv. .true.) then
228225 call s_create_directory(trim(proc_rank_dir))
@@ -235,10 +232,6 @@ contains
235232
236233 file_loc = trim(rootdir)//' / .'
237234
238- !INQUIRE( DIRECTORY = TRIM(file_loc), & ! Intel compiler
239- ! EXIST = dir_check )
240- ! INQUIRE( FILE = TRIM(file_loc), & ! NAG/PGI/GCC compiler
241- ! EXIST = dir_check )
242235 call my_inquire(file_loc, dir_check)
243236 if (dir_check .neqv. .true.) then
244237 call s_create_directory(trim(rootdir))
@@ -259,10 +252,6 @@ contains
259252
260253 file_loc = trim(proc_rank_dir)//' / .'
261254
262- !INQUIRE( DIRECTORY = TRIM(file_loc), & ! Intel compiler
263- ! EXIST = dir_check )
264- ! INQUIRE( FILE = TRIM(file_loc), & ! NAG/PGI/GCC compiler
265- ! EXIST = dir_check )
266255 call my_inquire(file_loc, dir_check)
267256
268257 if (dir_check .neqv. .true.) then
@@ -276,10 +265,6 @@ contains
276265
277266 file_loc = trim(rootdir)//' / .'
278267
279- !INQUIRE( DIRECTORY = TRIM(file_loc), & ! Intel compiler
280- ! EXIST = dir_check )
281- ! INQUIRE( FILE = TRIM(file_loc), & ! NAG/PGI/GCC compiler
282- ! EXIST = dir_check )
283268 call my_inquire(file_loc, dir_check)
284269
285270 if (dir_check .neqv. .true.) then
0 commit comments