Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add amip requirements to docs #681

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,51 @@ or coupling components (using MPI) that are running on different processes.
|:--:|
| *ClimaCoupler.jl allows for independent development of interchangeable component models.* |


## Current AMIP components

### Atmosphere

Dynamical core:
- Equation: non-hydrostatic and fully compressible
- Prognostic variables: Density, velocity components, total energy, total specific humidity
- Spatial discretization: Spectral element in the horizontal, finite difference in the vertical, cubed sphere
- Time stepping: Implicit-explicit additive Runge–Kutta method

Radiation: A scheme based on RRTM for General circulation model applications—Parallel (RRTMGP)

Convection and turbulence: Diagnostic Eddy-diffusivity Mass-Flux scheme with prognostic turbulent kinetic energy

Microphysics: 0-moment scheme, where cloud condensate is removed with a constant timescale

Surface fluxes: A scheme based on Monin-Obukhov similarity theory, with constant roughness lengths over land and ocean

Orographic gravity wave drag: None

Non-orographic gravity wave drag: None

Aerosols and chemistry: None

### Land

Dynamical core:
- Equation: Following Manabe bucket hydrology scheme
szy21 marked this conversation as resolved.
Show resolved Hide resolved
- Prognostic variables: Temperature, water content, snow water content
- Spatial discretization: Finite difference, single column
szy21 marked this conversation as resolved.
Show resolved Hide resolved
- Time stepping: Explicit additive Runge–Kutta method

Land surface albedo:
- Bare ground: Prescribed from files
- Snow: Constant

### Sea ice

Thermodynamics: 0-layer model, with prognostic ice thickness and ice surface temperature
szy21 marked this conversation as resolved.
Show resolved Hide resolved

### Coupling

Sequential coupling. Fluxes over a heterogeneous surface are calculated using the averaged surface properties.

```@docs
ClimaCoupler
```
Loading