Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passes grid argument to NetCDFOutputWriter #3576

Merged
merged 25 commits into from
May 10, 2024
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
48aa15c
Update netcdf_output_writer.jl
tomchor May 2, 2024
f0143e1
Add grid as property to NetCDFOutputWriter and use it during file ini…
glwagner May 3, 2024
fdee401
Merge branch 'main' into tc/grid-to-netcdfwriter
glwagner May 3, 2024
296ab22
paragraph explaining that netcdf writer also accepts an output grid
iuryt May 3, 2024
1ce9908
change wording and add jldoctest
iuryt May 6, 2024
fa97a72
Update docs/src/model_setup/output_writers.md
iuryt May 6, 2024
077fea6
Do a little better with function output for NetCDF output writer
glwagner May 6, 2024
c61729b
Fixes interpolate! plus some improvements to NetCDFOutputWriter
glwagner May 7, 2024
4134b5b
add new example for docs
iuryt May 7, 2024
ed5ce3e
simplify example
iuryt May 7, 2024
373f15a
simplify example in the docstring
iuryt May 7, 2024
6f0b9fb
Update docs/src/model_setup/output_writers.md
iuryt May 8, 2024
42ccd03
Make grid a kwarg and update language
glwagner May 8, 2024
8a7d7c0
Merge branch 'main' into tc/grid-to-netcdfwriter
glwagner May 8, 2024
14c94d8
Merge branch 'main' into tc/grid-to-netcdfwriter
tomchor May 8, 2024
70e459a
Update src/OutputWriters/netcdf_output_writer.jl
iuryt May 8, 2024
9403243
Update docs/src/model_setup/output_writers.md
iuryt May 8, 2024
45f0293
Update netcdf_output_writer.jl
iuryt May 8, 2024
8c141de
Bugfix plus better error message
glwagner May 8, 2024
c4357e5
Correctly define_output_variable for LagrangianParticles
glwagner May 8, 2024
4a3bd34
Merge branch 'main' into tc/grid-to-netcdfwriter
glwagner May 8, 2024
aa5e65c
Fix znodes in output writers docs
glwagner May 9, 2024
ab73354
fix znodes
iuryt May 9, 2024
a3a2f7e
fix double semicolon
iuryt May 9, 2024
4850ddc
14.5 kB
glwagner May 9, 2024
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
3 changes: 3 additions & 0 deletions docs/src/model_setup/output_writers.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ NetCDFOutputWriter scheduled on IterationInterval(1):
└── file size: 17.8 KiB
```

`NetCDFOutputWriter` also accepts an arbitrary `grid` for input that can be used to interpolate or subset the output fields. The output `grid` must be in the same architecture as the original grid.
iuryt marked this conversation as resolved.
Show resolved Hide resolved


See [`NetCDFOutputWriter`](@ref) for more information.

## JLD2 output writer
Expand Down