├── .gitignore ├── .gitlab-ci.yml ├── LICENSE.md ├── README.md ├── config_src ├── dynamic │ └── SIS2_memory.h ├── dynamic_symmetric │ └── SIS2_memory.h └── external │ └── Icepack_interfaces │ ├── icepack_itd.F90 │ ├── icepack_kinds.F90 │ ├── icepack_mechred.F90 │ ├── icepack_meltpond_lvl.F90 │ ├── icepack_meltpond_topo.F90 │ ├── icepack_parameters.F90 │ ├── icepack_tracers.F90 │ └── icepack_warnings.F90 ├── docs ├── Doxyfile_nortd ├── front_page.md ├── images │ ├── Arakawa_C_grid.png │ ├── Grid_metrics.png │ ├── Horizontal indexing in MOM6.ipynb │ ├── Horizontal_NE_indexing_nonsym.png │ └── Horizontal_NE_indexing_sym.png ├── layout.xml ├── pond_note.txt └── zotero.bib └── src ├── SIS2_ice_thm.F90 ├── SIS_continuity.F90 ├── SIS_ctrl_types.F90 ├── SIS_debugging.F90 ├── SIS_diag_mediator.F90 ├── SIS_dyn_bgrid.F90 ├── SIS_dyn_cgrid.F90 ├── SIS_dyn_trans.F90 ├── SIS_fast_thermo.F90 ├── SIS_fixed_initialization.F90 ├── SIS_framework.F90 ├── SIS_get_input.F90 ├── SIS_hor_grid.F90 ├── SIS_ice_diags.F90 ├── SIS_memory_macros.h ├── SIS_open_boundary.F90 ├── SIS_optics.F90 ├── SIS_restart.F90 ├── SIS_slow_thermo.F90 ├── SIS_sponge.F90 ├── SIS_state_initialization.F90 ├── SIS_sum_output.F90 ├── SIS_tracer_advect.F90 ├── SIS_tracer_flow_control.F90 ├── SIS_tracer_registry.F90 ├── SIS_transcribe_grid.F90 ├── SIS_transport.F90 ├── SIS_types.F90 ├── SIS_utils.F90 ├── combined_ice_ocean_driver.F90 ├── ice_age_tracer.F90 ├── ice_boundary_types.F90 ├── ice_grid.F90 ├── ice_model.F90 ├── ice_ridge.F90 ├── ice_shortwave_dEdd.F90 ├── ice_spec.F90 ├── ice_thm.F90 ├── ice_type.F90 ├── slab_ice.F90 └── specified_ice.F90 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/README.md -------------------------------------------------------------------------------- /config_src/dynamic/SIS2_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/config_src/dynamic/SIS2_memory.h -------------------------------------------------------------------------------- /config_src/dynamic_symmetric/SIS2_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/config_src/dynamic_symmetric/SIS2_memory.h -------------------------------------------------------------------------------- /config_src/external/Icepack_interfaces/icepack_itd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/config_src/external/Icepack_interfaces/icepack_itd.F90 -------------------------------------------------------------------------------- /config_src/external/Icepack_interfaces/icepack_kinds.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/config_src/external/Icepack_interfaces/icepack_kinds.F90 -------------------------------------------------------------------------------- /config_src/external/Icepack_interfaces/icepack_mechred.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/config_src/external/Icepack_interfaces/icepack_mechred.F90 -------------------------------------------------------------------------------- /config_src/external/Icepack_interfaces/icepack_meltpond_lvl.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/config_src/external/Icepack_interfaces/icepack_meltpond_lvl.F90 -------------------------------------------------------------------------------- /config_src/external/Icepack_interfaces/icepack_meltpond_topo.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/config_src/external/Icepack_interfaces/icepack_meltpond_topo.F90 -------------------------------------------------------------------------------- /config_src/external/Icepack_interfaces/icepack_parameters.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/config_src/external/Icepack_interfaces/icepack_parameters.F90 -------------------------------------------------------------------------------- /config_src/external/Icepack_interfaces/icepack_tracers.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/config_src/external/Icepack_interfaces/icepack_tracers.F90 -------------------------------------------------------------------------------- /config_src/external/Icepack_interfaces/icepack_warnings.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/config_src/external/Icepack_interfaces/icepack_warnings.F90 -------------------------------------------------------------------------------- /docs/Doxyfile_nortd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/docs/Doxyfile_nortd -------------------------------------------------------------------------------- /docs/front_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/docs/front_page.md -------------------------------------------------------------------------------- /docs/images/Arakawa_C_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/docs/images/Arakawa_C_grid.png -------------------------------------------------------------------------------- /docs/images/Grid_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/docs/images/Grid_metrics.png -------------------------------------------------------------------------------- /docs/images/Horizontal indexing in MOM6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/docs/images/Horizontal indexing in MOM6.ipynb -------------------------------------------------------------------------------- /docs/images/Horizontal_NE_indexing_nonsym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/docs/images/Horizontal_NE_indexing_nonsym.png -------------------------------------------------------------------------------- /docs/images/Horizontal_NE_indexing_sym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/docs/images/Horizontal_NE_indexing_sym.png -------------------------------------------------------------------------------- /docs/layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/docs/layout.xml -------------------------------------------------------------------------------- /docs/pond_note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/docs/pond_note.txt -------------------------------------------------------------------------------- /docs/zotero.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/docs/zotero.bib -------------------------------------------------------------------------------- /src/SIS2_ice_thm.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS2_ice_thm.F90 -------------------------------------------------------------------------------- /src/SIS_continuity.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_continuity.F90 -------------------------------------------------------------------------------- /src/SIS_ctrl_types.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_ctrl_types.F90 -------------------------------------------------------------------------------- /src/SIS_debugging.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_debugging.F90 -------------------------------------------------------------------------------- /src/SIS_diag_mediator.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_diag_mediator.F90 -------------------------------------------------------------------------------- /src/SIS_dyn_bgrid.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_dyn_bgrid.F90 -------------------------------------------------------------------------------- /src/SIS_dyn_cgrid.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_dyn_cgrid.F90 -------------------------------------------------------------------------------- /src/SIS_dyn_trans.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_dyn_trans.F90 -------------------------------------------------------------------------------- /src/SIS_fast_thermo.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_fast_thermo.F90 -------------------------------------------------------------------------------- /src/SIS_fixed_initialization.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_fixed_initialization.F90 -------------------------------------------------------------------------------- /src/SIS_framework.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_framework.F90 -------------------------------------------------------------------------------- /src/SIS_get_input.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_get_input.F90 -------------------------------------------------------------------------------- /src/SIS_hor_grid.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_hor_grid.F90 -------------------------------------------------------------------------------- /src/SIS_ice_diags.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_ice_diags.F90 -------------------------------------------------------------------------------- /src/SIS_memory_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_memory_macros.h -------------------------------------------------------------------------------- /src/SIS_open_boundary.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_open_boundary.F90 -------------------------------------------------------------------------------- /src/SIS_optics.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_optics.F90 -------------------------------------------------------------------------------- /src/SIS_restart.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_restart.F90 -------------------------------------------------------------------------------- /src/SIS_slow_thermo.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_slow_thermo.F90 -------------------------------------------------------------------------------- /src/SIS_sponge.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_sponge.F90 -------------------------------------------------------------------------------- /src/SIS_state_initialization.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_state_initialization.F90 -------------------------------------------------------------------------------- /src/SIS_sum_output.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_sum_output.F90 -------------------------------------------------------------------------------- /src/SIS_tracer_advect.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_tracer_advect.F90 -------------------------------------------------------------------------------- /src/SIS_tracer_flow_control.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_tracer_flow_control.F90 -------------------------------------------------------------------------------- /src/SIS_tracer_registry.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_tracer_registry.F90 -------------------------------------------------------------------------------- /src/SIS_transcribe_grid.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_transcribe_grid.F90 -------------------------------------------------------------------------------- /src/SIS_transport.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_transport.F90 -------------------------------------------------------------------------------- /src/SIS_types.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_types.F90 -------------------------------------------------------------------------------- /src/SIS_utils.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/SIS_utils.F90 -------------------------------------------------------------------------------- /src/combined_ice_ocean_driver.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/combined_ice_ocean_driver.F90 -------------------------------------------------------------------------------- /src/ice_age_tracer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/ice_age_tracer.F90 -------------------------------------------------------------------------------- /src/ice_boundary_types.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/ice_boundary_types.F90 -------------------------------------------------------------------------------- /src/ice_grid.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/ice_grid.F90 -------------------------------------------------------------------------------- /src/ice_model.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/ice_model.F90 -------------------------------------------------------------------------------- /src/ice_ridge.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/ice_ridge.F90 -------------------------------------------------------------------------------- /src/ice_shortwave_dEdd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/ice_shortwave_dEdd.F90 -------------------------------------------------------------------------------- /src/ice_spec.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/ice_spec.F90 -------------------------------------------------------------------------------- /src/ice_thm.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/ice_thm.F90 -------------------------------------------------------------------------------- /src/ice_type.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/ice_type.F90 -------------------------------------------------------------------------------- /src/slab_ice.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/slab_ice.F90 -------------------------------------------------------------------------------- /src/specified_ice.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NOAA-GFDL/SIS2/HEAD/src/specified_ice.F90 --------------------------------------------------------------------------------