From 2b2c6e932da3a66892dec60b56783c2c7a7ee069 Mon Sep 17 00:00:00 2001 From: Dominik Demuth Date: Tue, 25 Jul 2023 17:31:42 +0200 Subject: [PATCH] set lower bound of FC and BDS KWW to 0.1 --- src/nmreval/models/bds.py | 2 +- src/nmreval/models/fieldcycling.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nmreval/models/bds.py b/src/nmreval/models/bds.py index 9356de9..7e770e7 100644 --- a/src/nmreval/models/bds.py +++ b/src/nmreval/models/bds.py @@ -82,7 +82,7 @@ class HavriliakNegamiAlphaGammaBDS: class KWWBDS(_AbstractBDS): name = 'KWW' params = _AbstractBDS.params + [r'\beta'] - bounds = _AbstractBDS.bounds + [(0, 1)] + bounds = _AbstractBDS.bounds + [(0.1, 1)] susceptibility = KWW.susceptibility diff --git a/src/nmreval/models/fieldcycling.py b/src/nmreval/models/fieldcycling.py index 4d5221e..a1082d9 100644 --- a/src/nmreval/models/fieldcycling.py +++ b/src/nmreval/models/fieldcycling.py @@ -66,7 +66,7 @@ class HavriliakNegamiFC(_AbstractFC): class KWWFC(_AbstractFC): name = 'KWW' params = _AbstractFC.params + [r'\beta'] - bounds = _AbstractFC.bounds + [(0, 1)] + bounds = _AbstractFC.bounds + [(0.1, 1)] relax = Relaxation(distribution=KWW)