File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
src/libcadet/model/binding Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 46
46
kA = Adsorption rate
47
47
kD = Desorption rate
48
48
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
53
53
*/
54
54
55
55
namespace cadet
@@ -100,6 +100,12 @@ namespace cadet
100
100
if (nBound[0 ] != 0 )
101
101
throw InvalidParameterException (" Affinity complex titration binding model requires the first component pH to be non-binding" );
102
102
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
+
103
109
return res;
104
110
}
105
111
You can’t perform that action at this time.
0 commit comments