Most of what Ive done so far is based on the breakingDam3D tutorial. I am encountering an issue with the defined FreeSurface fields. For some reason, they are only applying to part of my geometry. The geometry is set up correctly (I think, still pretty new to this). The outer shell of my geometry looks like this in paraview (all outer cells are material 0):

https://ibb.co/sDvYCzM
I set the FreeSurface cell type using the following code:
AnalyticalConst3D<T,T> four( 4. );
sLattice.defineField<FreeSurface::CELL_TYPE>(superGeometry, 0, four);
However the field looks like this when viewed in paraview:

https://ibb.co/2YmDmrNy
Its only applying to a portion of the geometry instead (I would expect the entire outer shell to be red since that is all material 0)
Does anyone have any idea what is going on?