NIST parser
Module used to download and present attenuation and composition data from the NIST website.
HTMLTableParser
Bases: HTMLParser
This class serves as a html table parser. It is able to parse multiple tables which you feed in. You can access the result per .tables field.
Source code in pygrpm/material/nistparser/nistparser.py
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 |
|
handle_charref(name)
Handle HTML encoded characters
Source code in pygrpm/material/nistparser/nistparser.py
470 471 472 473 474 |
|
handle_data(data)
This is where we save content to a cell
Source code in pygrpm/material/nistparser/nistparser.py
465 466 467 468 |
|
handle_endtag(tag)
Here we exit the tags. If the closing tag is , we know that we can save our currently parsed cells to the current table as a row and prepare for a new row. If the closing tag is , we save the current table and prepare for a new one.
Source code in pygrpm/material/nistparser/nistparser.py
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 |
|
handle_starttag(tag, attrs)
We need to remember the opening point for the content of interest. The other tags (
456 457 458 459 460 461 462 463 |
|
get_atomic_number(composition)
Returns the atomic number equivalent to the first element match in the provided string
Parameters:
Name | Type | Description | Default |
---|---|---|---|
composition |
string
|
The key representing the element, e.g: "H" |
required |
Returns:
Type | Description |
---|---|
int
|
The atomic number |
Source code in pygrpm/material/nistparser/nistparser.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
get_attenuations(composition, energies, option='total', verbose=0, outopt='PIC')
Retrieves the attenuation of a material in cm^2/g at given energies on the NIST website.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
composition |
dict or str or Formula
|
The composition of the material. If it is a dict,
it must be of the form {"formula": Relative weight}.
Ex : |
required |
energies |
sequence of float
|
The energies at which the attenuations are computed, given in keV |
required |
option |
string
|
One of: "total", "ph", "comp", or "ray" indicating attenuation type |
'total'
|
verbose |
int
|
The verbose level of the function. If it is greater than 0, prints at each step. |
0
|
outopt |
str
|
If atomic number is chosen then Mass Attenuation Coefficient is returned by default (PIC), if "CSBA", then atomic cross section is returned instead. |
'PIC'
|
Raises:
Type | Description |
---|---|
URLError
|
If the data request failed more than |
ValueError
|
If |
Returns:
Type | Description |
---|---|
list of float
|
The total mass-attenuation with coherent scattering values for the material at each energies, in cm^2/g |
Source code in pygrpm/material/nistparser/nistparser.py
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 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 |
|
get_composition(material, verbose=0)
Method used to obtain the material composition listed at https://physics.nist.gov/cgi-bin/Star/compos.pl?refer=ap This method expects an enum object from the NISTMaterial class in ./materials_enum.py
Parameters:
Name | Type | Description | Default |
---|---|---|---|
material |
enum
|
An enum option from the NISTMaterials class of the material whose composition and details should be looked up |
required |
verbose |
int
|
The verbose level of the function. If it is greater than 0, prints at each step. |
0
|
Raises:
Type | Description |
---|---|
URLError
|
If the data request failed more than |
ValueError
|
If |
Returns:
Type | Description |
---|---|
dictionary
|
Itemized relative mass, mass density, mean excitation energy, and reference url |
Source code in pygrpm/material/nistparser/nistparser.py
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 |
|
get_cross_sections(composition, energies, option='total', verbose=0)
Retrieves the desired cross sections of an element at given energies on the NIST website in (barns/electron), barn=10^-24cm^2.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
composition |
str or int (atomic number) representing the desired element
|
|
required |
energies |
sequence of float
|
The energies at which the attenuations are computed, given in keV |
required |
option |
string
|
One of: "total", "ph", "comp", or "ray" indicating attenuation type |
'total'
|
verbose |
int
|
The verbose level of the function. If it is greater than 0, prints at each step. |
0
|
Raises:
Type | Description |
---|---|
URLError
|
If the data request failed more than |
ValueError
|
If |
Returns:
Type | Description |
---|---|
list of float
|
The desired type of cross section values for the material at each energies, (barns/electron), barn=10^-24cm^2 |
Source code in pygrpm/material/nistparser/nistparser.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 |
|
get_electronic_cross_sections(composition, energies, option='total', verbose=0)
Retrieves the electronic cross sections of an element at given energies on the NIST website in (barns/electron), barn=10^-24cm^2.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
composition |
str or int (atomic number) representing the desired element
|
|
required |
energies |
sequence of float
|
The energies at which the attenuations are computed, given in keV |
required |
option |
string
|
One of: "total", "ph", "comp", or "ray" indicating attenuation type |
'total'
|
verbose |
int
|
The verbose level of the function. If it is greater than 0, prints at each step. |
0
|
Raises:
Type | Description |
---|---|
URLError
|
If the data request failed more than |
ValueError
|
If |
Returns:
Type | Description |
---|---|
list of float
|
The total electronic cross section values for the material at each energies, (barns/electron), barn=10^-24cm^2 |
Source code in pygrpm/material/nistparser/nistparser.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 |
|