You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RGC_tracer.F90 previously had some very long comments at the end of some
lines. These have now been split onto multiple lines to respect the MOM6
standards for line-length. All answers are bitwise identical.
type(ocean_grid_type), intent(in) :: G !< Grid structure.
155
-
type(verticalGrid_type), intent(in) :: GV !< The ocean's vertical grid structure.
156
-
logical, intent(in) :: restart !< .true. if the fields have already been read from a restart file.
157
-
type(time_type), target, intent(in) :: day !< Time of the start of the run.
158
-
real, dimension(SZI_(G),SZJ_(G),SZK_(G)), intent(in) :: h !< Layer thickness, in m or kg m-2.
159
-
type(diag_ctrl), target, intent(in) :: diag !< Structure used to regulate diagnostic output.
160
-
type(ocean_OBC_type), pointer:: OBC !< This open boundary condition type specifies whether, where, and what open boundary conditions are used. This is not being used for now.
161
-
type(RGC_tracer_CS), pointer:: CS !< The control structure returned by a previous call to RGC_register_tracer.
162
-
type(sponge_CS), pointer:: layer_CSp !< A pointer to the control structure
163
-
type(ALE_sponge_CS), pointer:: sponge_CSp !< A pointer to the control structure for the sponges, if they are in use. Otherwise this may be unassociated.
156
+
type(ocean_grid_type), intent(in) :: G !< Grid structure.
157
+
type(verticalGrid_type), intent(in) :: GV !< The ocean's vertical grid structure.
158
+
logical, intent(in) :: restart !< .true. if the fields have already
159
+
!! been read from a restart file.
160
+
type(time_type), target, intent(in) :: day !< Time of the start of the run.
161
+
real, dimension(SZI_(G),SZJ_(G),SZK_(G)), &
162
+
intent(in) :: h !< Layer thickness, in m or kg m-2.
163
+
type(diag_ctrl), target, intent(in) :: diag !< Structure used to regulate diagnostic output.
164
+
type(ocean_OBC_type), pointer:: OBC !< This open boundary condition type specifies
165
+
!! whether, where, and what open boundary
166
+
!! conditions are used. This is not being used for now.
167
+
type(RGC_tracer_CS), pointer:: CS !< The control structure returned by a previous
168
+
!! call to RGC_register_tracer.
169
+
type(sponge_CS), pointer:: layer_CSp !< A pointer to the control structure
170
+
type(ALE_sponge_CS), pointer:: sponge_CSp !< A pointer to the control structure for the
171
+
!! sponges, if they are in use. Otherwise this may be unassociated.
0 commit comments