ORIGEN 2.2 Support – pyne.origen22

Pyne contains support for reading, writing, and merging certain ORIGEN 2.2 input and output files (tapes). More information may be found in the ORIGEN users manual.

All functionality may be found in the origen22 package:

from pyne import origen22

Examples of use may be found in the user’s guide (ORIGEN 2.2 I/O Support).

ORIGEN 2.2 API

pyne.origen22.loads_tape9(tape9)[source]

Parses a string that represents an ORIGEN 2.2 TAPE9 file and returns the data as a dictionary of nuclide dictionaries. See parse_tape9() for more details.

Parameters
tape9str

String represetation of the TAPE9 file.

Returns
parseddict

A dictionary of the data from the TAPE9 file.

pyne.origen22.make_tape9(nucs, xscache=None, nlb=201, 202, 203)[source]

Make a TAPE9 dict with data for a given list of nucs using data from a given data source.

Parameters
nucsiterable of ints, optional

Set of nuclides in any format.

Returns
tape9: dict

A full TAPE9 nested structure inside a dict. Keys 1, 2, and 3 correspond to decay decks. 219 is the activation products deck. 220 is the actinides deck. 221 is the fission product yield deck.

pyne.origen22.merge_tape9(tape9s)[source]

Merges a sequence of full or partial TAPE9s into a single tape9 dictionary. Data from the first tape9 has precednce over the second, the second over the third, etc.

Parameters
tape9slist or tuple

A sequence of full or partial tape9 dictionaries. See parse_tape9() for more information on the structure of these dictionaires.

Returns
tape9dictionary

A tape9 file which is the merger of the all of the tape9s. See parse_tape9() for more information on the structure of this dictionary.

pyne.origen22.nlbs(t9)[source]

Finds the library number tuples in a tape9 dictionary.

Parameters
t9dict

TAPE9 dictionary.

Returns
decay_nlb3-tuple

Tuple of decay library numbers.

xsfpy_nlb3-tuple

Tuple of cross section & fission product library numbers.

pyne.origen22.parse_tape6(tape6='TAPE6.OUT')[source]

Parses an ORIGEN 2.2 TAPE6.OUT file.

Parameters
tape6str or file-like object

Path or file to read the tape6 file from.

Returns
resultsdict

Dictionary of parsed values.

Warning

This method currently only functions to extract neutronic data from TAPE6 files. It does not yet parse out photonic data. If you would like to see this feature added, please contact the developers.

Notes

The results dictionary that is returned is highly structured and generally matches the layout of the TAPE6 file. Data is stored as 1d numpy float arrays which (if the TAPE6 is well-formed) will all be of the same length and match the time vector. The possible layout of results is as follows:

|- 'time_sec': time per index in [seconds]
|- 'flux': neutron flux at this time [n/cm^2/s]
|- 'specific_power_MW': recator specific power at this time [MW]
|- 'burnup_MWD': reactor burnup since last time step [MWd/input mass [g] from TAPE4]
|- 'k_inf': infinite multiplication factor [unitless]
|- 'neutron_production_rate': Total reactor neutron production rate [n/s]
|- 'neutron_destruction_rate: Total reactor neutron destruction rate [n/s]
|- 'total_burnup': Cummulative burnup over all time [MWd/input mass [g] from TAPE4]
|- 'average_flux': average neutron flux over preceeding time interval [n/cm^2/s]
|- 'average_specific_power: recator specific power over preceeding time interval [MW]
|- 'materials': list of Materials of same length as 'time_sec', only present if
|               'table_3' or 'table_5' exist and have 'nuclide' output.
|- 'alpha_neutron_source': dict
|                          |- 'title': str
|                          |- 'units': str
|                          |- nuclide or element str: (alpha, n) neutron source [n/s]
|- 'spont_fiss_neutron_source': dict
|                          |- 'title': str
|                          |- 'units': str
|                          |- nuclide or element str: spontaneous fission neutron source [n/s]
|- 'table_{n}': dict
|               |- 'nuclide': dict
|               |             |- 'title': str
|               |             |- 'units': str
|               |             |- 'activation_products': dict of (nuc-zzaaam, data) pairs
|               |             |- 'actinides': dict of (nuc-zzaaam, data) pairs
|               |             |- 'fission_products': dict of (nuc-zzaaam, data) pairs
|               |- 'element': dict
|               |             |- 'title': str
|               |             |- 'units': str
|               |             |- 'activation_products': dict of (elem str, data) pairs
|               |             |- 'actinides': dict of (elem str, data) pairs
|               |             |- 'fission_products': dict of (elem str, data) pairs
|               |- 'summary': dict
|               |             |- 'title': str
|               |             |- 'units': str
|               |             |- 'activation_products': dict of (elem or nuc str, data) pairs
|               |             |- 'actinides': dict of (elem or nuc str, data) pairs
|               |             |- 'fission_products': dict of (elem or nuc str, data) pairs
pyne.origen22.parse_tape9(tape9='TAPE9.INP')[source]

Parses an ORIGEN 2.2 TAPE9 file and returns the data as a dictionary of nuclide dictionaries.

Parameters
tape9str or file-like object, optional

Path to the tape9 file.

Returns
parseddict

A dictionary of the data from the TAPE9 file.

Notes

The TAPE9 format is highly structured. Therefore the in-memory representation contains a non-trivial amount of nesting. At the top level, the dictionary keys are the library numbers:

tape9
  |- keys : deck number (1, 2, 3, 241, ...)
  |- values : sub-dictionaries for each deck.

Each deck contains keys which vary by deck type (and subtype). All dictionary-typed data maps zzaaam-nuclide integers to the appropriate value:

all decks
  |- '_type' : str in ['decay', 'xsfpy'] # photon libs not yet supported
  |- '_subtype' : str for 'xsfpy' in ['activation_products', 'actinides', 'fission_products']
  |- 'title' : str, deck name
  |- '_cards' : optional, numpy structrued array of deck data

decay decks
  |- 'half_life' : float-valued dict [seconds]
  |- 'frac_beta_minus_x' : float-valued dict [fraction of decays via beta minus
  |                        which leave an excited nucleus]
  |- 'frac_beta_plus_or_electron_capture' : float-valued dict [fraction of decays
  |                                         via positron emission or electron capture]
  |- 'frac_beta_plus_or_electron_capture_x' : float-valued dict [fraction of decays
  |                                           via positron emission or electron capture
  |                                           which leave an excited nucleus]
  |- 'frac_alpha' : float-valued dict [fraction of decays via alpha emission]
  |- 'frac_isomeric_transition' : float-valued dict [fraction of decays from an excitied
  |                               state to the ground state]
  |- 'frac_spont_fiss' : float-valued dict [fraction of decays via spontateous fission]
  |- 'frac_beta_n' : float-valued dict [fraction of decays via beta plus a neutron]
  |- 'recoverable_energy' : float-valued dict, Total recoverable energy [MeV / decay]
  |- 'frac_natural_abund' : float-valued dict, natrual occuring abundance [atom fraction]
  |- 'inhilation_concentration' : float-valued dict, continuous inhilation [RCG]
  |- 'ingestion_concentration' : float-valued dict, continuous ingestion [RCG]

cross section and fission product yield decks
  |- 'sigma_gamma' : float-valued dict, (n, gamma) cross section [barns]
  |- 'sigma_2n' : float-valued dict, (n, 2n) cross section [barns]
  |- 'sigma_gamma_x' : float-valued dict, (n, gamma *) cross section [barns]
  |- 'sigma_2n_x' : float-valued dict, (n, 2n *) cross section [barns]
  |- 'fiss_yields_present' : bool-valued dict, Whether fission product yields are
                             included for this nuclide.

activation product cross section decks
  |- '_subtype' : 'activation_products'
  |- 'sigma_3n' : float-valued dict, (n, 3n) cross section [barns]
  |- 'sigma_p' : float-valued dict, (n, proton) cross section [barns]

actinide cross section decks
  |- '_subtype' : 'actinides'
  |- 'sigma_alpha' : float-valued dict, (n, alpha) cross section [barns]
  |- 'sigma_f' : float-valued dict, (n, fission) cross section [barns]

fission product cross section and yield decks
  |- '_subtype' : 'fission_products'
  |- 'sigma_3n' : float-valued dict, (n, 3n) cross section [barns]
  |- 'sigma_p' : float-valued dict, (n, proton) cross section [barns]
  |- 'TH232_fiss_yield' : float-valued dict, yield from Th-232 fission [frac]
  |- 'U233_fiss_yield' : float-valued dict, yield from U-233 fission [frac]
  |- 'U235_fiss_yield' : float-valued dict, yield from U-235 fission [frac]
  |- 'U238_fiss_yield' : float-valued dict, yield from U-238 fission [frac]
  |- 'PU239_fiss_yield' : float-valued dict, yield from Pu-239 fission [frac]
  |- 'PU241_fiss_yield' : float-valued dict, yield from Pu-241 fission [frac]
  |- 'CM245_fiss_yield' : float-valued dict, yield from Cm-245 fission [frac]
  |- 'CF249_fiss_yield' : float-valued dict, yield from Cf-249 fission [frac]
