Revision db42f2ac08c5baef680bafb2929fe2bd6b2455b0 authored by Benjamin Hillman on 31 October 2023, 21:43:50 UTC, committed by Benjamin Hillman on 31 October 2023, 21:43:50 UTC
Previously the MMF heating tendency used for the convective gravity wave parameterization included the effect of radiation. This moves the calculation so that radiative heating can be removed at all levels.

[non-BFB] for all MMF tests
2 parent s abe445e + 4946713
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