diff --git a/src/macrorugo/macrorugo.ts b/src/macrorugo/macrorugo.ts index d13421031c2cc3ea112e633b337fa2e2b3d2bd93..e104ce24beed84309bf98d4bec85a25806b803c9 100644 --- a/src/macrorugo/macrorugo.ts +++ b/src/macrorugo/macrorugo.ts @@ -171,7 +171,7 @@ export class MacroRugo extends Nub { /** Velocity at the bed §2.3.2 Cassan et al., 2016 */ this.u0 = Math.sqrt(2 * g * S * D * this.R / (this.calcCd(this.calc_fFr(this.U0)) * C)); /** turbulent length scale (m) within the blocks layer (alpha_t) */ - const alpha = uniroot(this.resolveAlpha_t, this, 0, 100); + const alpha = uniroot(this.resolveAlpha_t, this, 1E-6, 100); /** averaged velocity at the top of blocks (m.s-1) */ const uk = this.calcUz(alpha); /** Equation (13) Cassan et al., 2016 */