polykin.copolymerization¤
radical_fractions_ternary ¤
radical_fractions_ternary(
f1: Union[float, FloatArrayLike],
f2: Union[float, FloatArrayLike],
k12: float,
k21: float,
k13: float,
k31: float,
k23: float,
k32: float,
) -> tuple[
Union[float, FloatArray],
Union[float, FloatArray],
Union[float, FloatArray],
]
Calculate the radical fractions for a ternary system.
In a ternary system, the radical fractions \(p_i\) are related to the monomer composition \(f_i\) by:
where \(k_{ij}\) are the cross-propagation rate coefficients. Note that the homo-propagation rate coefficients \(k_{ii}\) do not appear in the equations. For this reason, radical fractions cannot be evaluated from reactivity ratios alone.
References
- Hamielec, A.E., MacGregor, J.F. and Penlidis, A. (1987), Multicomponent free-radical polymerization in batch, semi- batch and continuous reactors. Makromolekulare Chemie. Macromolecular Symposia, 10-11: 521-570.
PARAMETER | DESCRIPTION |
---|---|
f1
|
Molar fraction of M1.
TYPE:
|
f2
|
Molar fraction of M2.
TYPE:
|
k12
|
Propagation rate coefficient.
TYPE:
|
k21
|
Propagation rate coefficient.
TYPE:
|
k13
|
Propagation rate coefficient.
TYPE:
|
k31
|
Propagation rate coefficient.
TYPE:
|
k23
|
Propagation rate coefficient.
TYPE:
|
k32
|
Propagation rate coefficient.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
tuple[float | FloatArray, ...]
|
Radical fractions, \((p_1, p_2, p_3)\). |
See also
radical_fractions_multi
: generic method for multicomponent systems.
Examples:
>>> from polykin.copolymerization import radical_fractions_ternary
>>> p1, p2, p3 = radical_fractions_ternary(
... f1=0.5, f2=0.3, k12=500., k21=50.,
... k13=30., k31=200., k23=300., k32=40.)
>>> print(f"p1 = {p1:.2f}; p2 = {p2:.2f}; p3 = {p3:.2f}")
p1 = 0.25; p2 = 0.48; p3 = 0.27
Source code in src/polykin/copolymerization/multicomponent.py
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 |
|