From 465a85f44d7927a9a600c4a3b9e9b931e9138390 Mon Sep 17 00:00:00 2001
From: David Seus <david.seus@ians.uni-stuttgart.de>
Date: Tue, 13 Oct 2020 14:50:20 +0200
Subject: [PATCH] try utf8 lambda

---
 Usecases/README.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Usecases/README.md b/Usecases/README.md
index 61d6cf5..2c8f9da 100644
--- a/Usecases/README.md
+++ b/Usecases/README.md
@@ -140,8 +140,7 @@ In detail:
   However, if the simulation stopped for some reason and part of the data is
   valid, a later time can be specified along with the index of the timestep
   it had in the first attempt of the simulation.
-**Example:** Say you wanted start the simulation at `t0 = 0.5` and let that be the 87th timestep, you would set
-`starttimes = {87: 0.5}`.
+  **Example:** Say you wanted start the simulation at `t0 = 0.5` and let that be the 87th timestep, you would set `starttimes = {87: 0.5}`.
   In case more than one element is given parallel simulations are started starting from the specified starttimes.
   **Example:**
   Assume `timestep_size = 0.01` and `number_of_timesteps = 50`
@@ -167,13 +166,13 @@ In detail:
 - `timestep_size`: Set size of the timestep.
 - `number_of_timesteps`: Set numbers of timesteps to calculate.
 
-### LDD SCHEME PARAMATERS
+### LDD SCHEME PARAMETERS
 ~~~python
 # LDD scheme parameters  ######################################################
-Lw1 = 0.25 #/timestep_size
+Lw1 = 0.25
 Lnw1= 0.25
 
-Lw2 = 0.5 #/timestep_size
+Lw2 = 0.5
 Lnw2= 0.25
 
 lambda_w = 40
@@ -183,6 +182,7 @@ include_gravity = True
 debugflag = True
 analyse_condition = False
 ~~~
+This block sets parameters for the LDD solver. Namely L and λ
 
 ### I/O CONFIG
 ~~~python
-- 
GitLab