Skip to content
Snippets Groups Projects
read_input_file.f90 101 KiB
Newer Older
  • Learn to ignore specific revisions
  •       write(threadinfo%Logunit,'(a32,l1)')    'section flag grid ',sections(i)%flag_grid
    
          write(threadinfo%Logunit,'(a32,l1)')    'section flag mu ',sections(i)%flag_mu
    
          write(threadinfo%Logunit,'(a32,l1)')    'section flag u ',sections(i)%flag_u
          write(threadinfo%Logunit,'(a32,l1)')    'section flag v ',sections(i)%flag_v  
          write(threadinfo%Logunit,'(a32,l1)')    'section flag w ',sections(i)%flag_w 
    
          write(threadinfo%Logunit,'(a32,l1)')    'section flag q ',sections(i)%flag_q
    
          write(threadinfo%Logunit,'(a32,l1)')    'section flag uvw ',sections(i)%flag_uvw
    
          write(threadinfo%Logunit,'(a32,l1)')    'section flag lsf ',sections(i)%flag_lsf
          write(threadinfo%Logunit,'(a32,l1)')    'section flag vfield ',sections(i)%flag_vfield
    
          write(threadinfo%Logunit,'(a32,l1)')    'section flag colour ',sections(i)%flag_colour
          write(threadinfo%Logunit,'(a32,l1)')    'section flag plastic ',sections(i)%flag_plastic
          write(threadinfo%Logunit,'(a32,i3)')    'section flag temp ',sections(i)%flag_temp
          write(threadinfo%Logunit,'(a32,l1)')    'section flag velvect ',sections(i)%flag_velvect
          write(threadinfo%Logunit,'(a32,e11.4)') 'section scale ',sections(i)%scale
          write(threadinfo%Logunit,'(a32,a3)')    'section colormap ',sections(i)%colormap
          write(threadinfo%Logunit,'(a32,i4)')    'section ncolours ',sections(i)%ncolours
        enddo
      endif
    
      !write(threadinfo%Logunit,'(a32,e11.4)') 'distance_exponent ',params%distance_exponent
      write(threadinfo%Logunit,'(a)') '--------------------------------------------------------------------------------'
      write(threadinfo%Logunit,'(a)') '--- END OF INPUT FILE ---'
      write(threadinfo%Logunit,'(a)') '--------------------------------------------------------------------------------'
    
    endif
    
    if(iproc.eq.0) call flush(8)
    if(params%debug.gt.1) call flush(threadinfo%logunit)
    
    if (iproc.eq.0) call system ('rm fort.8')
    
    Dave Whipp's avatar
    Dave Whipp committed
    end subroutine read_input_file
    
    !------------------------------------------------------------------------------|
    !------------------------------------------------------------------------------|