montepy.input_parser.input_reader module#
- montepy.input_parser.input_reader.read_input(destination, mcnp_version=(6, 2, 0), replace=True)#
Reads the specified MCNP Input file.
The MCNP version must be a three component tuple e.g., (6, 2, 0) and (5, 1, 60).
Note
if a stream is provided. It will not be closed by this function.
- Parameters:
destination (io.TextIOBase, str, os.PathLike) – the path to the input file to read, or a readable stream.
mcnp_version (tuple) – The version of MCNP that the input is intended for.
replace (bool) – replace all non-ASCII characters with a space (0x20)
- Returns:
The MCNP_Problem instance representing this file.
- Return type:
- Raises:
UnsupportedFeature – If an input format is used that MontePy does not support.
MalformedInputError – If an input has a broken syntax.
NumberConflictError – If two objects use the same number in the input file.
BrokenObjectLinkError – If a reference is made to an object that is not in the input file.
UnknownElement – If an isotope is specified for an unknown element.