pyne.origen22.sec_to_time_unit(s)[source]

Converts seconds to ORIGEN time and units.

Parameters
sfloat

time in seconds

Returns
tfloat

time in units

unitint

time unit that t is in. Represents index into ORIGEN_TIME_UNITS, which matches Table 4.2 in ORIGEN 2.2 manual.

pyne.origen22.write_tape4(mat, outfile='TAPE4.INP')[source]

Writes a TAPE4.INP ORIGEN input file for a material.

Parameters
matMaterial

Material with mass weights in units of grams.

outfilestr or file handler, optional

Path to tape4 file or file-like object.

pyne.origen22.write_tape5_decay(dec_time, outfile='TAPE5.INP', decay_nlb=1, 2, 3, xsfpy_nlb=204, 205, 206, cut_off=1e-10, out_table_nes=False, False, True, out_table_laf=True, True, True, out_table_num=None)[source]

Writes a decay TAPE5 file.

Parameters
dec_timefloat

Decay time duration in days.

outfilestr or file-like object

Path or file to write the tape5 to.

decay_nlblength 3 sequence

Three tuple of library numbers from the tape9 file decay data, eg (1, 2, 3).

xsfpy_nlblength 3 sequence

Three tuple of library numbers from the tape9 file for cross section and fission product yields, eg (204, 205, 206).

cut_offfloat, optional

Cut-off concentration, below which reults are not recorded.

out_table_neslength 3 sequence of bools, optional

Specifies which type of output tables should be printed by ORIGEN. The fields represent (Nuclide, Element, Summary). The default value of (False, False, True) only prints the summary tables.

out_table_laflength 3 sequence of bools, optional

Specifies whether to print the activation products (l), actinides (a), and fission products (f). By default all three are printed.

out_table_numsequence of ints or None

Specifies which tables, by number, to print according to the rules given by out_table_nes and out_table_laf. For example the list [10, 5] would print tables 5 and 10. There are 24 tables available. If None, then all tables are printed.

pyne.origen22.write_tape5_irradiation(irr_type, irr_time, irr_value, outfile='TAPE5.INP', decay_nlb=1, 2, 3, xsfpy_nlb=204, 205, 206, cut_off=1e-10, out_table_nes=False, False, True, out_table_laf=True, True, True, out_table_num=None)[source]

Writes an irradiation TAPE5 file.

Parameters
irr_typestr

Flag that determines whether this is a constant power “IRP” irradiation or a constant flux “IRF” irradiation calculation.

irr_timefloat

Irradiation time duration in days.

irr_valuefloat

Magnitude of the irradiation. If irr_type = “IRP”, then this is a power. If irr_type = “IRF”, then this is a flux.

outfilestr or file-like object

Path or file to write the tape5 to.

decay_nlblength 3 sequence

Three tuple of library numbers from the tape9 file decay data, eg (1, 2, 3).

xsfpy_nlblength 3 sequence

Three tuple of library numbers from the tape9 file for cross section and fission product yields, eg (204, 205, 206).

cut_offfloat, optional

Cut-off concentration, below which results are not recorded.

out_table_neslength 3 sequence of bools, optional

Specifies which type of output tables should be printed by ORIGEN. The fields represent (Nuclide, Element, Summary). The default value of (False, False, True) only prints the summary tables.

out_table_laflength 3 sequence of bools, optional

Specifies whether to print the activation products (l), actinides (a), and fission products (f). By default all three are printed.

out_table_numsequence of ints or None

Specifies which tables, by number, to print according to the rules given by out_table_nes and out_table_laf. For example the list [10, 5] would print tables 5 and 10. There are 24 tables available. If None, then all tables are printed.

Warning

If irr_value is NaN or inf, ORIGEN will still run without complaint, but the TAPE6.OUT file will only contain headers and no data.

pyne.origen22.write_tape9(tape9, outfile='TAPE9.INP', precision=3)[source]

Writes an ORIGEN 2.2 TAPE9.INP file given a tape9 dictionary of values.

Parameters
tape9dict

A tape9 dictionary. See parse_tape9() for more information on the structure.

outfilestr or file-like object, optional

Path to the new tape9 file.

precisionint, optional

The number of significant figures that all output data is given to beyond the decimal point.

