adding the dummy file for HDF5 support development

This commit is contained in:
zhangc43 2016-02-19 17:13:44 -05:00
parent a4e98df35f
commit 68a0599ae7
1 changed files with 16 additions and 0 deletions

16
code/damask_hdf5.f90 Normal file
View File

@ -0,0 +1,16 @@
module HDF5_io
use prec
use IO
use hdf5
contains
subroutine HDF5_init(filename, total_inc, total_time)
integer(pInt), intent(in) :: total_inc
real(pReal), intent(in) :: total_time
write(6,*) 'pretend to write something'
end subroutine HDF5_init
end module HDF5_io