set lower bound of FC and BDS KWW to 0.1

This commit is contained in:
Dominik Demuth 2023-07-25 17:31:42 +02:00
parent 402994e09b
commit 2b2c6e932d
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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)