pyne.origen22.xslibs(nucs=frozenset({360960000, 481280000, 601600000, 290730000, 411050000, 531370000, 220500000, 340820000, 822100000, 942420000, 461140000, 581460000, 270590000, 390910000, 511230000, 631550000, 751870000, 390910001, 441000000, 561320000, 681640000, 801960000, 381010000, 501330000, 621650000, 70140000, 310780000, 431100000, 551420000, 240550000, 360870000, 481190000, 601510000, 962470000, 842150000, 481190001, 290640000, 410960000, 531280000, 651600000, 771920001, 771920000, 461050000, 581370000, 581370001, 701690000, 40100000, 280740000, 401060000, 521380000, 90190000, 330830000, 451150000, 571470000, 140280000, 501240000, 741880000, 862200000, 982520000, 380920000, 621560000, 310690000, 431010000, 551330000, 671650000, 791970000, 360780000, 481100000, 601420000, 721740000, 491340000, 60150000, 300790000, 421110000, 541430000, 110240000, 110240001, 350880000, 471200000, 591520000, 160330000, 280650000, 400970000, 521290000, 521290001, 641610000, 882250000, 761930000, 451060000, 451060001, 571380000, 691700001, 691700000, 501150000, 621470000, 270750000, 391070000, 511390000, 320840000, 441160000, 561480000, 130290000, 370930000, 491250000, 491250001, 611570000, 180380000, 300700000, 541340000, 661660000, 781980000, 902300000, 421020000, 541340001, 350790000, 471110000, 471110001, 591430000, 711750000, 952390000, 350790001, 521200000, 641520000, 761840000, 290800000, 411120000, 531440000, 340890000, 461210000, 581530000, 150340000, 390980000, 511300000, 511300001, 631620000, 802030000, 681710000, 200430000, 320750000, 320750001, 441070000, 561390000, 922350000, 491160000, 491160001, 611480000, 611480001, 731800000, 420930000, 420930001, 541250000, 541250001, 661570000, 431170000, 310850000, 551490000, 360940000, 481260000, 601580000, 411030000, 531350000, 942400000, 822080000, 220480000, 340800000, 581440000, 701760000, 461120000, 390890000, 390890001, 511210000, 631530000, 751850000, 440980000, 561300000, 681620000, 330900000, 451220000, 571540000, 20030000, 380990000, 501310000, 621630000, 190440000, 310760000, 431080000, 551400000, 962450000, 481170000, 240530000, 360850000, 360850001, 481170001, 842130000, 721810000, 601490000, 290620000, 410940000, 531260000, 410940001, 461030000, 350950000, 471270000, 591590000, 40080000, 280720000, 401040000, 521360000, 210490000, 812090000, 932410000, 330810000, 451130000, 571450000, 260580000, 380900000, 501220000, 621540000, 741860000, 982500000, 862180000, 430990000, 551310000, 671630000, 430990001, 10040000, 481080000, 371000000, 491320000, 60130000, 300770000, 421090000, 541410000, 110220000, 230540000, 832140000, 952460000, 350860000, 350860001, 471180000, 471180001, 591500000, 400950000, 280630000, 521270000, 521270001, 882230000, 761910000, 761910001, 641590000, 451040000, 451040001, 501130000, 501130001, 621450000, 270730000, 391050000, 511370000, 80180000, 320820000, 441140000, 561460000, 130270000, 972510000, 370910000, 491230000, 491230001, 611550000, 180360000, 300680000, 421000000, 541320000, 661640000, 902280000, 781960000, 471090000, 471090001, 591410000, 290780000, 411100000, 531420000, 100230000, 340870000, 461190000, 581510000, 150320000, 390960000, 511280000, 511280001, 631600000, 441050000, 200410000, 320730000, 561370000, 561370001, 922330000, 802010000, 681690000, 320730001, 491140000, 491140001, 611460000, 431150000, 310830000, 551470000, 120280000, 360920000, 481240000, 601560000, 170370000, 411010000, 531330000, 531330001, 651650000, 942380000, 822060000, 461100000, 220460000, 340780000, 581420000, 701740000, 631510000, 440960000, 330880000, 451200000, 571520000, 380970000, 501290000, 501290001, 621610000, 190420000, 551380000, 912340000, 912340001, 310740000, 431060000, 551380001, 962430000, 842110000, 842110001, 721790000, 240510000, 360830000, 360830001, 481150001, 481150000, 601470000, 721790001, 410920000, 350930000, 471250000, 591570000, 401020000, 521340000, 210470000, 932390000, 812070000, 330790000, 451110000, 571430000, 741840000, 260560000, 380880000, 501200000, 621520000, 430970000, 430970001, 481060000, 10020000, 370980000, 491300000, 611620000, 300750000, 421070000, 541390000, 230520000, 832120000, 952440000, 952440001, 350840000, 350840001, 471160000, 471160001, 591480000, 761890000, 280610000, 400930000, 521250000, 521250001, 641570000, 451020000, 461260000, 30070000, 391030000, 511350000, 80160000, 200480000, 922400000, 320800000, 441120000, 561440000, 250570000, 370890000, 491210000, 852170000, 972490000, 491210001, 611530000, 902260000, 300660000, 420980000, 541300000, 661620000, 781940000, 471070000, 481310000, 591390000, 50120000, 290760000, 411080000, 531400000, 100210000, 942450000, 340850000, 340850001, 461170000, 581490000, 270620000, 390940000, 511260000, 511260001, 992540000, 992540001, 631580000, 320710000, 320710001, 441030000, 561350000, 561350001, 681670001, 922310000, 801990000, 801990001, 681670000, 381040000, 501360000, 310810000, 431130000, 551450000, 120260000, 842180000, 962500000, 360900000, 481220000, 601540000, 170350000, 290670000, 531310000, 892270000, 410990000, 410990001, 651630000, 651630001, 340760000, 461080000, 581400000, 701720000, 942360000, 822040000, 280770000, 401090000, 521410000, 631490000, 330860000, 451180000, 571500000, 140310000, 982550000, 380950000, 501270000, 501270001, 621590000, 912320000, 190400000, 310720000, 310720001, 551360000, 792000000, 431040000, 962410000, 481130000, 360810000, 360810001, 601450000, 721770000, 481130001, 300820000, 421140000, 541460000, 350910000, 471230000, 591550000, 160360000, 882280000, 401000000, 521320000, 641640000, 932370000, 210450000, 330770000, 571410000, 691730000, 812050000, 451090000, 451090001, 260540000, 380860000, 501180000, 621500000, 741820000, 320870000, 441190000, 561510000, 370960000, 491280000, 611600000, 180410000, 541370000, 902330000, 300730000, 421050000, 230500000, 350820000, 350820001, 952420000, 952420001, 832100000, 832100001, 471140000, 591460000, 761870000, 280590000, 400910000, 521230000, 521230001, 641550000, 641550001, 340920000, 461240000, 581560000, 391010000, 511330000, 631650000, 200460000, 922380000, 320780000, 441100000, 561420000, 250550000, 370870000, 491190000, 491190001, 611510000, 731830000, 300640000, 420960000, 541280000, 661600000, 781920000, 360970000, 481290000, 601610000, 50100000, 290740000, 411060000, 531380000, 220510000, 340830000, 340830001, 822110000, 942430000, 461150000, 581470000, 270600000, 270600001, 390920000, 511240000, 511240001, 631560000, 751880000, 751880001, 801970000, 441010000, 561330000, 561330001, 681650000, 801970001, 20060000, 381020000, 501340000, 70150000, 431110000, 310790000, 551430000, 120240000, 360880000, 842160000, 962480000, 481200000, 601520000, 892250000, 771930000, 290650000, 410970000, 410970001, 531290000, 651610000, 340740000, 461060000, 581380000, 701700000, 40110000, 401070000, 280750000, 521390000, 90200000, 330840000, 451160000, 571480000, 982530000, 140290000, 380930000, 501250000, 501250001, 741890000, 621570000, 791980000, 310700000, 551340000, 551340001, 671660000, 671660001, 431020000, 431020001, 721750000, 360790000, 360790001, 481110000, 481110001, 601430000, 300800000, 421120000, 541440000, 110250000, 350890000, 471210000, 591530000, 160340000, 280660000, 521300000, 641620000, 761940000, 882260000, 400980000, 330750000, 451070000, 571390000, 691710000, 812030000, 932350000, 380840000, 501160000, 621480000, 741800000, 320850000, 441170000, 561490000, 130300000, 370940000, 491260000, 611580000, 180390000, 300710000, 300710001, 541350000, 541350001, 781990000, 781990001, 902310000, 421030000, 471120000, 350800000, 350800001, 591440000, 711760000, 711760001, 952400000, 832080000, 591440001, 400890000, 521210000, 521210001, 641530000, 761850000, 290810000, 531450000, 340900000, 461220000, 581540000, 390990000, 511310000, 631630000, 200440000, 320760000, 561400000, 681720000, 802040000, 922360000, 441080000, 370850000, 491170000, 491170001, 611490000, 731810000, 420940000, 541260000, 661580000, 781900000, 431180000, 551500000, 360950000, 481270000, 601590000, 290720000, 411040000, 531360000, 531360001, 220490000, 340810000, 340810001, 581450000, 942410000, 822090000, 701770000, 461130000, 270580000, 270580001, 390900000, 390900001, 511220000, 511220001, 631540000, 751860000, 440990000, 561310000, 561310001, 681630000, 451230000, 571550000, 20040000, 381000000, 501320000, 621640000, 70130000, 310770000, 431090000, 551410000, 240540000, 360860000, 601500000, 721820000, 842140000, 962460000, 481180000, 290630000, 410950000, 410950001, 531270000, 651590000, 771910000, 461040000, 581360000, 701680000, 350960000, 471280000, 40090000, 280730000, 401050000, 521370000, 210500000, 330820000, 330820001, 451140000, 571460000, 862190000, 741870000, 380910000, 260590000, 501230000, 501230001, 621550000, 982510000, 431000000, 551320000, 481090000, 371010000, 491330000, 601410000, 60140000, 421100000, 300780000, 541420000, 110230000, 350870000, 471190000, 591510000, 882240000, 160320000, 280640000, 400960000, 521280000, 641600000, 761920000, 451050000, 451050001, 571370000, 691690000, 501140000, 621460000, 270740000, 391060000, 511380000, 80190000, 320830000, 441150000, 561470000, 130280000, 370920000, 491240000, 611560000, 180370000, 300690000, 300690001, 421010000, 541330000, 541330001, 902290000, 781970000, 781970001, 661650000, 661650001, 471100000, 471100001, 591420000, 591420001, 290790000, 411110000, 531430000, 340880000, 461200000, 581520000, 150330000, 390970000, 511290000, 631610000, 200420000, 320740000, 441060000, 561380000, 681700000, 922340000, 802020000, 491150000, 611470000, 491150001, 420920000, 541240000, 661560000, 310840000, 431160000, 551480000, 360930000, 481250000, 601570000, 170380000, 170380001, 411020000, 531340000, 531340001, 461110000, 461110001, 220470000, 340790000, 340790001, 581430000, 701750001, 942390000, 822070000, 701750000, 631520000, 631520001, 440970000, 330890000, 451210000, 571530000, 380980000, 501300000, 621620000, 190430000, 912350000, 431070000, 310750000, 551390000, 240520000, 360840000, 481160000, 601480000, 721800000, 721800001, 962440000, 842120000, 410930000, 410930001, 531250000, 651570000, 461020000, 350940000, 471260000, 591580000, 401030000, 521350000, 210480000, 812080000, 932400000, 932400001, 330800000, 451120000, 571440000, 260570000, 380890000, 501210000, 501210001, 621530000, 741850001, 982490000, 741850000, 430980000, 481070000, 10030000, 370990000, 491310000, 60120000, 300760000, 421080000, 541400000, 230530000, 832130000, 952450000, 350850000, 471170000, 471170001, 591490000, 882220000, 280620000, 400940000, 521260000, 641580000, 761900000, 761900001, 451030000, 451030001, 30080000, 501120000, 621440000, 270720000, 391040000, 511360000, 80170000, 200490000, 922410000, 320810000, 441130000, 561450000, 250580000, 972500000, 370900000, 370900001, 491220000, 491220001, 611540000, 611540001, 902270000, 781950000, 781950001, 661630000, 300670000, 420990000, 541310000, 541310001, 471080000, 471080001, 481320000, 591400000, 290770000, 411090000, 531410000, 100220000, 822140000, 942460000, 340860000, 461180000, 581500000, 150310000, 872230000, 992550000, 390950000, 511270000, 631590000, 922320000, 802000000, 441040000, 200400000, 320720000, 561360000, 561360001, 681680000, 491130000, 491130001, 611450000, 431140000, 310820000, 551460000, 120270000, 962510000, 360910000, 481230000, 601550000, 170360000, 411000000, 531320000, 892280000, 411000001, 651640000, 942370000, 822050000, 701730000, 340770000, 340770001, 461090000, 461090001, 581410000, 280780000, 521420000, 631500000, 330870000, 451190000, 571510000, 140320000, 380960000, 501280000, 621600000, 190410000, 551370000, 912330000, 310730000, 431050000, 962420000, 842100000, 481140000, 240500000, 360820000, 601460000, 721780000, 721780001, 410910000, 300830000, 421150000, 541470000, 350920000, 471240000, 591560000, 160370000, 401010000, 521330000, 521330001, 641650000, 210460000, 210460001, 812060000, 932380000, 330780000, 451100000, 451100001, 571420000, 260550000, 380870000, 380870001, 501190000, 501190001, 741830000, 741830001, 621510000, 320880000, 441200000, 561520000, 10010000, 370970000, 491290000, 611610000, 180420000, 902340000, 300740000, 421060000, 541380000, 230510000, 350830000, 832110000, 952430000, 471150000, 471150001, 591470000, 280600000, 400920000, 521240000, 641560000, 761880000, 340930000, 461250000, 581570000, 30060000, 391020000, 511340000, 511340001, 200470000, 922390000, 320790000, 441110000, 561430000, 250560000, 370880000, 491200000, 491200001, 611520000, 611520001, 781930000, 300650000, 420970000, 541290000, 541290001, 661610000, 781930001, 471060000, 360980000, 481300000, 50110000, 290750000, 411070000, 531390000, 100200000, 822120000, 942440000, 340840000, 461160000, 581480000, 992530000, 270610000, 390930000, 511250000, 751890000, 872210000, 631570000, 922300000, 320700000, 441020000, 561340000, 681660000, 801980000, 381030000, 501350000, 70160000, 310800000, 431120000, 551440000, 120250000, 481210000, 962490000, 360890000, 601530000, 290660000, 410980000, 531300000, 531300001, 651620000, 771940000, 771940001, 410980001, 651620001, 701710000, 340750000, 461070000, 461070001, 581390000, 581390001, 280760000, 401080000, 521400000, 330850000, 451170000, 571490000, 140300000, 862220000, 982540000, 380940000, 501260000, 621580000, 912310000, 190390000, 310710000, 551350000, 791990000, 431030000, 551350001, 360800000, 481120000, 601440000, 721760000, 421130000, 300810000, 541450000, 350900000, 471220000, 591540000, 160350000, 521310000, 521310001, 400990000, 641630000, 932360000, 932360001, 812040000, 330760000, 571400000, 691720000, 451080000, 451080001, 380850000, 380850001, 501170000, 501170001, 621490000, 741810000, 320860000, 441180000, 561500000, 370950000, 491270000, 491270001, 611590000, 180400000, 541360000, 902320000, 300720000, 421040000, 952410000, 832090000, 230490000, 350810000, 591450000, 711770000, 711770001, 471130000, 471130001, 280580000, 400900000, 521220000, 641540000, 761860000, 400900001, 340910000, 461230000, 581550000, 391000000, 511320000, 511320001, 631640000, 922370000, 200450000, 320770000, 320770001, 561410000, 802050000, 441090000, 731820000, 250540000, 370860000, 370860001, 491180000, 611500000, 731820001, 491180001, 781910000, 300630000, 420950000, 541270000, 541270001, 661590000}), xscache=None, nlb=201, 202, 203, verbose=False)[source]

