Skip to content

Commit

Permalink
Including pKZA extraction in example usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eitan Weinstein committed Aug 2, 2024
1 parent 005a71d commit 1fac9f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/DataLib/fendl32B_retrofit/process_fendl3.2.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ def main():
material_id, MTs = tp.extract_endf_specs(endf_path)
njoy_input = groupr_tools.fill_input_template(material_id, MTs, 'Fe', 56, mt_dict)
groupr_tools.write_njoy_input_file(njoy_input)
groupr_tools.run_njoy('Fe', 56, material_id)
gendf_path = groupr_tools.run_njoy('Fe', 56, material_id)
groupr_tools.cleanup_njoy_files()

pKZA = tp.extract_gendf_pkza(gendf_path)

if __name__ == '__main__':
main()

0 comments on commit 1fac9f1

Please sign in to comment.