From 3df25291cfb4bcd85347013b73f53fd7d2237c47 Mon Sep 17 00:00:00 2001 From: Johannes Keller Date: Tue, 6 May 2025 10:46:21 +0200 Subject: [PATCH 1/2] doc: typo fix --- docs/users_guide/case_examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/users_guide/case_examples/README.md b/docs/users_guide/case_examples/README.md index 6f331739f5..3c98c12a5a 100644 --- a/docs/users_guide/case_examples/README.md +++ b/docs/users_guide/case_examples/README.md @@ -1,4 +1,4 @@ -# Runnning example cases +# Running example cases Always load the eCLM environment before creating a case. This only needs to be done once per terminal session. From 6911edd9aa94d9338ce3e2490e1f1c80156961ad Mon Sep 17 00:00:00 2001 From: Johannes Keller Date: Tue, 6 May 2025 10:46:38 +0200 Subject: [PATCH 2/2] doc: additional information on namelist files / history files --- .../users_guide/running_eCLM/case_customization.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/users_guide/running_eCLM/case_customization.md b/docs/users_guide/running_eCLM/case_customization.md index f5dfa2e854..2284f5ea46 100644 --- a/docs/users_guide/running_eCLM/case_customization.md +++ b/docs/users_guide/running_eCLM/case_customization.md @@ -1,6 +1,9 @@ # Case customization -eCLM uses various namelist files that handle different settings and configurations for running a case. These namelists are similar to CLM5 (only the editing is different) so that you can refer to Section 1.2.3 and 1.2.4 of the CLM5 User's Guide for more detailed information. +eCLM uses various **namelist files** that handle different settings and configurations for running a case. +Namelist files are text files, where the user can provide values for various input fields, called **namelist items**. +Namelist items are parsed by eCLM and connected internal variables are set according to their values. +eCLM's namelist files are very similar to the namelist files used in CLM5 (only the editing is different) so that you can refer to Section 1.2.3 and 1.2.4 of the CLM5 User's Guide for more detailed information. The eCLM namelist files are: - Land model namelist `lnd_in` (see here for definitions of namelist items) @@ -61,7 +64,12 @@ Important namelist parameter in the `drv_in` are: ## 3. Customizing case output -To customize your simulation output, you can specify the history field options in the namelist file `lnd_in`. By default, there is one stream of monthly data files. The field options to customize are: +To customize your simulation output, you can specify the history field +options in the namelist file `lnd_in`. +By default, there is one stream of monthly data files called history +files. +History files are in NetCDF format. +The field options to customize are: - `hist_fincl1`: The list of history variables that you want to analyze - `hist_mfilt`: The number of records within one output file. Default is 1. @@ -103,4 +111,4 @@ You can then submit the job. sbatch run-eclm-job.sh ``` -You can monitor your job using `sacct` or `squeue -u $USER`. \ No newline at end of file +You can monitor your job using `sacct` or `squeue -u $USER`.