Revision 76fabed006d2741c4062f62cf745b34a2dad8e85 authored by Hyun Kang on 26 October 2023, 11:33:49 UTC, committed by Hyun Kang on 27 October 2023, 15:47:03 UTC
- Fix the restart issue by initializing normalVelocity=0 on land cells when restarting
  - Change: mpas_ocn_time_integration_split_ab2.F
- Add the AB2 time integrator option in the namelist descriptions as an available time integrator
  - Change: namelist_definition_mpaso.xml, Registry.xml, mpas_ocn_time_integration.F
1 parent dd88eb5
Raw File
mkdocs.yaml
site_name: E3SM

nav:
  - Introduction: 'index.md'
  - Components: '*include ./components/*/mkdocs.yml'

theme:
  name: material
  palette:
  - media: "(prefers-color-scheme: light)"
    scheme: default
    toggle:
      icon: material/weather-sunny
      name: Switch to dark mode
  - media: "(prefers-color-scheme: dark)"
    scheme: slate
    toggle:
      icon: material/weather-night
      name: Switch to light mode
  features:
    - navigation.indices
    - navigation.instant
    - navigation.sections
    - navigation.top
#    - navigation.tabs

markdown_extensions:
  - pymdownx.highlight
  - pymdownx.superfences
  - pymdownx.tabbed:
      alternate_style: true
  - pymdownx.arithmatex:
      generic: true

plugins:
  - monorepo

extra_javascript:
  # - javascript/mathjax.js
  - https://polyfill.io/v3/polyfill.min.js?features=es6
  - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
back to top