Generates a TAPE9 dictionary of cross section & fission product yield data for a set of nuclides.

Parameters
nucsiterable of ints, optional

Set of nuclides in id form

xscacheXSCache, optional

A cross section cache to get cross section data. If None, uses default.

nlblength-3 sequence of ints

Library numbers for activation products, actinides & daugthers, and fission products respectively.

verbosebool, optional

Flag to print status as we go.

Returns
t9dict

The data needed for a TAPE9 file.

pyne.origen22.ACTINIDE_AND_DAUGHTER_NUCS = frozenset({20040000, 812060000, 812070000, 812080000, 812090000, 822060000, 822070000, 822080000, 822090000, 822100000, 822110000, 822120000, 822140000, 832080000, 832090000, 832100000, 832100001, 832110000, 832120000, 832130000, 832140000, 842100000, 842110000, 842110001, 842120000, 842130000, 842140000, 842150000, 842160000, 842180000, 852170000, 862180000, 862190000, 862200000, 862220000, 872210000, 872230000, 882220000, 882230000, 882240000, 882250000, 882260000, 882280000, 892250000, 892270000, 892280000, 902260000, 902270000, 902280000, 902290000, 902300000, 902310000, 902320000, 902330000, 902340000, 912310000, 912320000, 912330000, 912340000, 912340001, 912350000, 922300000, 922310000, 922320000, 922330000, 922340000, 922350000, 922360000, 922370000, 922380000, 922390000, 922400000, 922410000, 932350000, 932360000, 932360001, 932370000, 932380000, 932390000, 932400000, 932400001, 932410000, 942360000, 942370000, 942380000, 942390000, 942400000, 942410000, 942420000, 942430000, 942440000, 942450000, 942460000, 952390000, 952400000, 952410000, 952420000, 952420001, 952430000, 952440000, 952440001, 952450000, 952460000, 962410000, 962420000, 962430000, 962440000, 962450000, 962460000, 962470000, 962480000, 962490000, 962500000, 962510000, 972490000, 972500000, 972510000, 982490000, 982500000, 982510000, 982520000, 982530000, 982540000, 982550000, 992530000, 992540000, 992540001, 992550000})

Set of actinide & daughter nuclides in id form.

pyne.origen22.ACTINIDE_FIELDS = ('sigma_alpha', 'sigma_f')

The cross section data keys for actinides & daughters in a tape9 dictionary.

pyne.origen22.ACTIVATION_PRODUCT_FIELDS = ('sigma_3n', 'sigma_p')

The cross section data keys for activation products in a tape9 dictionary.

