Skip to content

Commit

Permalink
Mohid Water - by default all transient and initial/final files are as…
Browse files Browse the repository at this point in the history
…sumed to be hdf5 format

Mohid Water - by default all transient and initial/final files are assumed to be hdf5 format
  • Loading branch information
PauloChambelGit committed Jul 19, 2018
1 parent 416f8f2 commit 57607ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Software/MOHIDWater/ModuleHydrodynamic.F90
Original file line number Diff line number Diff line change
Expand Up @@ -4471,7 +4471,7 @@ Subroutine Construct_Numerical_Options
Me%ObjEnterData, iflag, &
SearchType = FromFile, &
keyword = 'READ_CONTINUOUS_FORMAT', &
Default = DefaultFormat, &
Default = HDF5_, &
ClientModule ='ModuleHydrodynamic', &
STAT = STAT_CALL)
if (STAT_CALL /= SUCCESS_) &
Expand All @@ -4495,7 +4495,7 @@ Subroutine Construct_Numerical_Options
Me%ObjEnterData, iflag, &
SearchType = FromFile, &
keyword = 'WRITE_CONTINUOUS_FORMAT', &
Default = DefaultFormat, &
Default = HDF5_, &
ClientModule ='ModuleHydrodynamic', &
STAT = STAT_CALL)
if (STAT_CALL /= SUCCESS_) &
Expand All @@ -4520,7 +4520,7 @@ Subroutine Construct_Numerical_Options
Me%ObjEnterData, iflag, &
SearchType = FromFile, &
keyword = 'CONTINUOUS_FORMAT', &
Default = DefaultFormat, &
Default = HDF5_, &
ClientModule ='ModuleHydrodynamic', &
STAT = STAT_CALL)
if (STAT_CALL /= SUCCESS_) &
Expand Down
6 changes: 3 additions & 3 deletions Software/MOHIDWater/ModuleTurbulence.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1667,7 +1667,7 @@ subroutine TurbulenceOptions
Me%ObjEnterData, flag, &
SearchType = FromFile, &
keyword = 'READ_CONTINUOUS_FORMAT', &
Default = DefaultFormat, &
Default = HDF5_, &
ClientModule ='Turbulence', &
STAT = STAT_CALL)
if (STAT_CALL /= SUCCESS_) &
Expand All @@ -1691,7 +1691,7 @@ subroutine TurbulenceOptions
Me%ObjEnterData, flag, &
SearchType = FromFile, &
keyword = 'WRITE_CONTINUOUS_FORMAT', &
Default = DefaultFormat, &
Default = HDF5_, &
ClientModule ='Turbulence', &
STAT = STAT_CALL)
if (STAT_CALL /= SUCCESS_) &
Expand All @@ -1718,7 +1718,7 @@ subroutine TurbulenceOptions
Me%ObjEnterData, flag, &
SearchType = FromFile, &
keyword = 'CONTINUOUS_FORMAT', &
Default = DefaultFormat, &
Default = HDF5_, &
ClientModule ='Turbulence', &
STAT = STAT_CALL)
if (STAT_CALL /= SUCCESS_) &
Expand Down

0 comments on commit 57607ad

Please sign in to comment.