polykin.distributions¤
MixtureDistribution ¤
Mixture chain-length distribution.
This kind of distributions are instantiated indirectly by doing linear
combinations of IndividualDistribution
objects.
Examples:
>>> from polykin.distributions import Flory, SchulzZimm
>>> a = Flory(100, M0=0.050, name='A')
>>> b = SchulzZimm(100, PDI=3., M0=0.10, name='B')
>>> c = 0.3*a + 0.7*b # c is now a MixtureDistribution instance
>>> c
type: MixtureDistribution
name: A+B
DPn: 100.0
DPw: 269.7
DPz: 474.9
PDI: 3.12
M0: 0.077 kg/mol
Mn: 7.692 kg/mol
Mw: 23.985 kg/mol
Mz: 45.635 kg/mol
# Weight Distribution DPn DPw PDI
-------------------------------------------------------
1 0.300 Flory 1.00e+02 1.99e+02 1.99
2 0.700 SchulzZimm 1.00e+02 3.00e+02 3.00
>>> c.pdf(c.DPn)
0.002802983984583185
>>> c.cdf([c.DPn, c.DPw, c.DPz])
array([0.21950423, 0.61773034, 0.85164309])
Source code in src/polykin/distributions/base.py
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 |
|
cdf ¤
cdf(
size: Union[float, FloatArrayLike],
kind: Literal["number", "mass"] = "mass",
sizeasmass: bool = False,
) -> Union[float, FloatArray]
Evaluate the cumulative distribution function:
or
where \(m\) is the order (0: number, 1: mass).
PARAMETER | DESCRIPTION |
---|---|
size
|
Chain length or molar mass.
TYPE:
|
kind
|
Kind of distribution.
TYPE:
|
sizeasmass
|
Switch size input between chain-length (if
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float | FloatArray
|
Cumulative probability. |
Source code in src/polykin/distributions/base.py
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 |
|
components
property
¤
components: dict[IndividualDistribution, float]
Individual components of the mixture distribution.
RETURNS | DESCRIPTION |
---|---|
dict[IndividualDistribution, float]
|
Dictionary of individual distributions and corresponding mass weight. |
components_table
property
¤
components_table: str
Table of individual components of the mixture distribution.
RETURNS | DESCRIPTION |
---|---|
str
|
Table with key properties of each component. |
pdf ¤
pdf(
size: Union[float, FloatArrayLike],
kind: Literal["number", "mass", "gpc"] = "mass",
sizeasmass: bool = False,
) -> Union[float, FloatArray]
Evaluate the probability density function, \(p(k)\).
PARAMETER | DESCRIPTION |
---|---|
size
|
Chain length or molar mass.
TYPE:
|
kind
|
Kind of distribution.
TYPE:
|
sizeasmass
|
Switch size input between chain-length (if
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float | FloatArray
|
Probability density. |
Source code in src/polykin/distributions/base.py
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 |
|
plot ¤
plot(
kind: Union[
Literal["number", "mass", "gpc"],
list[Literal["number", "mass", "gpc"]],
] = "mass",
sizeasmass: bool = False,
xscale: Literal["auto", "linear", "log"] = "auto",
xrange: Union[tuple[float, float], None] = None,
cdf: Literal[0, 1, 2] = 0,
title: Optional[str] = None,
axes: Optional[list[Axes]] = None,
return_objects: bool = False,
) -> Optional[tuple[Optional[Figure], list[Axes]]]
Plot the chain-length distribution.
PARAMETER | DESCRIPTION |
---|---|
kind
|
Kind(s) of distribution.
TYPE:
|
sizeasmass
|
Switch size input between chain-length (if
TYPE:
|
xscale
|
x-axis scale.
TYPE:
|
xrange
|
x-axis range.
TYPE:
|
cdf
|
y-axis where cdf is displayed. If
TYPE:
|
title
|
Title of plot. If
TYPE:
|
axes
|
Matplotlib Axes object.
TYPE:
|
return_objects
|
If
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
tuple[Figure | None, list[Axes]] | None
|
Figure and Axes objects if return_objects is |
Source code in src/polykin/distributions/base.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 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 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 |
|