Skip to content

Commit

Permalink
Modify charater length in visual files
Browse files Browse the repository at this point in the history
  • Loading branch information
ishimura committed Aug 12, 2021
1 parent 8b2c171 commit 48bf30d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions visual/cube-generator.F90
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ program cube_generator
real(8) :: coord(3,mxatom), znuc(mxatom), charge, orbital(mxgridz)
real(8) :: cutoff=20.0D+00
real(8),allocatable :: cmoa(:,:), cmob(:,:), dmtrxa(:), dmtrxb(:)
character(len=64) :: filecheck, filecube, viewtype, moarg
character(len=16) :: checkversion, scftype, method, runtype
character(len=128) :: filecheck, filecube, viewtype, moarg
character(len=32) :: checkversion, scftype, method, runtype
!
call getarg(1,filecheck)
call getarg(2,filecube)
Expand Down Expand Up @@ -256,8 +256,8 @@ subroutine low2up(line,ilen)
!
implicit none
integer :: ilen, ii, inum
character(len=64),intent(inout) :: line
character(len=64) :: linecopy
character(len=128),intent(inout) :: line
character(len=128) :: linecopy
character(len=26) :: upper='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
character(len=26) :: lower='abcdefghijklmnopqrstuvwxyz'
!
Expand Down
8 changes: 4 additions & 4 deletions visual/vtk-generator.F90
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ program vtk_generator
real(8) :: xyzmax(3), xyzmin(3), xx, yy, zz
real(8) :: coord(3,mxatom), charge, orbital
real(8),allocatable :: cmoa(:,:), cmob(:,:), dmtrxa(:), dmtrxb(:)
character(len=64) :: filecheck, filevtk, viewtype, moarg
character(len=16) :: checkversion, scftype, method, runtype
character(len=128) :: filecheck, filevtk, viewtype, moarg
character(len=32) :: checkversion, scftype, method, runtype
!
call getarg(1,filecheck)
call getarg(2,filevtk)
Expand Down Expand Up @@ -277,8 +277,8 @@ subroutine low2up(line,ilen)
!
implicit none
integer :: ilen, ii, inum
character(len=64),intent(inout) :: line
character(len=64) :: linecopy
character(len=128),intent(inout) :: line
character(len=128) :: linecopy
character(len=26) :: upper='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
character(len=26) :: lower='abcdefghijklmnopqrstuvwxyz'
!
Expand Down

0 comments on commit 48bf30d

Please sign in to comment.