polykin.thermo.acm¤
FloryHuggins ¤
Flory-Huggings multicomponent activity coefficient model.
This model is based on the following Gibbs energy of mixing per mole of sites:
where \(\phi_i\) are the volume, mass or segment fractions of the components, \(\chi_{ij}\) are the interaction parameters, and \(m_i\) is the characteristic size of the components.
In this particular implementation, the interaction parameters are allowed to depend on temperature according to the following empirical relationship (as used in Aspen Plus):
Moreover, \(\chi_{ij}=\chi_{ji}\) and \(\chi_{ii}=0\).
References
- P.J. Flory, Principles of polymer chemistry, 1953.
PARAMETER | DESCRIPTION |
---|---|
N
|
Number of components.
TYPE:
|
a
|
Matrix (N,N) of parameters, by default 0. Only the upper triangle must be supplied.
TYPE:
|
b
|
Matrix (N,N) of parameters, by default 0. Only the upper triangle must be supplied.
TYPE:
|
c
|
Matrix (N,N) of parameters, by default 0. Only the upper triangle must be supplied.
TYPE:
|
d
|
Matrix (N,N) of parameters, by default 0. Only the upper triangle must be supplied.
TYPE:
|
e
|
Matrix (N,N) of parameters, by default 0. Only the upper triangle must be supplied.
TYPE:
|
Source code in src/polykin/thermo/acm/floryhuggins.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
|
Dgmix ¤
Dgmix(
T: Number, phi: FloatVector, m: FloatVector
) -> Number
Gibbs energy of mixing per mole of sites, \(\Delta g_{mix}\).
PARAMETER | DESCRIPTION |
---|---|
T
|
Temperature. Unit = K.
TYPE:
|
phi
|
Volume, mass or segment fractions of all components.
TYPE:
|
m
|
Characteristic size of all components, typically equal to 1 for small molecules and equal to the average degree of polymerization for polymers.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float
|
Gibbs energy of mixing per mole of sites. Unit = J/mol. |
Source code in src/polykin/thermo/acm/floryhuggins.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
|
Dhmix ¤
Dhmix(T: float, phi: FloatVector, m: FloatVector) -> float
Enthalpy of mixing per mole of sites, \(\Delta h_{mix}\).
PARAMETER | DESCRIPTION |
---|---|
T
|
Temperature. Unit = K.
TYPE:
|
phi
|
Volume, mass or segment fractions of all components.
TYPE:
|
m
|
Characteristic size of all components, typically equal to 1 for small molecules and equal to the average degree of polymerization for polymers.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float
|
Enthalpy of mixing per mole of sites. Unit = J/mol. |
Source code in src/polykin/thermo/acm/floryhuggins.py
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
|
Dsmix ¤
Dsmix(T: float, phi: FloatVector, m: FloatVector) -> float
Entropy of mixing per mole of sites, \(\Delta s_{mix}\).
PARAMETER | DESCRIPTION |
---|---|
T
|
Temperature. Unit = K.
TYPE:
|
phi
|
Volume, mass or segment fractions of all components.
TYPE:
|
m
|
Characteristic size of all components, typically equal to 1 for small molecules and equal to the average degree of polymerization for polymers.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float
|
Entropy of mixing per mole of sites. Unit = J/(mol·K). |
Source code in src/polykin/thermo/acm/floryhuggins.py
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
|
__init__ ¤
__init__(
N: int,
a: Optional[FloatSquareMatrix] = None,
b: Optional[FloatSquareMatrix] = None,
c: Optional[FloatSquareMatrix] = None,
d: Optional[FloatSquareMatrix] = None,
e: Optional[FloatSquareMatrix] = None,
) -> None
Construct FloryHuggins
with the given parameters.
Source code in src/polykin/thermo/acm/floryhuggins.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
|
a ¤
a(
T: float, phi: FloatVector, m: FloatVector
) -> FloatVector
Activities, \(a_i\).
PARAMETER | DESCRIPTION |
---|---|
T
|
Temperature. Unit = K.
TYPE:
|
phi
|
Volume, mass or segment fractions of all components.
TYPE:
|
m
|
Characteristic size of all components, typically equal to 1 for small molecules and equal to the average degree of polymerization for polymers.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
FloatVector
|
Activities of all components. |
Source code in src/polykin/thermo/acm/floryhuggins.py
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
|
chi
cached
¤
chi(T: float) -> FloatSquareMatrix
Compute the matrix of interaction parameters.
PARAMETER | DESCRIPTION |
---|---|
T
|
Temperature. Unit = K.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
FloatSquareMatrix
|
Matrix of interaction parameters. |
Source code in src/polykin/thermo/acm/floryhuggins.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|