Skip to content

Commit c9c835b

Browse files
committed
linter fixes
1 parent 6ba55b7 commit c9c835b

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

components/data_comps/docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ The E3SM data models are key components to support many different scenarios:
88

99
More details can be found for each component below.
1010

11-
* [Data Atmosphere](user-guide/data-atmos-main.md)
12-
* [Data Land](user-guide/data-land-main.md)
13-
* [Data Ocean](user-guide/data-ocean-main.md)
11+
- [Data Atmosphere](user-guide/data-atmos-main.md)
12+
- [Data Land](user-guide/data-land-main.md)
13+
- [Data Ocean](user-guide/data-ocean-main.md)

components/data_comps/docs/user-guide/data-ocean-RSO.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ A key consideration for the user is whether they need to use a realistic distrib
66

77
The RSO mode has the following namelist variables to influence the ocean behavior:
88

9-
```
9+
```text
1010
RSO_relax_tau SST relaxation timescale
1111
RSO_fixed_MLD globally uniform MLD value (use -1 for realistic MLD)
1212
```
1313

1414
Other RSO parameter values are hardcoded in `components/data_comps/docn/src/docn_comp_mod.F90`.
1515

16-
```
16+
```text
1717
RSO_slab_option = 0 ! Option for setting RSO_X_cool
1818
RSO_R_cool = 11.75/86400 ! base cooling rate [K/s]
1919
RSO_Tdeep = 271.00 ! deep water temperature [K]

components/data_comps/docs/user-guide/data-ocean-amip.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Example compsets that use this capability are `F2010` and `F20TR`. These compset
66

77
Several additional XML variables need to be set in order to use this capability, which are set to defaults for common configurations, such as `F2010` at `ne30pg2` atmospheric resolution.
88

9-
```
9+
```text
1010
SSTICE_DATA_FILENAME Prescribed SST and ice coverage data file name
1111
SSTICE_GRID_FILENAME Grid file in "domain" format corresponding to SSTICE_DATA_FILENAME
1212
SSTICE_YEAR_ALIGN The model year that corresponds to SSTICE_YEAR_START on the data file
1313
SSTICE_YEAR_START The first year of data to use from SSTICE_DATA_FILENAME
1414
SSTICE_YEAR_END The last year of data to use from SSTICE_DATA_FILENAME
1515
```
1616

17-
Most users will not need to edit these values from their defaults, but many scenarios require non-standard SST data, such as tropical cyclone hindcasts where the daily evolution of high-resolution SST data may be desireable.
17+
Most users will not need to edit these values from their defaults, but many scenarios require non-standard SST data, such as tropical cyclone hindcasts where the daily evolution of high-resolution SST data may be desireable.

components/data_comps/docs/user-guide/data-ocean-idealized.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The two main uses of idealized SST modes are aquaplanet (AQP) and radiative-conv
66

77
The following list shows the currently defined E3SM compsets that utilize idealized SST.
88

9-
```
9+
```text
1010
FAQP
1111
FAQP-MMF1
1212
FAQP-MMF2
@@ -27,11 +27,11 @@ FRCE-MW-MMF1_300dT2p5
2727
FRCE-MW-MMF1_305dT1p25
2828
```
2929

30-
These all use "analytic" SST patterns that are specified via the `docn_comp_run()` subroutine in `components/data_comps/docn/src/docn_comp_mod.F90`. The `AQP` compsets currently only use the basic aquaplanet pattern that is symmetric about the equator. Other APE patterns introduce different meridional gradients and/or asymmetries. The various analytic SST patterns can be selected by changing the data ocean specifier: `_DOCN%AQP1_`.
30+
These all use "analytic" SST patterns that are specified via the `docn_comp_run()` subroutine in `components/data_comps/docn/src/docn_comp_mod.F90`. The `AQP` compsets currently only use the basic aquaplanet pattern that is symmetric about the equator. Other APE patterns introduce different meridional gradients and/or asymmetries. The various analytic SST patterns can be selected by changing the data ocean specifier: `_DOCN%AQP1_`.
3131

3232
The first 10 analytic aquaplanet SST patterns correspond to the aqua-planet experiment (APE) protocol as follows
3333

34-
```
34+
```text
3535
AQP1 = control symmetric SST pattern
3636
AQP2 = Flat
3737
AQP3 = Qobs = average of AQP1 and AQP2
@@ -46,7 +46,7 @@ AQP10 = Control+15N
4646

4747
!!!NOTE
4848
When using aquaplanet mode the orbital parameters will take on the idealized values shown below such that there are no seasonal variations, but there is still a diurnal cycle.
49-
```
49+
```text
5050
orb_eccen = 0
5151
orb_obliq = 0
5252
orb_mvelp = 0

components/data_comps/docs/user-guide/data-ocean-main.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
The E3SM data ocean has several different modes to support various realistic and idealized experiments. Sea surface temperatures (SST) can be either prescribed or prognostic. Prescribed SSTs are specified either through a data stream or analytically. Prognostic modes allow the SST field to evolve and respond to atmospheric conditions. The guides below provide more details on how to use these capabilities.
44

5-
* Prescribed
6-
* [SST from Observations](data-ocean-amip.md)
7-
* [Idealized SST](data-ocean-idealized.md)
8-
* Prognostic
9-
* [Traditional Slab Ocean Model (SOM)](data-ocean-SOM.md)
10-
* [Relaxed Slab Ocean (RSO)](data-ocean-RSO.md)
5+
- Prescribed
6+
- [SST from Observations](data-ocean-amip.md)
7+
- [Idealized SST](data-ocean-idealized.md)
8+
- Prognostic
9+
- [Traditional Slab Ocean Model (SOM)](data-ocean-SOM.md)
10+
- [Relaxed Slab Ocean (RSO)](data-ocean-RSO.md)

0 commit comments

Comments
 (0)