pyne.origen22.ACTIVATION_PRODUCT_NUCS = frozenset({10010000, 10020000, 10030000, 10040000, 20030000, 20040000, 20060000, 30060000, 30070000, 30080000, 40080000, 40090000, 40100000, 40110000, 50100000, 50110000, 50120000, 60120000, 60130000, 60140000, 60150000, 70130000, 70140000, 70150000, 70160000, 80160000, 80170000, 80180000, 80190000, 90190000, 90200000, 100200000, 100210000, 100220000, 100230000, 110220000, 110230000, 110240000, 110240001, 110250000, 120240000, 120250000, 120260000, 120270000, 120280000, 130270000, 130280000, 130290000, 130300000, 140280000, 140290000, 140300000, 140310000, 140320000, 150310000, 150320000, 150330000, 150340000, 160320000, 160330000, 160340000, 160350000, 160360000, 160370000, 170350000, 170360000, 170370000, 170380000, 170380001, 180360000, 180370000, 180380000, 180390000, 180400000, 180410000, 180420000, 190390000, 190400000, 190410000, 190420000, 190430000, 190440000, 200400000, 200410000, 200420000, 200430000, 200440000, 200450000, 200460000, 200470000, 200480000, 200490000, 210450000, 210460000, 210460001, 210470000, 210480000, 210490000, 210500000, 220460000, 220470000, 220480000, 220490000, 220500000, 220510000, 230490000, 230500000, 230510000, 230520000, 230530000, 230540000, 240500000, 240510000, 240520000, 240530000, 240540000, 240550000, 250540000, 250550000, 250560000, 250570000, 250580000, 260540000, 260550000, 260560000, 260570000, 260580000, 260590000, 270580000, 270580001, 270590000, 270600000, 270600001, 270610000, 270620000, 280580000, 280590000, 280600000, 280610000, 280620000, 280630000, 280640000, 280650000, 280660000, 290620000, 290630000, 290640000, 290650000, 290660000, 290670000, 300630000, 300640000, 300650000, 300660000, 300670000, 300680000, 300690000, 300690001, 300700000, 300710000, 300710001, 310690000, 310700000, 310710000, 310720000, 310720001, 320700000, 320710000, 320710001, 320720000, 320730000, 320740000, 320750000, 320750001, 320760000, 320770000, 320770001, 330750000, 330760000, 330770000, 340740000, 340750000, 340760000, 340770000, 340770001, 340780000, 340790000, 340790001, 340800000, 340810000, 340810001, 340820000, 340830000, 340830001, 350790000, 350800000, 350800001, 350810000, 350820000, 350820001, 350830000, 360780000, 360790000, 360790001, 360800000, 360810000, 360810001, 360820000, 360830000, 360830001, 360840000, 360850000, 360850001, 360860000, 360870000, 360880000, 370850000, 370860000, 370860001, 370870000, 370880000, 370890000, 380840000, 380850000, 380850001, 380860000, 380870000, 380870001, 380880000, 380890000, 380900000, 380910000, 380930000, 390890000, 390890001, 390900000, 390900001, 390910000, 390920000, 390930000, 390940000, 390960000, 400890000, 400900000, 400910000, 400920000, 400930000, 400940000, 400950000, 400960000, 400970000, 410910000, 410920000, 410930000, 410930001, 410940000, 410950000, 410950001, 410960000, 410970000, 410970001, 410980000, 411000000, 420920000, 420930000, 420930001, 420940000, 420950000, 420960000, 420970000, 420980000, 420990000, 421000000, 421010000, 430970000, 430970001, 430980000, 430990000, 431000000, 431010000, 440960000, 440970000, 440980000, 440990000, 441000000, 441010000, 441020000, 441030000, 441040000, 441050000, 441060000, 441070000, 451020000, 451030000, 451040000, 451040001, 451050000, 451050001, 451060000, 451060001, 451070000, 461020000, 461030000, 461040000, 461050000, 461060000, 461070000, 461070001, 461080000, 461090000, 461090001, 461100000, 461110000, 461110001, 471060000, 471070000, 471080000, 471080001, 471090000, 471090001, 471100000, 471100001, 471110000, 471110001, 471120000, 481060000, 481070000, 481080000, 481090000, 481100000, 481110000, 481110001, 481120000, 481130000, 481140000, 481150000, 481150001, 481160000, 481170000, 481170001, 481190000, 481210000, 491130000, 491130001, 491140000, 491140001, 491150000, 491160000, 491160001, 491170000, 491170001, 491180000, 491190000, 491190001, 491200000, 491200001, 491210000, 501120000, 501130000, 501130001, 501140000, 501150000, 501160000, 501170000, 501170001, 501180000, 501190000, 501190001, 501200000, 501210000, 501210001, 501220000, 501230000, 501230001, 501240000, 501250000, 501250001, 511210000, 511220000, 511220001, 511230000, 511240000, 511240001, 511250000, 511260000, 511260001, 521200000, 521210000, 521210001, 521220000, 521230000, 521230001, 521240000, 521250000, 521250001, 521260000, 521270000, 521270001, 521280000, 521290000, 521290001, 521300000, 521310000, 521310001, 531250000, 531260000, 531270000, 531280000, 531290000, 531300000, 531300001, 531310000, 531320000, 541240000, 541250000, 541250001, 541260000, 541270000, 541270001, 541280000, 541290000, 541290001, 541300000, 541310000, 541310001, 541320000, 541330000, 541330001, 541340000, 541350000, 541350001, 541360000, 541370000, 551310000, 551320000, 551330000, 551340000, 551340001, 551350000, 551360000, 551370000, 551380000, 561300000, 561310000, 561310001, 561320000, 561330000, 561330001, 561340000, 561350000, 561350001, 561360000, 561360001, 561370000, 561370001, 561380000, 561390000, 561400000, 561410000, 571370000, 571380000, 571390000, 571400000, 571410000, 581360000, 581370000, 581370001, 581380000, 581390000, 581390001, 581400000, 581410000, 581420000, 581430000, 581440000, 581450000, 591410000, 591420000, 591420001, 591430000, 591440000, 591450000, 601420000, 601430000, 601440000, 601450000, 601460000, 601470000, 601480000, 601490000, 601500000, 601510000, 611450000, 611470000, 611480000, 611480001, 611490000, 611500000, 611510000, 611520000, 621440000, 621450000, 621460000, 621470000, 621480000, 621490000, 621500000, 621510000, 621520000, 621530000, 621540000, 621550000, 631510000, 631520000, 631520001, 631530000, 631540000, 631550000, 631560000, 641520000, 641530000, 641540000, 641550000, 641550001, 641560000, 641570000, 641580000, 641590000, 641600000, 641610000, 641620000, 651570000, 651590000, 651600000, 651610000, 651620000, 661560000, 661570000, 661580000, 661590000, 661600000, 661610000, 661620000, 661630000, 661640000, 661650000, 661650001, 661660000, 671630000, 671650000, 671660000, 671660001, 681620000, 681630000, 681640000, 681650000, 681660000, 681670000, 681670001, 681680000, 681690000, 681700000, 681710000, 681720000, 691690000, 691700000, 691700001, 691710000, 691720000, 691730000, 701680000, 701690000, 701700000, 701710000, 701720000, 701730000, 701740000, 701750000, 701750001, 701760000, 701770000, 711750000, 711760000, 711760001, 711770000, 711770001, 721740000, 721750000, 721760000, 721770000, 721780000, 721780001, 721790000, 721790001, 721800000, 721800001, 721810000, 721820000, 731800000, 731810000, 731820000, 731820001, 731830000, 741800000, 741810000, 741820000, 741830000, 741830001, 741840000, 741850000, 741850001, 741860000, 741870000, 741880000, 741890000, 751850000, 751860000, 751870000, 751880000, 751880001, 751890000, 761840000, 761850000, 761860000, 761870000, 761880000, 761890000, 761900000, 761900001, 761910000, 761910001, 761920000, 761930000, 761940000, 771910000, 771920000, 771920001, 771930000, 771940000, 771940001, 781900000, 781910000, 781920000, 781930000, 781930001, 781940000, 781950000, 781950001, 781960000, 781970000, 781970001, 781980000, 781990000, 781990001, 791970000, 791980000, 791990000, 792000000, 801960000, 801970000, 801970001, 801980000, 801990000, 801990001, 802000000, 802010000, 802020000, 802030000, 802040000, 802050000, 812030000, 812040000, 812050000, 812060000, 822040000, 822050000, 822060000, 822070000, 822080000, 822090000, 832080000, 832090000, 832100000, 832100001, 832110000, 842100000, 842110000, 842110001})

Set of activation product nuclides in id form.

pyne.origen22.DECAY_FIELDS = ('half_life', 'frac_beta_minus_x', 'frac_beta_plus_or_electron_capture', 'frac_beta_plus_or_electron_capture_x', 'frac_alpha', 'frac_isomeric_transition', 'frac_spont_fiss', 'frac_beta_n', 'recoverable_energy', 'frac_natural_abund', 'inhilation_concentration', 'ingestion_concentration')

The decay data keys in a tape9 dictionary.

pyne.origen22.FISSION_PRODUCT_FIELDS = ('sigma_3n', 'sigma_p', 'TH232_fiss_yield', 'U233_fiss_yield', 'U235_fiss_yield', 'U238_fiss_yield', 'PU239_fiss_yield', 'PU241_fiss_yield', 'CM245_fiss_yield', 'CF249_fiss_yield')

The cross section & yield data keys for fission products in a tape9 dictionary.

