Open josuemtzmo opened 1 month ago
I'm not sure where to start to implement this, so if you have ideas, it will be really helpful.
Let's start with syntax which will determine where the code will live. I think it does have to be Models
in order to support function boundary conditions. So something like
τx = boundary_condition(model, :u, :top)
(assuming / implying that the top bc is a flux).
We could also call this boundary_condition_operation
. However this would be a misnomer in the case that the boundary condition is in fact a Field
itself. Maybe not a big deal?
As for implementation, we should use dispatch to handle the various cases: we only need a KernelFunctionOperation
for function boundary conditions. Otherwise the field
constructor may suffice to handle constants, arrays, and fields. We would also need something for FieldTimeSeries
.
But let's agree on syntax first then we can move on to those details!
Another name could be boundary_condition_field
, since despite the fact that generally we will like a function to generate the boundary conditions, the return value will be a field to output. Right?
If I understand properly, the KernelFunctionOperation
will handle building the output of 1D, 2D, or 3D fields right each time the function is called, while the FieldTimeSeries
will build statistics and output for a time-series right?
I think it will be extremely helpful to be able to output boundary conditions and other fields (like fluxes, evaporation, and others) at the ocean interface. Following the discussion from #3081, something on those lines could be implemented, but it ideally it will be nice to have something like
model.boundary_conditions
.However it will be great to have something more general to simplify diagnosing simulations, that outputs the relevant boundary condition, in the example will be the
bottom
boundary.