Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions components/mpas-albany-landice/driver/glc_comp_mct.F
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,10 @@ end subroutine xml_stream_get_attributes
mesh_iotype = MPAS_IO_NETCDF
else if (trim(iotype) == 'netcdf4') then
mesh_iotype = MPAS_IO_NETCDF4
else if (trim(iotype) == 'adios') then
mesh_iotype = MPAS_IO_ADIOS
else if (trim(iotype) == 'adiosc') then
mesh_iotype = MPAS_IO_ADIOSC
else
mesh_iotype = MPAS_IO_PNETCDF
end if
Expand Down
4 changes: 4 additions & 0 deletions components/mpas-framework/src/driver/mpas_subdriver.F
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,10 @@ end subroutine xml_stream_get_attributes
mesh_iotype = MPAS_IO_NETCDF
else if (trim(iotype) == 'netcdf4') then
mesh_iotype = MPAS_IO_NETCDF4
else if (trim(iotype) == 'adios') then
mesh_iotype = MPAS_IO_ADIOS
else if (trim(iotype) == 'adiosc') then
mesh_iotype = MPAS_IO_ADIOSC
else
mesh_iotype = MPAS_IO_PNETCDF
end if
Expand Down
Loading