pyne.origen22.FISSION_PRODUCT_NUCS = frozenset({10030000, 30060000, 30070000, 40090000, 40100000, 60140000, 270720000, 270730000, 270740000, 270750000, 280660000, 280720000, 280730000, 280740000, 280750000, 280760000, 280770000, 280780000, 290660000, 290670000, 290720000, 290730000, 290740000, 290750000, 290760000, 290770000, 290780000, 290790000, 290800000, 290810000, 300660000, 300670000, 300680000, 300690000, 300690001, 300700000, 300710000, 300710001, 300720000, 300730000, 300740000, 300750000, 300760000, 300770000, 300780000, 300790000, 300800000, 300810000, 300820000, 300830000, 310690000, 310700000, 310710000, 310720000, 310730000, 310740000, 310750000, 310760000, 310770000, 310780000, 310790000, 310800000, 310810000, 310820000, 310830000, 310840000, 310850000, 320700000, 320710000, 320710001, 320720000, 320730000, 320730001, 320740000, 320750000, 320750001, 320760000, 320770000, 320770001, 320780000, 320790000, 320800000, 320810000, 320820000, 320830000, 320840000, 320850000, 320860000, 320870000, 320880000, 330750000, 330760000, 330770000, 330780000, 330790000, 330800000, 330810000, 330820000, 330820001, 330830000, 330840000, 330850000, 330860000, 330870000, 330880000, 330890000, 330900000, 340760000, 340770000, 340770001, 340780000, 340790000, 340790001, 340800000, 340810000, 340810001, 340820000, 340830000, 340830001, 340840000, 340850000, 340850001, 340860000, 340870000, 340880000, 340890000, 340900000, 340910000, 340920000, 340930000, 350790000, 350790001, 350800000, 350800001, 350810000, 350820000, 350820001, 350830000, 350840000, 350840001, 350850000, 350860000, 350860001, 350870000, 350880000, 350890000, 350900000, 350910000, 350920000, 350930000, 350940000, 350950000, 350960000, 360790000, 360800000, 360810000, 360810001, 360820000, 360830000, 360830001, 360840000, 360850000, 360850001, 360860000, 360870000, 360880000, 360890000, 360900000, 360910000, 360920000, 360930000, 360940000, 360950000, 360960000, 360970000, 360980000, 370850000, 370860000, 370860001, 370870000, 370880000, 370890000, 370900000, 370900001, 370910000, 370920000, 370930000, 370940000, 370950000, 370960000, 370970000, 370980000, 370990000, 371000000, 371010000, 380860000, 380870000, 380870001, 380880000, 380890000, 380900000, 380910000, 380920000, 380930000, 380940000, 380950000, 380960000, 380970000, 380980000, 380990000, 381000000, 381010000, 381020000, 381030000, 381040000, 390890000, 390890001, 390900000, 390900001, 390910000, 390910001, 390920000, 390930000, 390940000, 390950000, 390960000, 390970000, 390980000, 390990000, 391000000, 391010000, 391020000, 391030000, 391040000, 391050000, 391060000, 391070000, 400900000, 400900001, 400910000, 400920000, 400930000, 400940000, 400950000, 400960000, 400970000, 400980000, 400990000, 401000000, 401010000, 401020000, 401030000, 401040000, 401050000, 401060000, 401070000, 401080000, 401090000, 410910000, 410920000, 410930000, 410930001, 410940000, 410940001, 410950000, 410950001, 410960000, 410970000, 410970001, 410980000, 410980001, 410990000, 410990001, 411000000, 411000001, 411010000, 411020000, 411030000, 411040000, 411050000, 411060000, 411070000, 411080000, 411090000, 411100000, 411110000, 411120000, 420950000, 420960000, 420970000, 420980000, 420990000, 421000000, 421010000, 421020000, 421030000, 421040000, 421050000, 421060000, 421070000, 421080000, 421090000, 421100000, 421110000, 421120000, 421130000, 421140000, 421150000, 430980000, 430990000, 430990001, 431000000, 431010000, 431020000, 431020001, 431030000, 431040000, 431050000, 431060000, 431070000, 431080000, 431090000, 431100000, 431110000, 431120000, 431130000, 431140000, 431150000, 431160000, 431170000, 431180000, 440990000, 441000000, 441010000, 441020000, 441030000, 441040000, 441050000, 441060000, 441070000, 441080000, 441090000, 441100000, 441110000, 441120000, 441130000, 441140000, 441150000, 441160000, 441170000, 441180000, 441190000, 441200000, 451020000, 451030000, 451030001, 451040000, 451040001, 451050000, 451050001, 451060000, 451060001, 451070000, 451080000, 451080001, 451090000, 451090001, 451100000, 451100001, 451110000, 451120000, 451130000, 451140000, 451150000, 451160000, 451170000, 451180000, 451190000, 451200000, 451210000, 451220000, 451230000, 461020000, 461040000, 461050000, 461060000, 461070000, 461070001, 461080000, 461090000, 461090001, 461100000, 461110000, 461110001, 461120000, 461130000, 461140000, 461150000, 461160000, 461170000, 461180000, 461190000, 461200000, 461210000, 461220000, 461230000, 461240000, 461250000, 461260000, 471060000, 471070000, 471080000, 471080001, 471090000, 471090001, 471100000, 471100001, 471110000, 471110001, 471120000, 471130000, 471130001, 471140000, 471150000, 471150001, 471160000, 471160001, 471170000, 471170001, 471180000, 471180001, 471190000, 471200000, 471210000, 471220000, 471230000, 471240000, 471250000, 471260000, 471270000, 471280000, 481080000, 481090000, 481100000, 481110000, 481110001, 481120000, 481130000, 481130001, 481140000, 481150000, 481150001, 481160000, 481170000, 481170001, 481180000, 481190000, 481190001, 481200000, 481210000, 481220000, 481230000, 481240000, 481250000, 481260000, 481270000, 481280000, 481290000, 481300000, 481310000, 481320000, 491130000, 491130001, 491140000, 491140001, 491150000, 491150001, 491160000, 491160001, 491170000, 491170001, 491180000, 491180001, 491190000, 491190001, 491200000, 491200001, 491210000, 491210001, 491220000, 491220001, 491230000, 491230001, 491240000, 491250000, 491250001, 491260000, 491270000, 491270001, 491280000, 491290000, 491300000, 491310000, 491320000, 491330000, 491340000, 501140000, 501150000, 501160000, 501170000, 501170001, 501180000, 501190000, 501190001, 501200000, 501210000, 501210001, 501220000, 501230000, 501230001, 501240000, 501250000, 501250001, 501260000, 501270000, 501270001, 501280000, 501290000, 501290001, 501300000, 501310000, 501320000, 501330000, 501340000, 501350000, 501360000, 511210000, 511220000, 511220001, 511230000, 511240000, 511240001, 511250000, 511260000, 511260001, 511270000, 511280000, 511280001, 511290000, 511300000, 511300001, 511310000, 511320000, 511320001, 511330000, 511340000, 511340001, 511350000, 511360000, 511370000, 511380000, 511390000, 521220000, 521230000, 521230001, 521240000, 521250000, 521250001, 521260000, 521270000, 521270001, 521280000, 521290000, 521290001, 521300000, 521310000, 521310001, 521320000, 521330000, 521330001, 521340000, 521350000, 521360000, 521370000, 521380000, 521390000, 521400000, 521410000, 521420000, 531270000, 531280000, 531290000, 531300000, 531300001, 531310000, 531320000, 531330000, 531330001, 531340000, 531340001, 531350000, 531360000, 531360001, 531370000, 531380000, 531390000, 531400000, 531410000, 531420000, 531430000, 531440000, 531450000, 541260000, 541270000, 541280000, 541290000, 541290001, 541300000, 541310000, 541310001, 541320000, 541330000, 541330001, 541340000, 541340001, 541350000, 541350001, 541360000, 541370000, 541380000, 541390000, 541400000, 541410000, 541420000, 541430000, 541440000, 541450000, 541460000, 541470000, 551320000, 551330000, 551340000, 551340001, 551350000, 551350001, 551360000, 551370000, 551380000, 551380001, 551390000, 551400000, 551410000, 551420000, 551430000, 551440000, 551450000, 551460000, 551470000, 551480000, 551490000, 551500000, 561320000, 561330000, 561340000, 561350000, 561350001, 561360000, 561360001, 561370000, 561370001, 561380000, 561390000, 561400000, 561410000, 561420000, 561430000, 561440000, 561450000, 561460000, 561470000, 561480000, 561490000, 561500000, 561510000, 561520000, 571380000, 571390000, 571400000, 571410000, 571420000, 571430000, 571440000, 571450000, 571460000, 571470000, 571480000, 571490000, 571500000, 571510000, 571520000, 571530000, 571540000, 571550000, 581390000, 581400000, 581410000, 581420000, 581430000, 581440000, 581450000, 581460000, 581470000, 581480000, 581490000, 581500000, 581510000, 581520000, 581530000, 581540000, 581550000, 581560000, 581570000, 591390000, 591400000, 591410000, 591420000, 591420001, 591430000, 591440000, 591440001, 591450000, 591460000, 591470000, 591480000, 591490000, 591500000, 591510000, 591520000, 591530000, 591540000, 591550000, 591560000, 591570000, 591580000, 591590000, 601410000, 601420000, 601430000, 601440000, 601450000, 601460000, 601470000, 601480000, 601490000, 601500000, 601510000, 601520000, 601530000, 601540000, 601550000, 601560000, 601570000, 601580000, 601590000, 601600000, 601610000, 611450000, 611460000, 611470000, 611480000, 611480001, 611490000, 611500000, 611510000, 611520000, 611520001, 611530000, 611540000, 611540001, 611550000, 611560000, 611570000, 611580000, 611590000, 611600000, 611610000, 611620000, 621450000, 621460000, 621470000, 621480000, 621490000, 621500000, 621510000, 621520000, 621530000, 621540000, 621550000, 621560000, 621570000, 621580000, 621590000, 621600000, 621610000, 621620000, 621630000, 621640000, 621650000, 631490000, 631500000, 631510000, 631520000, 631520001, 631530000, 631540000, 631550000, 631560000, 631570000, 631580000, 631590000, 631600000, 631610000, 631620000, 631630000, 631640000, 631650000, 641520000, 641530000, 641540000, 641550000, 641550001, 641560000, 641570000, 641580000, 641590000, 641600000, 641610000, 641620000, 641630000, 641640000, 641650000, 651590000, 651600000, 651610000, 651620000, 651620001, 651630000, 651630001, 651640000, 651650000, 661600000, 661610000, 661620000, 661630000, 661640000, 661650000, 661650001, 661660000, 671650000, 671660000, 671660001, 681660000, 681670000, 681670001, 681680000, 681690000, 681700000, 681710000, 681720000, 691690000, 691700000, 691700001, 691710000, 691720000, 701680000, 701690000, 701700000, 701710000, 701720000})

