Skip to content

Commit

Permalink
Merge pull request #398 from FESOM/refactoring_precip_typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
koldunovn authored Dec 20, 2022
2 parents 0d7d80d + 6a44ffe commit a9f45df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/io_meandata.F90
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,10 @@ subroutine ini_mean_io(ice, dynamics, tracers, partit, mesh)
call def_stream(nod2D, myDim_nod2D, 'evap', 'evaporation', 'm/s', evaporation(:), io_list(i)%freq, io_list(i)%unit, io_list(i)%precision, partit, mesh)
CASE ('prec ')
sel_forcvar(5) = 1
call def_stream(nod2D, myDim_nod2D, 'prec', 'precicipation rain', 'm/s', prec_rain(:), io_list(i)%freq, io_list(i)%unit, io_list(i)%precision, partit, mesh)
call def_stream(nod2D, myDim_nod2D, 'prec', 'precipitation rain', 'm/s', prec_rain(:), io_list(i)%freq, io_list(i)%unit, io_list(i)%precision, partit, mesh)
CASE ('snow ')
sel_forcvar(6) = 1
call def_stream(nod2D, myDim_nod2D, 'snow', 'precicipation snow', 'm/s', prec_snow(:), io_list(i)%freq, io_list(i)%unit, io_list(i)%precision, partit, mesh)
call def_stream(nod2D, myDim_nod2D, 'snow', 'precipitation snow', 'm/s', prec_snow(:), io_list(i)%freq, io_list(i)%unit, io_list(i)%precision, partit, mesh)
CASE ('tair ')
sel_forcvar(3) = 1
call def_stream(nod2D, myDim_nod2D, 'tair', 'surface air temperature', '°C', Tair(:), io_list(i)%freq, io_list(i)%unit, io_list(i)%precision, partit, mesh)
Expand Down

0 comments on commit a9f45df

Please sign in to comment.