Skip to content
Snippets Groups Projects
Commit 505fdf50 authored by WAUTELET Philippe's avatar WAUTELET Philippe
Browse files

Philippe 28/01/2021: IO: allow zero-sized nspectra_spec_ni and nspectra_spec_nj dimensions

parent d81484ab
No related branches found
No related tags found
No related merge requests found
...@@ -386,8 +386,9 @@ if ( tpfile%ctype == 'MNHDIACHRONIC' ) then ...@@ -386,8 +386,9 @@ if ( tpfile%ctype == 'MNHDIACHRONIC' ) then
else else
ispectra_ni = nspectra_ni - 1 ispectra_ni = nspectra_ni - 1
end if end if
if ( ispectra_ni > 0 ) & if ( ispectra_ni == 0 ) call Print_msg( NVERB_WARNING, 'IO', 'IO_Knowndims_set_nc4', &
call IO_Add_dim_nc4( tpfile, NMNHDIM_SPECTRA_SPEC_NI, 'nspectra_spec_ni', ispectra_ni ) 'nspectra_spec_ni dimension is zero sized for ' // Trim( tpfile%cname ) )
call IO_Add_dim_nc4( tpfile, NMNHDIM_SPECTRA_SPEC_NI, 'nspectra_spec_ni', ispectra_ni )
end if end if
if ( nspectra_nj > 0 .and. .not. l2d ) then if ( nspectra_nj > 0 .and. .not. l2d ) then
...@@ -396,8 +397,9 @@ if ( tpfile%ctype == 'MNHDIACHRONIC' ) then ...@@ -396,8 +397,9 @@ if ( tpfile%ctype == 'MNHDIACHRONIC' ) then
else else
ispectra_nj = nspectra_nj - 1 ispectra_nj = nspectra_nj - 1
end if end if
if ( ispectra_nj > 0 ) & if ( ispectra_nj == 0 ) call Print_msg( NVERB_WARNING, 'IO', 'IO_Knowndims_set_nc4', &
call IO_Add_dim_nc4( tpfile, NMNHDIM_SPECTRA_SPEC_NJ, 'nspectra_spec_nj', ispectra_nj ) 'nspectra_spec_nj dimension is zero sized for ' // Trim( tpfile%cname ) )
call IO_Add_dim_nc4( tpfile, NMNHDIM_SPECTRA_SPEC_NJ, 'nspectra_spec_nj', ispectra_nj )
end if end if
!Dimension for the number of vertical levels for non-local LES budgets !Dimension for the number of vertical levels for non-local LES budgets
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment