Skip to content

Commit 9e85815

Browse files
committed
update descriptions
1 parent 585d57d commit 9e85815

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/libcadet/model/binding/AffinityComplexTitrationBinding.cpp

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@
4646
kA = Adsorption rate
4747
kD = Desorption rate
4848
qMax = Binding apacity
49-
etaA = Denote binding sensitivity against pH changes, qmax
50-
pKaA = Denote binding strength against pH changes, qmax
51-
etaG = Denote binding sensitivity against pH changes, keq
52-
pKaG = Denote binding strength against pH changes, keq
49+
etaA = Slope for the binding capacity changes against pH
50+
pKaA = Center for the binding capacity changes against pH
51+
etaG = Slope for the equilibrium constant changes against pH
52+
pKaG = Center for the equilibrium constant changes against pH
5353
*/
5454

5555
namespace cadet
@@ -100,6 +100,12 @@ namespace cadet
100100
if (nBound[0] != 0)
101101
throw InvalidParameterException("Affinity complex titration binding model requires the first component pH to be non-binding");
102102

103+
for (int i = 0; i < nComp; ++i)
104+
{
105+
if (nBound[i] > 1)
106+
throw InvalidParameterException("Currently the ACT isotherm model supports at most one bound state per component");
107+
}
108+
103109
return res;
104110
}
105111

0 commit comments

Comments
 (0)