Skip to content

Commit

Permalink
Add description of rpts, zpts in netCDF file
Browse files Browse the repository at this point in the history
  • Loading branch information
ZedThree committed Nov 24, 2021
1 parent 71c2d26 commit 2ea7abf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/outcdf.f90
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,10 @@ subroutine write_netcdf(header)

if (debug) print *, 'Defined TGLF variables'

call neasyf_write(ncid, "rpts", rpts, dim_ids=dimids2d, units='m')
call neasyf_write(ncid, "zpts", zpts, dim_ids=dimids2d, units='m')
call neasyf_write(ncid, "rpts", rpts, dim_ids=dimids2d, units='m', &
long_name="Flux surface R points")
call neasyf_write(ncid, "zpts", zpts, dim_ids=dimids2d, units='m', &
long_name="Flux surface Z points")
call neasyf_write(ncid, "bppts", bppts, dim_ids=dimids2d, units='T')

call write_input_parameters(ncid)
Expand Down

0 comments on commit 2ea7abf

Please sign in to comment.