(ocean-ice-shelf-2d)= # ice shelf 2d ## description The ``ice_shelf_2d`` tasks describe a series of very simplified ice-shelf test cases where topography and initial conditions only vary in the y direction. The Coriolis parameter `f` is zero. This makes the test case quasi-two- dimensional, with negligible variability in x. Polaris includes three test cases, a default case, a restart case, and the default case with visualization. Each case includes an `init` step to set up the mesh and initial condition, a series of `ssh_adjustment` steps (see {ref}`ocean-ssh-adjustment`), and a forward step. Some cases include additional steps, described below. All test cases include a relatively strenuous, iterative process to dynamically adjust `landIcePressure` or `ssh` to be compatible with one another in the `ssh_adjustment` steps. In this test case, we perform 10 iterations of adjustment, enough that changes in pressure should be quite small compared to those in the first iteration. Reducing the number of iterations will make the test case run more quickly at the risk of having longer-lived transients at the beginning of the simulation. ```cfg # Options related to ssh adjustment steps [ssh_adjustment] # Number of ssh adjustment iterations iterations = 10 # Output interval for the ssh adjustment phase in hours output_interval = 1.0 # Run duration of each ssh adjustment phase in hours run_duration = 1.0 # Whether to adjust land ice pressure or SSH adjust_variable = land_ice_pressure # Time integration scheme time_integrator = split_explicit # Time step in seconds as a function of resolution rk4_dt_per_km = 10 # Time step in seconds as a function of resolution split_dt_per_km = 10 # Time step in seconds as a function of resolution btr_dt_per_km = 2.5 ``` If a baseline run of the test case was provided for comparison, we perform validation of both the prognostic variables (layer thickness, velocity, temperature and salinity) and a large number of variables associated with freshwater and heat fluxes under ice shelves. Frazil-ice formation is not included in the `ssh_adjustment` steps but is included in the `forward` step of this test case. ## suppported models These tasks support only MPAS-Ocean. ## mesh The test case currently supports only 5-km horizontal resolution. The x direction is periodic and only 10 cells wide, whereas the y direction has solid boundaries and is 44 cells long. These dimensions are set in the config file by `lx` and `ly`. ## vertical grid The conceptual overlying ice shelf is described by a piecewise linear function. The config options `y1`, `y2`, and `y3` dictate the inflection points in the piecewise function and `y1_water_column_thickness` and `y2_water_column_thickness` dictate the water column thickness at those locations. The water column thickness at `y3` is always equal to the bottom depth, indicating the ice shelf front location. By default, the ice shelf depresses the sea surface height by as much as 1040 m (leaving a 10-m water column) for the first 30 km in y. Over the next 30 km, it rises to 200 m, then fairly abruptly to zero over the next 15 km, where it remains for the second half of the domain. The ice shelf occupies these first 75 km of the domain: fluxes from ice-shelf melting are only applied in this region. ```{image} images/ice_shelf_2d.png :width: 500 px :align: center ``` The geometry does not represent a particularly realistic ice-shelf cavity but it is a quick and useful test of the parameterization of land-ice melt fluxes and of frazil formation below ice shelves. Two vertical coordinates, `z-star` and `z-level`, are available. In each case, there are 50 vertical levels given by the config option `vert_levels`. In the open ocean, each level is 40 m thick. ```cfg # Options related to the vertical grid [vertical_grid] # the type of vertical grid grid_type = uniform # Number of vertical levels vert_levels = 50 # The minimum number of vertical levels min_vert_levels = 3 # Depth of the bottom of the ocean bottom_depth = 2000.0 # The type of vertical coordinate (e.g. z-level, z-star) coord_type = z-star # Whether to use "partial" or "full", or "None" to not alter the topography partial_cell_type = partial # The minimum fraction of a layer for partial cells min_pc_fraction = 0.1 # The minimum layer thickness in m min_layer_thickness = 0.0 ``` ## initial conditions The initial temperature for the whole domain is constant (1 degree Celsius), while salinity varies linearly with depth from 34.5 PSU at the sea surface to 34.7 PSU at the sea floor, which is at a constant at 2000 m depth. These initial conditions can be modified with config options `temperature`, `surface_salinity`, and `bottom_salinity` ## forcing N/A ## time step and run duration The time step is determined by the config options `dt_per_km` so that the time step is proportional to the resolution. By default, a 10 km-resolution test has a time step of 5 min. Run duration will be specified for each test case. Run duration will be discussed for individual test cases. ## config options ```cfg # config options for 2D ice-shelf testcases [ice_shelf_2d] # width of domain in km lx = 50 # length of domain in km ly = 190 # How the land ice pressure at y