00001 subroutine IO_input_CF_surf_export(filenm,rs)
00002 use phys_constant, only : long, nnrg, nntg, nnpg
00003 implicit none
00004 integer :: ir, it, ip, nrtmp, nttmp, nptmp
00005 real(8), pointer :: rs(:,:)
00006 character(len=*) :: filenm
00007
00008
00009 open(15,file=trim(filenm),status='old')
00010 read(15,'(5i5)') nttmp, nptmp
00011 do ip = 0, nptmp
00012 do it = 0, nttmp
00013 read(15,'(1p,6e20.12)') rs(it,ip)
00014 end do
00015 end do
00016 close(15)
00017
00018 end subroutine IO_input_CF_surf_export