Set of fission product nuclides in id form.

pyne.origen22.NUCS = frozenset({10010000, 10020000, 10030000, 10040000, 20030000, 20040000, 20060000, 30060000, 30070000, 30080000, 40080000, 40090000, 40100000, 40110000, 50100000, 50110000, 50120000, 60120000, 60130000, 60140000, 60150000, 70130000, 70140000, 70150000, 70160000, 80160000, 80170000, 80180000, 80190000, 90190000, 90200000, 100200000, 100210000, 100220000, 100230000, 110220000, 110230000, 110240000, 110240001, 110250000, 120240000, 120250000, 120260000, 120270000, 120280000, 130270000, 130280000, 130290000, 130300000, 140280000, 140290000, 140300000, 140310000, 140320000, 150310000, 150320000, 150330000, 150340000, 160320000, 160330000, 160340000, 160350000, 160360000, 160370000, 170350000, 170360000, 170370000, 170380000, 170380001, 180360000, 180370000, 180380000, 180390000, 180400000, 180410000, 180420000, 190390000, 190400000, 190410000, 190420000, 190430000, 190440000, 200400000, 200410000, 200420000, 200430000, 200440000, 200450000, 200460000, 200470000, 200480000, 200490000, 210450000, 210460000, 210460001, 210470000, 210480000, 210490000, 210500000, 220460000, 220470000, 220480000, 220490000, 220500000, 220510000, 230490000, 230500000, 230510000, 230520000, 230530000, 230540000, 240500000, 240510000, 240520000, 240530000, 240540000, 240550000, 250540000, 250550000, 250560000, 250570000, 250580000, 260540000, 260550000, 260560000, 260570000, 260580000, 260590000, 270580000, 270580001, 270590000, 270600000, 270600001, 270610000, 270620000, 270720000, 270730000, 270740000, 270750000, 280580000, 280590000, 280600000, 280610000, 280620000, 280630000, 280640000, 280650000, 280660000, 280720000, 280730000, 280740000, 280750000, 280760000, 280770000, 280780000, 290620000, 290630000, 290640000, 290650000, 290660000, 290670000, 290720000, 290730000, 290740000, 290750000, 290760000, 290770000, 290780000, 290790000, 290800000, 290810000, 300630000, 300640000, 300650000, 300660000, 300670000, 300680000, 300690000, 300690001, 300700000, 300710000, 300710001, 300720000, 300730000, 300740000, 300750000, 300760000, 300770000, 300780000, 300790000, 300800000, 300810000, 300820000, 300830000, 310690000, 310700000, 310710000, 310720000, 310720001, 310730000, 310740000, 310750000, 310760000, 310770000, 310780000, 310790000, 310800000, 310810000, 310820000, 310830000, 310840000, 310850000, 320700000, 320710000, 320710001, 320720000, 320730000, 320730001, 320740000, 320750000, 320750001, 320760000, 320770000, 320770001, 320780000, 320790000, 320800000, 320810000, 320820000, 320830000, 320840000, 320850000, 320860000, 320870000, 320880000, 330750000, 330760000, 330770000, 330780000, 330790000, 330800000, 330810000, 330820000, 330820001, 330830000, 330840000, 330850000, 330860000, 330870000, 330880000, 330890000, 330900000, 340740000, 340750000, 340760000, 340770000, 340770001, 340780000, 340790000, 340790001, 340800000, 340810000, 340810001, 340820000, 340830000, 340830001, 340840000, 340850000, 340850001, 340860000, 340870000, 340880000, 340890000, 340900000, 340910000, 340920000, 340930000, 350790000, 350790001, 350800000, 350800001, 350810000, 350820000, 350820001, 350830000, 350840000, 350840001, 350850000, 350860000, 350860001, 350870000, 350880000, 350890000, 350900000, 350910000, 350920000, 350930000, 350940000, 350950000, 350960000, 360780000, 360790000, 360790001, 360800000, 360810000, 360810001, 360820000, 360830000, 360830001, 360840000, 360850000, 360850001, 360860000, 360870000, 360880000, 360890000, 360900000, 360910000, 360920000, 360930000, 360940000, 360950000, 360960000, 360970000, 360980000, 370850000, 370860000, 370860001, 370870000, 370880000, 370890000, 370900000, 370900001, 370910000, 370920000, 370930000, 370940000, 370950000, 370960000, 370970000, 370980000, 370990000, 371000000, 371010000, 380840000, 380850000, 380850001, 380860000, 380870000, 380870001, 380880000, 380890000, 380900000, 380910000, 380920000, 380930000, 380940000, 380950000, 380960000, 380970000, 380980000, 380990000, 381000000, 381010000, 381020000, 381030000, 381040000, 390890000, 390890001, 390900000, 390900001, 390910000, 390910001, 390920000, 390930000, 390940000, 390950000, 390960000, 390970000, 390980000, 390990000, 391000000, 391010000, 391020000, 391030000, 391040000, 391050000, 391060000, 391070000, 400890000, 400900000, 400900001, 400910000, 400920000, 400930000, 400940000, 400950000, 400960000, 400970000, 400980000, 400990000, 401000000, 401010000, 401020000, 401030000, 401040000, 401050000, 401060000, 401070000, 401080000, 401090000, 410910000, 410920000, 410930000, 410930001, 410940000, 410940001, 410950000, 410950001, 410960000, 410970000, 410970001, 410980000, 410980001, 410990000, 410990001, 411000000, 411000001, 411010000, 411020000, 411030000, 411040000, 411050000, 411060000, 411070000, 411080000, 411090000, 411100000, 411110000, 411120000, 420920000, 420930000, 420930001, 420940000, 420950000, 420960000, 420970000, 420980000, 420990000, 421000000, 421010000, 421020000, 421030000, 421040000, 421050000, 421060000, 421070000, 421080000, 421090000, 421100000, 421110000, 421120000, 421130000, 421140000, 421150000, 430970000, 430970001, 430980000, 430990000, 430990001, 431000000, 431010000, 431020000, 431020001, 431030000, 431040000, 431050000, 431060000, 431070000, 431080000, 431090000, 431100000, 431110000, 431120000, 431130000, 431140000, 431150000, 431160000, 431170000, 431180000, 440960000, 440970000, 440980000, 440990000, 441000000, 441010000, 441020000, 441030000, 441040000, 441050000, 441060000, 441070000, 441080000, 441090000, 441100000, 441110000, 441120000, 441130000, 441140000, 441150000, 441160000, 441170000, 441180000, 441190000, 441200000, 451020000, 451030000, 451030001, 451040000, 451040001, 451050000, 451050001, 451060000, 451060001, 451070000, 451080000, 451080001, 451090000, 451090001, 451100000, 451100001, 451110000, 451120000, 451130000, 451140000, 451150000, 451160000, 451170000, 451180000, 451190000, 451200000, 451210000, 451220000, 451230000, 461020000, 461030000, 461040000, 461050000, 461060000, 461070000, 461070001, 461080000, 461090000, 461090001, 461100000, 461110000, 461110001, 461120000, 461130000, 461140000, 461150000, 461160000, 461170000, 461180000, 461190000, 461200000, 461210000, 461220000, 461230000, 461240000, 461250000, 461260000, 471060000, 471070000, 471080000, 471080001, 471090000, 471090001, 471100000, 471100001, 471110000, 471110001, 471120000, 471130000, 471130001, 471140000, 471150000, 471150001, 471160000, 471160001, 471170000, 471170001, 471180000, 471180001, 471190000, 471200000, 471210000, 471220000, 471230000, 471240000, 471250000, 471260000, 471270000, 471280000, 481060000, 481070000, 481080000, 481090000, 481100000, 481110000, 481110001, 481120000, 481130000, 481130001, 481140000, 481150000, 481150001, 481160000, 481170000, 481170001, 481180000, 481190000, 481190001, 481200000, 481210000, 481220000, 481230000, 481240000, 481250000, 481260000, 481270000, 481280000, 481290000, 481300000, 481310000, 481320000, 491130000, 491130001, 491140000, 491140001, 491150000, 491150001, 491160000, 491160001, 491170000, 491170001, 491180000, 491180001, 491190000, 491190001, 491200000, 491200001, 491210000, 491210001, 491220000, 491220001, 491230000, 491230001, 491240000, 491250000, 491250001, 491260000, 491270000, 491270001, 491280000, 491290000, 491300000, 491310000, 491320000, 491330000, 491340000, 501120000, 501130000, 501130001, 501140000, 501150000, 501160000, 501170000, 501170001, 501180000, 501190000, 501190001, 501200000, 501210000, 501210001, 501220000, 501230000, 501230001, 501240000, 501250000, 501250001, 501260000, 501270000, 501270001, 501280000, 501290000, 501290001, 501300000, 501310000, 501320000, 501330000, 501340000, 501350000, 501360000, 511210000, 511220000, 511220001, 511230000, 511240000, 511240001, 511250000, 511260000, 511260001, 511270000, 511280000, 511280001, 511290000, 511300000, 511300001, 511310000, 511320000, 511320001, 511330000, 511340000, 511340001, 511350000, 511360000, 511370000, 511380000, 511390000, 521200000, 521210000, 521210001, 521220000, 521230000, 521230001, 521240000, 521250000, 521250001, 521260000, 521270000, 521270001, 521280000, 521290000, 521290001, 521300000, 521310000, 521310001, 521320000, 521330000, 521330001, 521340000, 521350000, 521360000, 521370000, 521380000, 521390000, 521400000, 521410000, 521420000, 531250000, 531260000, 531270000, 531280000, 531290000, 531300000, 531300001, 531310000, 531320000, 531330000, 531330001, 531340000, 531340001, 531350000, 531360000, 531360001, 531370000, 531380000, 531390000, 531400000, 531410000, 531420000, 531430000, 531440000, 531450000, 541240000, 541250000, 541250001, 541260000, 541270000, 541270001, 541280000, 541290000, 541290001, 541300000, 541310000, 541310001, 541320000, 541330000, 541330001, 541340000, 541340001, 541350000, 541350001, 541360000, 541370000, 541380000, 541390000, 541400000, 541410000, 541420000, 541430000, 541440000, 541450000, 541460000, 541470000, 551310000, 551320000, 551330000, 551340000, 551340001, 551350000, 551350001, 551360000, 551370000, 551380000, 551380001, 551390000, 551400000, 551410000, 551420000, 551430000, 551440000, 551450000, 551460000, 551470000, 551480000, 551490000, 551500000, 561300000, 561310000, 561310001, 561320000, 561330000, 561330001, 561340000, 561350000, 561350001, 561360000, 561360001, 561370000, 561370001, 561380000, 561390000, 561400000, 561410000, 561420000, 561430000, 561440000, 561450000, 561460000, 561470000, 561480000, 561490000, 561500000, 561510000, 561520000, 571370000, 571380000, 571390000, 571400000, 571410000, 571420000, 571430000, 571440000, 571450000, 571460000, 571470000, 571480000, 571490000, 571500000, 571510000, 571520000, 571530000, 571540000, 571550000, 581360000, 581370000, 581370001, 581380000, 581390000, 581390001, 581400000, 581410000, 581420000, 581430000, 581440000, 581450000, 581460000, 581470000, 581480000, 581490000, 581500000, 581510000, 581520000, 581530000, 581540000, 581550000, 581560000, 581570000, 591390000, 591400000, 591410000, 591420000, 591420001, 591430000, 591440000, 591440001, 591450000, 591460000, 591470000, 591480000, 591490000, 591500000, 591510000, 591520000, 591530000, 591540000, 591550000, 591560000, 591570000, 591580000, 591590000, 601410000, 601420000, 601430000, 601440000, 601450000, 601460000, 601470000, 601480000, 601490000, 601500000, 601510000, 601520000, 601530000, 601540000, 601550000, 601560000, 601570000, 601580000, 601590000, 601600000, 601610000, 611450000, 611460000, 611470000, 611480000, 611480001, 611490000, 611500000, 611510000, 611520000, 611520001, 611530000, 611540000, 611540001, 611550000, 611560000, 611570000, 611580000, 611590000, 611600000, 611610000, 611620000, 621440000, 621450000, 621460000, 621470000, 621480000, 621490000, 621500000, 621510000, 621520000, 621530000, 621540000, 621550000, 621560000, 621570000, 621580000, 621590000, 621600000, 621610000, 621620000, 621630000, 621640000, 621650000, 631490000, 631500000, 631510000, 631520000, 631520001, 631530000, 631540000, 631550000, 631560000, 631570000, 631580000, 631590000, 631600000, 631610000, 631620000, 631630000, 631640000, 631650000, 641520000, 641530000, 641540000, 641550000, 641550001, 641560000, 641570000, 641580000, 641590000, 641600000, 641610000, 641620000, 641630000, 641640000, 641650000, 651570000, 651590000, 651600000, 651610000, 651620000, 651620001, 651630000, 651630001, 651640000, 651650000, 661560000, 661570000, 661580000, 661590000, 661600000, 661610000, 661620000, 661630000, 661640000, 661650000, 661650001, 661660000, 671630000, 671650000, 671660000, 671660001, 681620000, 681630000, 681640000, 681650000, 681660000, 681670000, 681670001, 681680000, 681690000, 681700000, 681710000, 681720000, 691690000, 691700000, 691700001, 691710000, 691720000, 691730000, 701680000, 701690000, 701700000, 701710000, 701720000, 701730000, 701740000, 701750000, 701750001, 701760000, 701770000, 711750000, 711760000, 711760001, 711770000, 711770001, 721740000, 721750000, 721760000, 721770000, 721780000, 721780001, 721790000, 721790001, 721800000, 721800001, 721810000, 721820000, 731800000, 731810000, 731820000, 731820001, 731830000, 741800000, 741810000, 741820000, 741830000, 741830001, 741840000, 741850000, 741850001, 741860000, 741870000, 741880000, 741890000, 751850000, 751860000, 751870000, 751880000, 751880001, 751890000, 761840000, 761850000, 761860000, 761870000, 761880000, 761890000, 761900000, 761900001, 761910000, 761910001, 761920000, 761930000, 761940000, 771910000, 771920000, 771920001, 771930000, 771940000, 771940001, 781900000, 781910000, 781920000, 781930000, 781930001, 781940000, 781950000, 781950001, 781960000, 781970000, 781970001, 781980000, 781990000, 781990001, 791970000, 791980000, 791990000, 792000000, 801960000, 801970000, 801970001, 801980000, 801990000, 801990001, 802000000, 802010000, 802020000, 802030000, 802040000, 802050000, 812030000, 812040000, 812050000, 812060000, 812070000, 812080000, 812090000, 822040000, 822050000, 822060000, 822070000, 822080000, 822090000, 822100000, 822110000, 822120000, 822140000, 832080000, 832090000, 832100000, 832100001, 832110000, 832120000, 832130000, 832140000, 842100000, 842110000, 842110001, 842120000, 842130000, 842140000, 842150000, 842160000, 842180000, 852170000, 862180000, 862190000, 862200000, 862220000, 872210000, 872230000, 882220000, 882230000, 882240000, 882250000, 882260000, 882280000, 892250000, 892270000, 892280000, 902260000, 902270000, 902280000, 902290000, 902300000, 902310000, 902320000, 902330000, 902340000, 912310000, 912320000, 912330000, 912340000, 912340001, 912350000, 922300000, 922310000, 922320000, 922330000, 922340000, 922350000, 922360000, 922370000, 922380000, 922390000, 922400000, 922410000, 932350000, 932360000, 932360001, 932370000, 932380000, 932390000, 932400000, 932400001, 932410000, 942360000, 942370000, 942380000, 942390000, 942400000, 942410000, 942420000, 942430000, 942440000, 942450000, 942460000, 952390000, 952400000, 952410000, 952420000, 952420001, 952430000, 952440000, 952440001, 952450000, 952460000, 962410000, 962420000, 962430000, 962440000, 962450000, 962460000, 962470000, 962480000, 962490000, 962500000, 962510000, 972490000, 972500000, 972510000, 982490000, 982500000, 982510000, 982520000, 982530000, 982540000, 982550000, 992530000, 992540000, 992540001, 992550000})

Set of all known nuclides.

pyne.origen22.XSFPY_FIELDS = ('sigma_gamma', 'sigma_2n', 'sigma_gamma_x', 'sigma_2n_x', 'fiss_yields_present')

The cross section and fission product yield data keys in a tape9 dictionary.