Skip to content

Commit

Permalink
Fix VTK converter program name
Browse files Browse the repository at this point in the history
  • Loading branch information
hiromatsui committed Dec 13, 2024
1 parent f6c3366 commit 5bd1c78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/programs/data_utilities/VIZ_only/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ VIZ_PLUG_DIR = $$(DATA_UTILS_DIR)/VIZ_only

TARGET_PSF = utilities/sectioning
TARGET_VTK_CONVERT = utilities/field_to_VTK
TARGET_PSF_2_VTK = utilities/section_to_vtk
TARGET_PSF_2_VTK = utilities/section_to_VTK

SOURCES = $(shell ls *.f90)

Expand Down
2 changes: 1 addition & 1 deletion src/programs/data_utilities/VIZ_only/psf_file_to_VTK.f90
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ program psf_file_to_VTK
character(len = kchara) :: file_ext, tmpchara
!
if(iargc_kemo() .lt. 5) then
write(*,*) 'section_to_vtk ', &
write(*,*) 'section_to_VTK ', &
& 'FILE_PREFIX EXTENSION_WITH_GZ START_STEP END_STEP INCREMENT'
stop
end if
Expand Down
3 changes: 1 addition & 2 deletions src/programs/mesh_utilities/cmp_trans_sph_indices.f90
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,7 @@ integer(kind = kint) function check_missing_sph_indices &
& 'local_id, global_r, global_j, global_r, global_l, global_m'
do kr = 1, sph%sph_rj%nidx_rj(1)
do j = 1, sph%sph_rj%nidx_rj(2)
inod = 1 + (kr-1) * sph%sph_rj%istep_rj(1) &
& + (j-1) * sph%sph_rj%istep_rj(2)
inod = j + (kr-1) * sph%sph_rj%nidx_rj(2)
if( idx_rj_recieve(inod,1) .lt. 0 &
& .or. idx_rj_recieve(inod,2) .lt. 0) then
write(id_file,'(4i16,6i5)') inod, &
Expand Down

0 comments on commit 5bd1c78

Please sign in to comment.