diff --git a/jade/computational.py b/jade/computational.py index 7e8cd3b2..cbe17aa9 100644 --- a/jade/computational.py +++ b/jade/computational.py @@ -119,6 +119,10 @@ def executeBenchmarksRoutines(session, lib: str, runoption: str, exp=False) -> N "FNG Bulk Blanket and Shielding Experiment", "FNG Tungsten", "ASPIS Iron-88 benchmark", + "FNG SiC", + "FNG HCPB", + "ASPIS PCA Replica RR", + "FNG Stainless Steel", ]: var = {"00c": lib, "34y": "34y"} else: @@ -153,6 +157,11 @@ def executeBenchmarksRoutines(session, lib: str, runoption: str, exp=False) -> N "ASPIS-Fe88", "TUD-Fe", "TUD-W", + "FNG-SiC", + "FNG-HCPB", + "ASPIS-PCA-Replica_flux", + "ASPIS-PCA-Replica_RR", + "FNG-SS", ]: test = testrun.MultipleTest(*args) diff --git a/jade/default_settings/Benchmarks_Configuration/ASPIS-PCA-Replica_flux.xlsx b/jade/default_settings/Benchmarks_Configuration/ASPIS-PCA-Replica_flux.xlsx new file mode 100644 index 00000000..485ae919 Binary files /dev/null and b/jade/default_settings/Benchmarks_Configuration/ASPIS-PCA-Replica_flux.xlsx differ diff --git a/jade/default_settings/Config.xlsx b/jade/default_settings/Config.xlsx index cab4eb0a..c50923cf 100644 Binary files a/jade/default_settings/Config.xlsx and b/jade/default_settings/Config.xlsx differ diff --git a/jade/expoutput.py b/jade/expoutput.py index cebd2f9d..5cb882b5 100644 --- a/jade/expoutput.py +++ b/jade/expoutput.py @@ -58,6 +58,7 @@ "TUD-Fe": "energy bins", "TUD-W": "energy bins", "TUD-FNG": "energy bins", + "ASPIS-PCA-Replica_flux": "lethargy", } ACTIVATION_REACTION = { @@ -632,7 +633,7 @@ def _build_atlas(self, tmp_path, atlas): plot = Plotter( data, title, tmp_path, outname, quantity, unit, xlabel, self.testname ) - img_path = plot.plot("Discreet Experimental points") + img_path = plot.plot("Discrete Experimental points") # Insert the image in the atlas atlas.insert_img(img_path) @@ -1776,6 +1777,9 @@ def _pp_excel_comparison(self): """ This method prints C/E tables for shielding benchmark comparisons """ + # FNG SiC specific corrections/normalisations + fngsic_k = [0.212, 0.204, 0.202, 0.202] # Neutron sensitivity of TL detectors + fngsic_norm = 1.602e-13 * 1000 # J/MeV * g/kg lib_names_dict = {} column_names = [] column_names.append(("Exp", "Value")) @@ -1820,9 +1824,31 @@ def _pp_excel_comparison(self): : len(x) ] else: - vals = self.raw_data[code][t][6]["Value"].values[ - : len(x) - ] + # FNG SiC experiment measured the total dose + if self.testname == "FNG-SiC": + # Neutron dose + Dn = ( + self.raw_data[code][t][16]["Value"].values[ + : len(x) + ] + ) * fngsic_norm + Dn_multiplied = [ + value * constant + for value, constant in zip(Dn, fngsic_k) + ] + # Photon dose + Dp = ( + self.raw_data[code][t][26]["Value"].values[ + : len(x) + ] + ) * fngsic_norm + # Sum neutron and photon dose with neutron sensitivity as a function of depth + Dt = [sum(pair) for pair in zip(Dn_multiplied, Dp)] + vals = Dt + else: + vals = self.raw_data[code][t][6]["Value"].values[ + : len(x) + ] df_tab[idx_col] = vals elif idx_col[1] == "C/E Error": if mat != "TLD": @@ -1830,9 +1856,23 @@ def _pp_excel_comparison(self): : len(x) ] else: - errs = self.raw_data[code][t][6]["Error"].values[ - : len(x) - ] + if self.testname == "FNG-SiC": + errs = np.sqrt( + np.square( + self.raw_data[code][t][16]["Error"].values[ + : len(x) + ] + ) + + np.square( + self.raw_data[code][t][26]["Error"].values[ + : len(x) + ] + ) + ) + else: + errs = self.raw_data[code][t][6]["Error"].values[ + : len(x) + ] vals1 = np.square(errs) vals2 = np.square( exp_data_df.loc[:, "Error"].to_numpy() / 100 @@ -1846,9 +1886,30 @@ def _pp_excel_comparison(self): : len(x) ] else: - vals1 = self.raw_data[code][t][6]["Value"].values[ - : len(x) - ] + if self.testname == "FNG-SiC": + # Neutron dose + Dn = ( + self.raw_data[code][t][16]["Value"].values[ + : len(x) + ] + ) * fngsic_norm + Dn_multiplied = [ + value * constant + for value, constant in zip(Dn, fngsic_k) + ] + # Photon dose + Dp = ( + self.raw_data[code][t][26]["Value"].values[ + : len(x) + ] + ) * fngsic_norm + # Sum neutron and photon dose with neutron sensitivity as a function of depth + Dt = [sum(pair) for pair in zip(Dn_multiplied, Dp)] + vals1 = Dt + else: + vals1 = self.raw_data[code][t][6]["Value"].values[ + : len(x) + ] vals2 = exp_data_df.loc[:, "Reaction Rate"].to_numpy() ratio = vals1 / vals2 ratio = ratio.tolist() @@ -1873,6 +1934,9 @@ def _build_atlas(self, tmp_path, atlas): atlas : Atlas Object representing the plot Atlas. """ + # FNG SiC specific corrections/normalisations + fngsic_k = [0.212, 0.204, 0.202, 0.202] # Neutron sensitivity of TL detectors + fngsic_norm = 1.602e-13 * 1000 # J/MeV * g/kg # Set plot and axes details unit = "-" xlabel = "Shielding thickness [cm]" @@ -1899,10 +1963,17 @@ def _build_atlas(self, tmp_path, atlas): if material != "TLD": title = self.testname + " experiment, Foil: " + FOILS_REACTION[material] else: - title = ( - self.testname - + " experiment, Gamma absorbed dose in TLD-300 detectors" - ) + if self.testname == "FNG-SiC": + title = ( + self.testname + + " experiment, Total absorbed dose in TLD detectors" + ) + else: + title = ( + self.testname + + " experiment, Gamma absorbed dose in TLD-300 detectors" + ) + # Loop over selected libraries # Loop over selected libraries for lib in self.lib[1:]: # Get library name, assign title to the plot @@ -1914,18 +1985,51 @@ def _build_atlas(self, tmp_path, atlas): : len(x) ] else: - v = self.raw_data[code][(material, lib)][6]["Value"].values[ - : len(x) - ] + if self.testname == "FNG-SiC": + # Neutron dose + Dn = ( + self.raw_data[code][(material, lib)][16]["Value"].values[ + : len(x) + ] + ) * fngsic_norm + Dn_multiplied = [ + value * constant for value, constant in zip(Dn, fngsic_k) + ] + # Photon dose + Dp = ( + self.raw_data[code][(material, lib)][26]["Value"].values[ + : len(x) + ] + ) * fngsic_norm + # Sum neutron and photon dose with neutron sensitivity as a function of depth + v = [sum(pair) for pair in zip(Dn_multiplied, Dp)] + else: + v = self.raw_data[code][(material, lib)][6]["Value"].values[ + : len(x) + ] y.append(v) if material != "TLD": v = self.raw_data[code][(material, lib)][4]["Error"].values[ : len(x) ] else: - v = self.raw_data[code][(material, lib)][6]["Error"].values[ - : len(x) - ] + if self.testname == "FNG-SiC": + v = np.sqrt( + np.square( + self.raw_data[code][(material, lib)][16][ + "Error" + ].values[: len(x)] + ) + + np.square( + self.raw_data[code][(material, lib)][26][ + "Error" + ].values[: len(x)] + ) + ) + else: + v = self.raw_data[code][(material, lib)][6]["Error"].values[ + : len(x) + ] err.append(v) # Append computational data to data list(to be sent to plotter) data_comp = {"x": x, "y": y, "err": err, "ylabel": ylabel} @@ -1956,8 +2060,24 @@ def _get_conv_df(self, mat, size): max = self.raw_data[code][(mat, lib)][4]["Error"].values[:size].max() avg = self.raw_data[code][(mat, lib)][4]["Error"].values[:size].mean() else: - max = self.raw_data[code][(mat, lib)][6]["Error"].values[:size].max() - avg = self.raw_data[code][(mat, lib)][6]["Error"].values[:size].mean() + if self.testname == "FNG-SiC": + v = np.sqrt( + np.square( + self.raw_data[code][(mat, lib)][16]["Error"].values[:size] + ) + + np.square( + self.raw_data[code][(mat, lib)][26]["Error"].values[:size] + ) + ) + max = np.max(v) + avg = np.mean(v) + else: + max = ( + self.raw_data[code][(mat, lib)][6]["Error"].values[:size].max() + ) + avg = ( + self.raw_data[code][(mat, lib)][6]["Error"].values[:size].mean() + ) library = self.session.conf.get_lib_name(lib) conv_df.loc["Max Error", library] = max conv_df.loc["Average Error", library] = avg @@ -2112,3 +2232,268 @@ def _define_title(self, input, particle, quantity): else: title = self.testname + ", " + particle + " " + quantity return title + + +class fnghcpboutput(ExperimentalOutput): + + def _processMCNPdata(self, output): + + return None + + def _pp_excel_comparison(self): + """Produces the Excel document for comparison to experiment.""" + + lib_names_dict = {} + column_names = [] + column_names.append(("Exp", "Value")) + column_names.append(("Exp", "Error")) + for lib in self.lib[1:]: + namelib = self.session.conf.get_lib_name(lib) + lib_names_dict[namelib] = lib + column_names.append((namelib, "Value")) + column_names.append((namelib, "C/E")) + column_names.append((namelib, "C/E Error")) + + names = ["Library", ""] + column_index = pd.MultiIndex.from_tuples(column_names, names=names) + filepath = self.excel_path + "\\" + self.testname + "_CE_tables.xlsx" + with pd.ExcelWriter(filepath, engine="xlsxwriter") as writer: + code = "mcnp" + for mat in self.inputs: + exp_folder = os.path.join(self.path_exp_res, mat) + exp_filename = self.testname + "_" + mat + ".csv" + exp_filepath = os.path.join(exp_folder, exp_filename) + exp_data_df = pd.read_csv(exp_filepath) + + # Get experimental data and errors for the selected benchmark case + if mat == "H3": + x = exp_data_df["Pellet"].values.tolist() + indexes = pd.Index(data=x, name="Pellet #") + else: + x = exp_data_df["Depth"].values.tolist() + indexes = pd.Index(data=x, name="Depth [cm]") + + df_tab = pd.DataFrame(index=indexes, columns=column_index) + for idx_col in df_tab.columns.values.tolist(): + if idx_col[0] == "Exp": + if idx_col[1] == "Value": + if mat == "H3": + vals = exp_data_df.loc[:, "Activity"].tolist() + else: + vals = exp_data_df.loc[:, "Reaction Rate"].tolist() + df_tab[idx_col] = vals + else: + vals = exp_data_df.loc[:, "Error"].to_numpy() / 100 + vals = vals.tolist() + df_tab[idx_col] = vals + else: + t = (mat, lib_names_dict[idx_col[0]]) + if idx_col[1] == "Value": + if mat != "H3": + vals = self.raw_data[code][t][4]["Value"].values[ + : len(x) + ] + else: + # Total activity + vals = [] + for i in range(4): + vals.extend( + ( + self.raw_data[code][t][84]["Value"].values[ + i::4 + ] + ) + ) + + df_tab[idx_col] = vals + + elif idx_col[1] == "C/E Error": + if mat != "H3": + errs = self.raw_data[code][t][4]["Error"].values[ + : len(x) + ] + else: + errs = [] + for i in range(4): + yerr = self.raw_data[code][t][84]["Error"].values[ + i::4 + ] + errs.extend(yerr) + + vals1 = np.square(errs) + vals2 = np.square( + exp_data_df.loc[:, "Error"].to_numpy() / 100 + ) + ce_err = np.sqrt(vals1 + vals2) + ce_err = ce_err.tolist() + df_tab[idx_col] = ce_err + # Calculate C/E value + else: + if mat != "H3": + vals1 = self.raw_data[code][t][4]["Value"].values[ + : len(x) + ] + else: + vals1 = [] + for i in range(4): + vals1.extend( + self.raw_data[code][t][84]["Value"].values[i::4] + ) + + if mat == "H3": + vals2 = exp_data_df.loc[:, "Activity"].to_numpy() + else: + vals2 = exp_data_df.loc[:, "Reaction Rate"].to_numpy() + ratio = vals1 / vals2 + ratio = ratio.tolist() + df_tab[idx_col] = vals1 / vals2 + + # Assign worksheet title and put into Excel + conv_df = self._get_conv_df(mat, len(x)) + sheet = self.testname.replace("-", " ") + if mat != "H3": + sheet_name = sheet + ", Foil {}".format(mat) + else: + sheet_name = sheet + " H3 activity" + df_tab.to_excel(writer, sheet_name=sheet_name) + conv_df.to_excel(writer, sheet_name=sheet_name, startrow=55) + # Close the Pandas Excel writer object and output the Excel file + + def _build_atlas(self, tmp_path, atlas): + """ + Build the Atlas (PDF) plots. See ExperimentalOutput documentation + """ + code = "mcnp" + for material in tqdm(self.inputs): + # Tritium Activity + if material == "H3": + unit = "Bq/g" + quantity = "Activity" + for i in range(4): + data = [] + # y = [] + # err = [] + exp_folder = os.path.join(self.path_exp_res, material) + exp_filename = self.testname + "_" + material + ".csv" + exp_filepath = os.path.join(exp_folder, exp_filename) + exp_data_df = pd.read_csv(exp_filepath) + + xlabel = "Pellet no." + x = list(range(1, 13)) + + y = exp_data_df["Activity"].values[i * 12 : (i + 1) * 12] + err = exp_data_df["Error"].values[i * 12 : (i + 1) * 12] / 100 + + ylabel_exp = "Experiment" + data_exp = {"x": x, "y": y, "err": err, "ylabel": ylabel_exp} + data.append(data_exp) + + for lib in self.lib[1:]: + # y = [] + # err = [] + # Total tritium production Li6 + Li7 + ycalc = self.raw_data[code][(material, lib)][84][ + "Value" + ].values[i::4] + + yerr = np.square( + self.raw_data[code][(material, lib)][84]["Error"].values[ + i::4 + ] + ) + + y = ycalc + err = yerr + + ylabel_calc = self.session.conf.get_lib_name(lib) + data_calc = {"x": x, "y": y, "err": err, "ylabel": ylabel_calc} + data.append(data_calc) + + title = f"ENEA{2*(i+1)} pellet stack" + outname = "tmp" + plot = Plotter( + data, + title, + tmp_path, + outname, + quantity, + unit, + xlabel, + self.testname, + ) + img_path = plot.plot("Discrete Experimental points") + atlas.insert_img(img_path) + # Foils + else: + unit = "-" + quantity = ["C/E"] + data = [] + exp_folder = os.path.join(self.path_exp_res, material) + exp_filename = self.testname + "_" + material + ".csv" + exp_filepath = os.path.join(exp_folder, exp_filename) + exp_data_df = pd.read_csv(exp_filepath) + + # Get experimental data and errors for the selected benchmark case + xlabel = "Shielding thickness [cm]" + x = list(exp_data_df["Depth"].values) + y = [] + err = [] + y.append(exp_data_df["Reaction Rate"].values) + err.append(exp_data_df["Error"].values / 100) + # Append experimental data to data list (sent to plotter) + ylabel = "Experiment" + data_exp = {"x": x, "y": y, "err": err, "ylabel": ylabel} + data.append(data_exp) + + title = self.testname + " experiment, Foil: " + material + + # Loop over selected libraries + for lib in self.lib[1:]: + # Get library name, assign title to the plot + ylabel = self.session.conf.get_lib_name(lib) + y = [] + err = [] + + ycalc = self.raw_data[code][(material, lib)][4]["Value"].values[ + : len(x) + ] + y.append(ycalc) + + yerr = self.raw_data[code][(material, lib)][4]["Error"].values[ + : len(x) + ] + err.append(yerr) + + # Append computational data to data list(to be sent to plotter) + data_comp = {"x": x, "y": y, "err": err, "ylabel": ylabel} + data.append(data_comp) + + outname = "tmp" + plot = Plotter( + data, + title, + tmp_path, + outname, + quantity, + unit, + xlabel, + self.testname, + ) + img_path = plot.plot("Waves") + atlas.insert_img(img_path) + return atlas + + def _get_conv_df(self, mat, size): + conv_df = pd.DataFrame() + code = "mcnp" + for lib in self.lib[1:]: + if mat != "H3": + max = self.raw_data[code][(mat, lib)][4]["Error"].values[:size].max() + avg = self.raw_data[code][(mat, lib)][4]["Error"].values[:size].mean() + else: + max = self.raw_data[code][(mat, lib)][84]["Error"].values[:size].max() + avg = self.raw_data[code][(mat, lib)][84]["Error"].values[:size].mean() + library = self.session.conf.get_lib_name(lib) + conv_df.loc["Max Error", library] = max + conv_df.loc["Average Error", library] = avg + return conv_df diff --git a/jade/plotter.py b/jade/plotter.py index d044028b..53faee10 100644 --- a/jade/plotter.py +++ b/jade/plotter.py @@ -223,7 +223,7 @@ def plot(self, plot_type): plot_type : str plot type. The current available ones are ['Binned graph', 'Ratio graph', 'Experimental points', - 'Discreet Experimental points', 'Grouped bars', 'Waves']. + 'Discrete Experimental points', 'Grouped bars', 'Waves']. Raises ------ @@ -286,7 +286,7 @@ def plot(self, plot_type): outp = self._exp_points_group_plot_CE(test_name=self.testname) # --- Experimental Points Plot --- - elif plot_type == "Discreet Experimental points": + elif plot_type == "Discrete Experimental points": outp = self._exp_points_discreet_plot() # --- Grouped bars chart --- diff --git a/jade/postprocess.py b/jade/postprocess.py index 5b4559d5..dbb0ca91 100644 --- a/jade/postprocess.py +++ b/jade/postprocess.py @@ -134,7 +134,7 @@ def _get_output(action, code, testname, lib, session): elif testname == "SphereSDDR": out = spho.SphereSDDRoutput(lib, code, testname, session) - elif testname in ["Oktavian"]: + elif testname in ["Oktavian", "ASPIS-PCA-Replica_flux"]: if action == "compare": out = expo.SpectrumOutput(lib, code, testname, session, multiplerun=True) elif action == "pp": @@ -171,13 +171,27 @@ def _get_output(action, code, testname, lib, session): print(exp_pp_message) return False - elif testname in ["FNG-BKT", "FNG-W", "ASPIS-Fe88"]: + elif testname in [ + "FNG-BKT", + "FNG-W", + "ASPIS-Fe88", + "FNG-SiC", + "ASPIS-PCA-Replica_RR", + "FNG-SS", + ]: if action == "compare": out = expo.ShieldingOutput(lib, code, testname, session, multiplerun=True) elif action == "pp": print(exp_pp_message) return False + elif testname == "FNG-HCPB": + if action == "compare": + out = expo.fnghcpboutput(lib, testname, session, multiplerun=True) + elif action == "pp": + print(exp_pp_message) + return False + elif testname == "FNG": if action == "compare": out = expo.FNGOutput(lib, code, testname, session, multiplerun=True) diff --git a/jade/status.py b/jade/status.py index c33fbdd6..2f9b05ee 100644 --- a/jade/status.py +++ b/jade/status.py @@ -45,6 +45,11 @@ "ASPIS-Fe88", "TUD-Fe", "TUD-W", + "FNG-SiC", + "FNG-HCPB", + "ASPIS-PCA-Replica_flux", + "ASPIS-PCA-Replica_RR", + "FNG-SS", ] EXP_TAG = "Exp" CODES = ["mcnp", "serpent", "openmc", "d1s"] diff --git a/tests/TestFiles/expoutput/Benchmarks_Configuration/ASPIS-PCA-Replica_flux.xlsx b/tests/TestFiles/expoutput/Benchmarks_Configuration/ASPIS-PCA-Replica_flux.xlsx new file mode 100644 index 00000000..d205dbcb Binary files /dev/null and b/tests/TestFiles/expoutput/Benchmarks_Configuration/ASPIS-PCA-Replica_flux.xlsx differ diff --git a/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_RR/In/ASPIS-PCA-Replica_RR_In.csv b/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_RR/In/ASPIS-PCA-Replica_RR_In.csv new file mode 100644 index 00000000..7bd8343d --- /dev/null +++ b/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_RR/In/ASPIS-PCA-Replica_RR_In.csv @@ -0,0 +1,4 @@ +Depth,Reaction Rate,Error +0,0,0.9 +0,0,1.4 +0,0,1.5 diff --git a/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_RR/Rh/ASPIS-PCA-Replica_RR_Rh.csv b/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_RR/Rh/ASPIS-PCA-Replica_RR_Rh.csv new file mode 100644 index 00000000..6b2b1389 --- /dev/null +++ b/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_RR/Rh/ASPIS-PCA-Replica_RR_Rh.csv @@ -0,0 +1,11 @@ +Depth,Reaction Rate,Error +s,0,0.03 +0,0,0.03 +0,0,0.03 +0,0,0.03 +0,0,0.03 +0,0,0.04 +0,0,0.04 +0,0,0.01 +0,0,0.019 +0,0,0.016 diff --git a/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_flux/spectra/ASPIS-PCA-Replica_flux_spectra_914.csv b/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_flux/spectra/ASPIS-PCA-Replica_flux_spectra_914.csv new file mode 100644 index 00000000..61f45bd2 --- /dev/null +++ b/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_flux/spectra/ASPIS-PCA-Replica_flux_spectra_914.csv @@ -0,0 +1,43 @@ +Energy [MeV],flux per unit lethargy per NESTOR WATT [1/u/n/watt],Relative error [-] +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 +0.2,0.1,0.04 diff --git a/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_flux/spectra/ASPIS-PCA-Replica_flux_spectra_924.csv b/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_flux/spectra/ASPIS-PCA-Replica_flux_spectra_924.csv new file mode 100644 index 00000000..0161c96d --- /dev/null +++ b/tests/TestFiles/expoutput/ExperimentalResults/ASPIS-PCA-Replica_flux/spectra/ASPIS-PCA-Replica_flux_spectra_924.csv @@ -0,0 +1,43 @@ +Energy [MeV],flux per unit lethargy per NESTOR WATT [1/u/n/watt],Relative error [-] +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 +0.4,0.2,0.04 diff --git a/tests/TestFiles/expoutput/ExperimentalResults/FNG-HCPB/Al/FNG-HCPB_Al.csv b/tests/TestFiles/expoutput/ExperimentalResults/FNG-HCPB/Al/FNG-HCPB_Al.csv new file mode 100644 index 00000000..5456d214 --- /dev/null +++ b/tests/TestFiles/expoutput/ExperimentalResults/FNG-HCPB/Al/FNG-HCPB_Al.csv @@ -0,0 +1,5 @@ +Depth,Reaction Rate,Error +0,0,4.2 +0,0,4.2 +0,0,4.3 +0,0,4.3 diff --git a/tests/TestFiles/expoutput/ExperimentalResults/FNG-HCPB/H3/FNG-HCPB_H3.csv b/tests/TestFiles/expoutput/ExperimentalResults/FNG-HCPB/H3/FNG-HCPB_H3.csv new file mode 100644 index 00000000..ccafb6cd --- /dev/null +++ b/tests/TestFiles/expoutput/ExperimentalResults/FNG-HCPB/H3/FNG-HCPB_H3.csv @@ -0,0 +1,49 @@ +Pellet,Activity,Error +"1, ENEA 2",2,2 +"2, ENEA 2",2,2 +"3, ENEA 2",2,2 +"4, ENEA 2",2,2 +"5, ENEA 2",2,2 +"6, ENEA 2",2,2 +"7, ENEA 2",2,2 +"8, ENEA 2",2,2 +"9, ENEA 2",2,2 +"10, ENEA 2",2,2 +"11, ENEA 2",2,2 +"12, ENEA 2",2,2 +"1, ENEA 4",2,2 +"2, ENEA 4",2,2 +"3, ENEA 4",2,2 +"4, ENEA 4",2,2 +"5, ENEA 4",2,2 +"6, ENEA 4",2,2 +"7, ENEA 4",2,2 +"8, ENEA 4",2,2 +"9, ENEA 4",2,2 +"10, ENEA 4",2,2 +"11, ENEA 4",2,2 +"12, ENEA 4",2,2 +"1, ENEA 6",2,2 +"2, ENEA 6",2,2 +"3, ENEA 6",2,2 +"4, ENEA 6",2,2 +"5, ENEA 6",2,2 +"6, ENEA 6",2,2 +"7, ENEA 6",2,2 +"8, ENEA 6",2,2 +"9, ENEA 6",2,2 +"10, ENEA 6",2,2 +"11, ENEA 6",2,2 +"12, ENEA 6",2,2 +"1, ENEA 8",2,2 +"2, ENEA 8",2,2 +"3, ENEA 8",2,2 +"4, ENEA 8",2,2 +"5, ENEA 8",2,2 +"6, ENEA 8",2,2 +"7, ENEA 8",2,2 +"8, ENEA 8",2,2 +"9, ENEA 8",2,2 +"10, ENEA 8",2,2 +"11, ENEA 8",2,2 +"12, ENEA 8",2,2 diff --git a/tests/TestFiles/expoutput/ExperimentalResults/FNG-SS/Al/FNG-SS_Al.csv b/tests/TestFiles/expoutput/ExperimentalResults/FNG-SS/Al/FNG-SS_Al.csv new file mode 100644 index 00000000..677d77a0 --- /dev/null +++ b/tests/TestFiles/expoutput/ExperimentalResults/FNG-SS/Al/FNG-SS_Al.csv @@ -0,0 +1,8 @@ +Depth,Reaction Rate,Error +1,1,5.6 +1,1,5.6 +1,1,5.8 +1,1,5.8 +1,1,5.8 +1,1,6.4 +1,1,10 diff --git a/tests/TestFiles/expoutput/ExperimentalResults/FNG-SS/Au/FNG-SS_Au.csv b/tests/TestFiles/expoutput/ExperimentalResults/FNG-SS/Au/FNG-SS_Au.csv new file mode 100644 index 00000000..40f2f1e3 --- /dev/null +++ b/tests/TestFiles/expoutput/ExperimentalResults/FNG-SS/Au/FNG-SS_Au.csv @@ -0,0 +1,8 @@ +Depth,Reaction Rate,Error +2,1,4.8 +2,1,5 +2,1,5 +2,1,5 +2,1,5.5 +2,1,5.5 +2,1,5.5 diff --git a/tests/TestFiles/expoutput/ExperimentalResults/FNG-SiC/Al/FNG-SiC_Al.csv b/tests/TestFiles/expoutput/ExperimentalResults/FNG-SiC/Al/FNG-SiC_Al.csv new file mode 100644 index 00000000..2fcc7ec8 --- /dev/null +++ b/tests/TestFiles/expoutput/ExperimentalResults/FNG-SiC/Al/FNG-SiC_Al.csv @@ -0,0 +1,5 @@ +Depth,Reaction Rate,Error +1,1,3.6 +1,1,3.7 +1,1,3.8 +1,1,4 diff --git a/tests/TestFiles/expoutput/ExperimentalResults/FNG-SiC/TLD/FNG-SiC_TLD.csv b/tests/TestFiles/expoutput/ExperimentalResults/FNG-SiC/TLD/FNG-SiC_TLD.csv new file mode 100644 index 00000000..38bc2541 --- /dev/null +++ b/tests/TestFiles/expoutput/ExperimentalResults/FNG-SiC/TLD/FNG-SiC_TLD.csv @@ -0,0 +1,5 @@ +Depth,Reaction Rate,Error +14.99,2.71E-15,6.3 +30.23,4.32E-16,6.3 +45.47,1.11E-16,6 +60.71,3.22E-17,7 diff --git a/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_In b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_In new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_In @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Inm b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Inm new file mode 100644 index 00000000..367bf3c6 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Inm @@ -0,0 +1,31 @@ +mcnp 6.mpi 01/17/24 08:12:23 3 100000000 51950859883 + PCA-Replica Benchmark +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Rh103 Detectors +f 10 + 0 924 944 0 0 0 0 0 0 1078 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 2 0.0107 7 0.0048 1 0.0048 21 0.0042 + 3 0.0039 7 0.0036 3 0.0040 90007 0.0025 + 3 0.0031 7 0.0112 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.88799E-20 1.53359E-02 5.71312E+01 + 20000000 1.90677E-20 1.07641E-02 5.78226E+01 + 30000000 1.89079E-20 8.79122E-03 5.76809E+01 + 40000000 1.87847E-20 7.64302E-03 5.71806E+01 + 50000000 1.87881E-20 6.85465E-03 5.67984E+01 + 60000000 1.87581E-20 6.24197E-03 5.70483E+01 + 70000000 1.87028E-20 5.78872E-03 5.68361E+01 + 80000000 1.87024E-20 5.40530E-03 5.70251E+01 + 90000000 1.88449E-20 1.17337E-02 1.07541E+01 + 100000000 1.87852E-20 1.06972E-02 1.16405E+01 diff --git a/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Ino b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Ino new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Ino @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rh b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rh new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rh @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rhm b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rhm new file mode 100644 index 00000000..80e99663 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rhm @@ -0,0 +1,31 @@ +mcnp 6.mpi 01/17/24 08:12:23 3 100000000 51950859883 + PCA-Replica Benchmark +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Rh103 Detectors +f 10 + 0 924 944 0 0 0 0 0 0 1078 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 2 0.0107 7 0.0048 1 0.0049 21 0.0042 + 3 0.0039 7 0.0036 3 0.0040 90007 0.0025 + 3 0.0031 7 0.0112 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.88799E-20 1.53359E-02 5.71312E+01 + 20000000 1.90677E-20 1.07641E-02 5.78226E+01 + 30000000 1.89079E-20 8.79122E-03 5.76809E+01 + 40000000 1.87847E-20 7.64302E-03 5.71806E+01 + 50000000 1.87881E-20 6.85465E-03 5.67984E+01 + 60000000 1.87581E-20 6.24197E-03 5.70483E+01 + 70000000 1.87028E-20 5.78872E-03 5.68361E+01 + 80000000 1.87024E-20 5.40530E-03 5.70251E+01 + 90000000 1.88449E-20 1.17337E-02 1.07541E+01 + 100000000 1.87852E-20 1.06972E-02 1.16405E+01 diff --git a/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rho b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rho new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rho @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_flux b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_flux new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_flux @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxm b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxm new file mode 100644 index 00000000..c65ee6aa --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxm @@ -0,0 +1,90 @@ +mcnp 6.mpi 01/17/24 08:27:20 3 100000000 51950859883 + PCA-Replica Benchmark +ntal 2 + 914 924 +tally 914 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Neutron spectrum at position #8 z=39.01 cm +f 1 + 0 +d 1 +u 0 +s 0 +m 0 +c 0 +et 44 + 5.20000E-02 5.90000E-02 6.70000E-02 7.60000E-02 8.60000E-02 9.70000E-02 + 1.11000E-01 1.26000E-01 1.43000E-01 1.62000E-01 1.83000E-01 2.07000E-01 + 2.35000E-01 2.66000E-01 3.02000E-01 3.42000E-01 3.88000E-01 4.39000E-01 + 4.98000E-01 5.64000E-01 6.39000E-01 7.24000E-01 8.21000E-01 9.30000E-01 + 1.05400E+00 1.19400E+00 1.35300E+00 1.53400E+00 1.73800E+00 1.96900E+00 + 2.23100E+00 2.52800E+00 2.86500E+00 3.24600E+00 3.67900E+00 4.16900E+00 + 4.72400E+00 5.35300E+00 6.06500E+00 6.87300E+00 7.78800E+00 8.82500E+00 + 1.00000E+01 +t 0 +vals + 1 0.1805 2 0.3110 3 0.2528 4 0.2358 + 1 0.2070 2 0.2447 3 0.1152 4 0.0380 + 1 0.0361 2 0.0386 3 0.0318 4 0.0372 + 1 0.0290 2 0.0287 3 0.0266 4 0.0245 + 1 0.0128 2 0.0149 3 0.0130 4 0.0122 + 1 0.0109 2 0.0118 3 0.0123 4 0.0131 + 1 0.0088 2 0.0074 3 0.0075 4 0.0079 + 1 0.0080 2 0.0086 3 0.0090 4 0.0109 + 1 0.0110 2 0.0130 3 0.0118 4 0.0102 + 1 0.0111 2 0.0131 3 0.0169 4 0.0209 + 1 0.0264 2 0.0349 3 0.0523 4 0.0101 +tfc 10 1 1 1 1 1 1 44 1 + 10000000 5.33977E+01 3.15771E-02 1.36404E+01 + 20000000 5.26797E+01 2.16100E-02 1.45649E+01 + 30000000 5.20224E+01 1.67537E-02 1.61373E+01 + 40000000 5.18618E+01 1.50626E-02 1.49722E+01 + 50000000 5.19616E+01 1.48246E-02 1.23586E+01 + 60000000 5.17882E+01 1.31954E-02 1.29976E+01 + 70000000 5.18346E+01 1.23057E-02 1.28122E+01 + 80000000 5.19858E+01 1.14786E-02 1.28883E+01 + 90000000 5.21042E+01 1.08245E-02 1.28818E+01 + 100000000 5.20905E+01 1.01358E-02 1.32219E+01 +tally 924 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Neutron spectrum at position #10 z=58.61 cm +f 1 + 1078 +d 1 +u 0 +s 0 +m 0 +c 0 +et 44 + 5.20000E-02 5.90000E-02 6.70000E-02 7.60000E-02 8.60000E-02 9.70000E-02 + 1.11000E-01 1.26000E-01 1.43000E-01 1.62000E-01 1.83000E-01 2.07000E-01 + 2.35000E-01 2.66000E-01 3.02000E-01 3.42000E-01 3.88000E-01 4.39000E-01 + 4.98000E-01 5.64000E-01 6.39000E-01 7.24000E-01 8.21000E-01 9.30000E-01 + 1.05400E+00 1.19400E+00 1.35300E+00 1.53400E+00 1.73800E+00 1.96900E+00 + 2.23100E+00 2.52800E+00 2.86500E+00 3.24600E+00 3.67900E+00 4.16900E+00 + 4.72400E+00 5.35300E+00 6.06500E+00 6.87300E+00 7.78800E+00 8.82500E+00 + 1.00000E+01 +t 0 +vals + 1 0.3742 3 0.5429 4 0.3898 2 0.5481 + 1 0.4308 3 0.5708 4 0.1403 2 0.1226 + 1 0.0932 3 0.0949 4 0.0996 2 0.1309 + 1 0.4998 3 0.0892 4 0.1561 2 0.0604 + 1 0.0343 3 0.0447 4 0.0470 2 0.0535 + 1 0.0402 3 0.0316 4 0.0463 2 0.0411 + 1 0.0497 3 0.0272 4 0.0258 2 0.0306 + 1 0.0236 3 0.0289 4 0.0338 2 0.0318 + 1 0.0492 3 0.0365 4 0.0373 2 0.0279 + 1 0.0260 3 0.0266 4 0.0295 2 0.0334 + 1 0.0323 3 0.0381 4 0.0526 2 0.0321 +tfc 10 1 1 1 1 1 1 44 1 + 10000000 6.99639E+00 7.15532E-02 2.65652E+00 + 20000000 6.48608E+00 4.55525E-02 3.27790E+00 + 30000000 6.34426E+00 3.57832E-02 3.53746E+00 + 40000000 6.39284E+00 2.97368E-02 3.84148E+00 + 50000000 6.47983E+00 2.58132E-02 4.07615E+00 + 60000000 6.35816E+00 2.28994E-02 4.31582E+00 + 70000000 6.32750E+00 2.10371E-02 4.38395E+00 + 80000000 6.26593E+00 1.91788E-02 4.61674E+00 + 90000000 6.28941E+00 2.05194E-02 3.58482E+00 + 100000000 6.51707E+00 3.21458E-02 1.31449E+00 diff --git a/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxo b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxo new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxo @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Al b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Al new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Al @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alm b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alm new file mode 100644 index 00000000..e9c45e3c --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alm @@ -0,0 +1,28 @@ +mcnp 6.mpi 05/10/24 11:03:22 3 100000000 16552401248 + BREEDER BLANKET EXPERIMENT S. Villari 2006 +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 48001 48002 48003 48004 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 4 0.0035 3 0.0071 9 0.0127 6 0.0212 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 8.87296E-05 1.09826E-02 2.49315E+02 + 20000000 8.78418E-05 7.77579E-03 2.49296E+02 + 30000000 8.79054E-05 6.35123E-03 2.49176E+02 + 40000000 8.73950E-05 5.47905E-03 2.51139E+02 + 50000000 8.72887E-05 4.91278E-03 2.49954E+02 + 60000000 8.74425E-05 4.51118E-03 2.47091E+02 + 70000000 8.72109E-05 4.17279E-03 2.47543E+02 + 80000000 8.71823E-05 3.90380E-03 2.47417E+02 + 90000000 8.72603E-05 3.68194E-03 2.47214E+02 + 100000000 8.71161E-05 3.49914E-03 2.46325E+02 diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alo b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alo new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alo @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3 b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3 new file mode 100644 index 00000000..0923aa31 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3 @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3m b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3m new file mode 100644 index 00000000..3fa21afb --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3m @@ -0,0 +1,43 @@ +mcnp 6.mpi 05/10/24 11:08:48 3 100000000 16552401248 + BREEDER BLANKET EXPERIMENT S. Villari 2006 +ntal 1 + 84 +tally 84 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 48 + 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 + 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 + 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 + 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 + 16060 16061 16062 16063 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 2.2 0.0128 1 0.0146 6 0.0165 7 0.0210 + 2.2 0.0112 1 0.0132 6 0.0155 7 0.0203 + 2.2 0.0110 1 0.0130 6 0.0148 7 0.0195 + 2.2 0.0104 1 0.0131 6 0.0151 7 0.0195 + 2.2 0.0108 1 0.0132 6 0.0147 7 0.0197 + 2.2 0.0110 1 0.0128 6 0.0152 9 0.0205 + 2.2 0.0107 1 0.0129 6 0.0151 7 0.0195 + 2.2 0.0113 1 0.0141 6 0.0153 7 0.0202 + 2.2 0.0120 1 0.0138 6 0.0161 7 0.0211 + 2.2 0.0131 1 0.0138 6 0.0160 7 0.0211 + 2.2 0.0131 1 0.0150 6 0.0173 7 0.0209 + 2.2 0.0145 1 0.0155 6 0.0177 7 0.0222 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 4.94545E-06 3.57842E-02 2.34927E+01 + 20000000 4.94296E-06 2.50070E-02 2.40921E+01 + 30000000 5.09176E-06 2.13231E-02 2.20910E+01 + 40000000 5.10812E-06 1.82564E-02 2.25907E+01 + 50000000 5.17653E-06 1.66401E-02 2.17589E+01 + 60000000 5.21224E-06 1.58297E-02 2.00385E+01 + 70000000 5.19204E-06 1.44803E-02 2.05285E+01 + 80000000 5.25104E-06 1.40188E-02 1.91589E+01 + 90000000 5.25037E-06 1.33748E-02 1.87074E+01 + 100000000 5.27719E-06 1.27575E-02 1.85045E+01 diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3o b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3o new file mode 100644 index 00000000..0923aa31 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3o @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Al b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Al new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Al @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alm b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alm new file mode 100644 index 00000000..35d384a3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alm @@ -0,0 +1,30 @@ + 2 100000000 227159447379 + Geometrical data of the experiment listed in MCNP input format below. +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Fe-56(n,p) +f 7 + 500 501 502 503 504 505 506 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 12.2 0.0032 0 0.0063 4.29477E-08 0.0194 0 0.0463 + 12.2 0.1155 0 0.2424 6 0.5795 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 5.05268E-05 9.80525E-03 + 20000000 4.99991E-05 7.11407E-03 + 30000000 4.96912E-05 5.83832E-03 + 40000000 4.97609E-05 5.02543E-03 + 50000000 4.98374E-05 4.50949E-03 + 60000000 4.97212E-05 4.12260E-03 + 70000000 4.96934E-05 3.81740E-03 + 80000000 4.97110E-05 3.56673E-03 + 90000000 4.97249E-05 3.36063E-03 + 100000000 4.97774E-05 3.19308E-03 diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alo b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alo new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alo @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Au b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Au new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Au @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Aum b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Aum new file mode 100644 index 00000000..35d384a3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Aum @@ -0,0 +1,30 @@ + 2 100000000 227159447379 + Geometrical data of the experiment listed in MCNP input format below. +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Fe-56(n,p) +f 7 + 500 501 502 503 504 505 506 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 12.2 0.0032 0 0.0063 4.29477E-08 0.0194 0 0.0463 + 12.2 0.1155 0 0.2424 6 0.5795 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 5.05268E-05 9.80525E-03 + 20000000 4.99991E-05 7.11407E-03 + 30000000 4.96912E-05 5.83832E-03 + 40000000 4.97609E-05 5.02543E-03 + 50000000 4.98374E-05 4.50949E-03 + 60000000 4.97212E-05 4.12260E-03 + 70000000 4.96934E-05 3.81740E-03 + 80000000 4.97110E-05 3.56673E-03 + 90000000 4.97249E-05 3.36063E-03 + 100000000 4.97774E-05 3.19308E-03 diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Auo b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Auo new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Auo @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Al b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Al new file mode 100644 index 00000000..c8eff18e --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Al @@ -0,0 +1,4 @@ +mcnp 6.mpi 01/16/24 16:14:31 3 100000000 9830648627 + Sic EXPERIMENT - Activation foils +ntal 1s + 100000000 1.93786E-05 3.00034E-03 9.30369E+02 diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alm b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alm new file mode 100644 index 00000000..60744a6d --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alm @@ -0,0 +1,28 @@ +mcnp 6.mpi 01/16/24 16:14:31 3 100000000 9830648627 + Sic EXPERIMENT - Activation foils +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 14 0.0030 1.4 0.0057 3.61E-07 0.0084 8 0.0111 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.96468E-05 9.41353E-03 9.45529E+02 + 20000000 1.94759E-05 6.67521E-03 9.39536E+02 + 30000000 1.93747E-05 5.46691E-03 9.34062E+02 + 40000000 1.93912E-05 4.72287E-03 9.38551E+02 + 50000000 1.93615E-05 4.23166E-03 9.35212E+02 + 60000000 1.93853E-05 3.85710E-03 9.38458E+02 + 70000000 1.93749E-05 3.57028E-03 9.38767E+02 + 80000000 1.93931E-05 3.33990E-03 9.38510E+02 + 90000000 1.93686E-05 3.14865E-03 9.38633E+02 + 100000000 1.93786E-05 3.00034E-03 9.30369E+02 diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alo b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alo new file mode 100644 index 00000000..de539a43 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alo @@ -0,0 +1 @@ +mcnp 6. diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLD b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLD new file mode 100644 index 00000000..fdfbc856 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLD @@ -0,0 +1 @@ +mcnp 6.mpi diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDm b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDm new file mode 100644 index 00000000..5862eb64 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDm @@ -0,0 +1,76 @@ +mcnp 6.mpi 01/16/24 16:17:48 3 100000000 72102093521 + Sic EXPERIMENT +ntal 3 + 16 26 6 +tally 16 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 0 +c 0 +e 0 +t 0 +vals + 6 0.0148 5 0.0137 8.54E-06 0.0089 6 0.0062 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.62875E-05 4.69004E-02 6.58006E+00 + 20000000 1.66096E-05 4.00296E-02 4.50248E+00 + 30000000 1.60510E-05 2.81792E-02 6.03805E+00 + 40000000 1.57491E-05 2.20229E-02 7.39525E+00 + 50000000 1.59192E-05 1.98610E-02 7.26202E+00 + 60000000 1.60618E-05 1.82496E-02 7.15771E+00 + 70000000 1.60470E-05 1.63455E-02 7.64251E+00 + 80000000 1.59215E-05 1.48624E-02 8.08421E+00 + 90000000 1.61032E-05 1.55560E-02 6.55654E+00 + 100000000 1.61469E-05 1.47658E-02 6.54816E+00 +tally 26 -1 0 0 + 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 0 +c 0 +e 0 +t 0 +vals + 8 0.0144 5 0.0100 2 0.0113 1 0.0139 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 9.48055E-06 5.58607E-02 4.63842E+00 + 20000000 8.96669E-06 3.49144E-02 5.91841E+00 + 30000000 8.76964E-06 2.59506E-02 7.11965E+00 + 40000000 8.67404E-06 2.23674E-02 7.16919E+00 + 50000000 8.58397E-06 1.93319E-02 7.66496E+00 + 60000000 8.55624E-06 1.77396E-02 7.57510E+00 + 70000000 8.61532E-06 1.83275E-02 6.07893E+00 + 80000000 8.61645E-06 1.67082E-02 6.39673E+00 + 90000000 8.57896E-06 1.54113E-02 6.68027E+00 + 100000000 8.59076E-06 1.44414E-02 6.84563E+00 +tally 6 -2 0 0 + 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 0 +c 0 +e 0 +t 0 +vals + 1 0.0109 2 0.0110 3 0.0080 4s 0.0058 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 2.57681E-05 3.60930E-02 1.11105E+01 + 20000000 2.55763E-05 2.87520E-02 8.72725E+00 + 30000000 2.48206E-05 2.04166E-02 1.15023E+01 + 40000000 2.44231E-05 1.62885E-02 1.35188E+01 + 50000000 2.45031E-05 1.45865E-02 1.34635E+01 + 60000000 2.46180E-05 1.34206E-02 1.32354E+01 + 70000000 2.46623E-05 1.24249E-02 1.32265E+01 + 80000000 2.45380E-05 1.13002E-02 1.39845E+01 + 90000000 2.46821E-05 1.14860E-02 1.20263E+01 + 100000000 2.47376E-05 1.08739E-02 1.20744E+01 diff --git a/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDo b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDo new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/00c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDo @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_In b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_In new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_In @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Inm b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Inm new file mode 100644 index 00000000..367bf3c6 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Inm @@ -0,0 +1,31 @@ +mcnp 6.mpi 01/17/24 08:12:23 3 100000000 51950859883 + PCA-Replica Benchmark +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Rh103 Detectors +f 10 + 0 924 944 0 0 0 0 0 0 1078 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 2 0.0107 7 0.0048 1 0.0048 21 0.0042 + 3 0.0039 7 0.0036 3 0.0040 90007 0.0025 + 3 0.0031 7 0.0112 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.88799E-20 1.53359E-02 5.71312E+01 + 20000000 1.90677E-20 1.07641E-02 5.78226E+01 + 30000000 1.89079E-20 8.79122E-03 5.76809E+01 + 40000000 1.87847E-20 7.64302E-03 5.71806E+01 + 50000000 1.87881E-20 6.85465E-03 5.67984E+01 + 60000000 1.87581E-20 6.24197E-03 5.70483E+01 + 70000000 1.87028E-20 5.78872E-03 5.68361E+01 + 80000000 1.87024E-20 5.40530E-03 5.70251E+01 + 90000000 1.88449E-20 1.17337E-02 1.07541E+01 + 100000000 1.87852E-20 1.06972E-02 1.16405E+01 diff --git a/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Ino b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Ino new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Ino @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rh b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rh new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rh @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rhm b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rhm new file mode 100644 index 00000000..367bf3c6 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rhm @@ -0,0 +1,31 @@ +mcnp 6.mpi 01/17/24 08:12:23 3 100000000 51950859883 + PCA-Replica Benchmark +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Rh103 Detectors +f 10 + 0 924 944 0 0 0 0 0 0 1078 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 2 0.0107 7 0.0048 1 0.0048 21 0.0042 + 3 0.0039 7 0.0036 3 0.0040 90007 0.0025 + 3 0.0031 7 0.0112 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.88799E-20 1.53359E-02 5.71312E+01 + 20000000 1.90677E-20 1.07641E-02 5.78226E+01 + 30000000 1.89079E-20 8.79122E-03 5.76809E+01 + 40000000 1.87847E-20 7.64302E-03 5.71806E+01 + 50000000 1.87881E-20 6.85465E-03 5.67984E+01 + 60000000 1.87581E-20 6.24197E-03 5.70483E+01 + 70000000 1.87028E-20 5.78872E-03 5.68361E+01 + 80000000 1.87024E-20 5.40530E-03 5.70251E+01 + 90000000 1.88449E-20 1.17337E-02 1.07541E+01 + 100000000 1.87852E-20 1.06972E-02 1.16405E+01 diff --git a/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rho b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rho new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rho @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_flux b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_flux new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_flux @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxm b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxm new file mode 100644 index 00000000..9ef92e94 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxm @@ -0,0 +1,90 @@ +mcnp 6.mpi 01/17/24 08:27:20 3 100000000 51950859883 + PCA-Replica Benchmark +ntal 2 + 914 924 +tally 914 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Neutron spectrum at position #8 z=39.01 cm +f 1 + 0 +d 1 +u 0 +s 0 +m 0 +c 0 +et 44 + 5.20000E-02 5.90000E-02 6.70000E-02 7.60000E-02 8.60000E-02 9.70000E-02 + 1.11000E-01 1.26000E-01 1.43000E-01 1.62000E-01 1.83000E-01 2.07000E-01 + 2.35000E-01 2.66000E-01 3.02000E-01 3.42000E-01 3.88000E-01 4.39000E-01 + 4.98000E-01 5.64000E-01 6.39000E-01 7.24000E-01 8.21000E-01 9.30000E-01 + 1.05400E+00 1.19400E+00 1.35300E+00 1.53400E+00 1.73800E+00 1.96900E+00 + 2.23100E+00 2.52800E+00 2.86500E+00 3.24600E+00 3.67900E+00 4.16900E+00 + 4.72400E+00 5.35300E+00 6.06500E+00 6.87300E+00 7.78800E+00 8.82500E+00 + 1.00000E+01 +t 0 +vals + 1 0.1805 2 0.3110 3 0.2528 4 0.2358 + 1 0.2070 2 0.2447 3 0.1152 4 0.0380 + 1 0.0361 2 0.0386 3 0.0318 4 0.0372 + 1 0.0290 2 0.0287 3 0.0266 4 0.0245 + 1 0.0128 2 0.0149 3 0.0130 4 0.0122 + 1 0.0109 2 0.0118 3 0.0123 4 0.0131 + 1 0.0088 2 0.0074 3 0.0075 4 0.0079 + 1 0.0080 2 0.0086 3 0.0090 4 0.0109 + 1 0.0110 2 0.0130 3 0.0118 4 0.0102 + 1 0.0111 2 0.0131 3 0.0169 4 0.0209 + 1 0.0264 2 0.0349 3 0.0523 4 0.0101 +tfc 10 1 1 1 1 1 1 44 1 + 10000000 5.33977E+01 3.15771E-02 1.36404E+01 + 20000000 5.26797E+01 2.16100E-02 1.45649E+01 + 30000000 5.20224E+01 1.67537E-02 1.61373E+01 + 40000000 5.18618E+01 1.50626E-02 1.49722E+01 + 50000000 5.19616E+01 1.48246E-02 1.23586E+01 + 60000000 5.17882E+01 1.31954E-02 1.29976E+01 + 70000000 5.18346E+01 1.23057E-02 1.28122E+01 + 80000000 5.19858E+01 1.14786E-02 1.28883E+01 + 90000000 5.21042E+01 1.08245E-02 1.28818E+01 + 100000000 5.20905E+01 1.01358E-02 1.32219E+01 +tally 924 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Neutron spectrum at position #10 z=58.61 cm +f 1 + 1078 +d 1 +u 0 +s 0 +m 0 +c 0 +et 44 + 5.20000E-02 5.90000E-02 6.70000E-02 7.60000E-02 8.60000E-02 9.70000E-02 + 1.11000E-01 1.26000E-01 1.43000E-01 1.62000E-01 1.83000E-01 2.07000E-01 + 2.35000E-01 2.66000E-01 3.02000E-01 3.42000E-01 3.88000E-01 4.39000E-01 + 4.98000E-01 5.64000E-01 6.39000E-01 7.24000E-01 8.21000E-01 9.30000E-01 + 1.05400E+00 1.19400E+00 1.35300E+00 1.53400E+00 1.73800E+00 1.96900E+00 + 2.23100E+00 2.52800E+00 2.86500E+00 3.24600E+00 3.67900E+00 4.16900E+00 + 4.72400E+00 5.35300E+00 6.06500E+00 6.87300E+00 7.78800E+00 8.82500E+00 + 1.00000E+01 +t 0 +vals + 1 0.3743 3 0.5429 4 0.3898 2 0.5481 + 1 0.4308 3 0.5708 4 0.1403 2 0.1226 + 1 0.0932 3 0.0949 4 0.0996 2 0.1309 + 1 0.4998 3 0.0892 4 0.1561 2 0.0604 + 1 0.0343 3 0.0447 4 0.0470 2 0.0535 + 1 0.0402 3 0.0316 4 0.0463 2 0.0411 + 1 0.0497 3 0.0272 4 0.0258 2 0.0306 + 1 0.0236 3 0.0289 4 0.0338 2 0.0318 + 1 0.0492 3 0.0365 4 0.0373 2 0.0279 + 1 0.0260 3 0.0266 4 0.0295 2 0.0334 + 1 0.0323 3 0.0381 4 0.0526 2 0.0321 +tfc 10 1 1 1 1 1 1 44 1 + 10000000 6.99639E+00 7.15532E-02 2.65652E+00 + 20000000 6.48608E+00 4.55525E-02 3.27790E+00 + 30000000 6.34426E+00 3.57832E-02 3.53746E+00 + 40000000 6.39284E+00 2.97368E-02 3.84148E+00 + 50000000 6.47983E+00 2.58132E-02 4.07615E+00 + 60000000 6.35816E+00 2.28994E-02 4.31582E+00 + 70000000 6.32750E+00 2.10371E-02 4.38395E+00 + 80000000 6.26593E+00 1.91788E-02 4.61674E+00 + 90000000 6.28941E+00 2.05194E-02 3.58482E+00 + 100000000 6.51707E+00 3.21458E-02 1.31449E+00 diff --git a/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxo b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxo new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxo @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Al b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Al new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Al @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alm b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alm new file mode 100644 index 00000000..e9c45e3c --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alm @@ -0,0 +1,28 @@ +mcnp 6.mpi 05/10/24 11:03:22 3 100000000 16552401248 + BREEDER BLANKET EXPERIMENT S. Villari 2006 +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 48001 48002 48003 48004 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 4 0.0035 3 0.0071 9 0.0127 6 0.0212 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 8.87296E-05 1.09826E-02 2.49315E+02 + 20000000 8.78418E-05 7.77579E-03 2.49296E+02 + 30000000 8.79054E-05 6.35123E-03 2.49176E+02 + 40000000 8.73950E-05 5.47905E-03 2.51139E+02 + 50000000 8.72887E-05 4.91278E-03 2.49954E+02 + 60000000 8.74425E-05 4.51118E-03 2.47091E+02 + 70000000 8.72109E-05 4.17279E-03 2.47543E+02 + 80000000 8.71823E-05 3.90380E-03 2.47417E+02 + 90000000 8.72603E-05 3.68194E-03 2.47214E+02 + 100000000 8.71161E-05 3.49914E-03 2.46325E+02 diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alo b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alo new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alo @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3 b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3 new file mode 100644 index 00000000..0923aa31 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3 @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3m b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3m new file mode 100644 index 00000000..d633ab0e --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3m @@ -0,0 +1,43 @@ +mcnp 6.mpi 05/10/24 11:08:48 3 100000000 16552401248 + BREEDER BLANKET EXPERIMENT S. Villari 2006 +ntal 1 + 84 +tally 84 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 48 + 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 + 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 + 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 + 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 + 16060 16061 16062 16063 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 2.2 0.0128 1.1 0.0146 6 0.0165 7 0.0210 + 2.2 0.0112 1 0.0132 6 0.0155 7 0.0203 + 2.2 0.0110 1 0.0130 6 0.0148 7 0.0195 + 2.2 0.0104 1 0.0131 6 0.0151 7 0.0195 + 2.2 0.0108 1 0.0132 6 0.0147 7 0.0197 + 2.2 0.0110 1 0.0128 6 0.0152 9 0.0205 + 2.2 0.0107 1 0.0129 6 0.0151 7 0.0195 + 2.2 0.0113 1 0.0141 6 0.0153 7 0.0202 + 2.2 0.0120 1 0.0138 6 0.0161 7 0.0211 + 2.2 0.0131 1 0.0138 6 0.0160 7 0.0211 + 2.2 0.0131 1 0.0150 6 0.0173 7 0.0209 + 2.2 0.0145 1 0.0155 6 0.0177 7 0.0222 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 4.94545E-06 3.57842E-02 2.34927E+01 + 20000000 4.94296E-06 2.50070E-02 2.40921E+01 + 30000000 5.09176E-06 2.13231E-02 2.20910E+01 + 40000000 5.10812E-06 1.82564E-02 2.25907E+01 + 50000000 5.17653E-06 1.66401E-02 2.17589E+01 + 60000000 5.21224E-06 1.58297E-02 2.00385E+01 + 70000000 5.19204E-06 1.44803E-02 2.05285E+01 + 80000000 5.25104E-06 1.40188E-02 1.91589E+01 + 90000000 5.25037E-06 1.33748E-02 1.87074E+01 + 100000000 5.27719E-06 1.27575E-02 1.85045E+01 diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3o b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3o new file mode 100644 index 00000000..0923aa31 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3o @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Al b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Al new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Al @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alm b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alm new file mode 100644 index 00000000..35d384a3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alm @@ -0,0 +1,30 @@ + 2 100000000 227159447379 + Geometrical data of the experiment listed in MCNP input format below. +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Fe-56(n,p) +f 7 + 500 501 502 503 504 505 506 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 12.2 0.0032 0 0.0063 4.29477E-08 0.0194 0 0.0463 + 12.2 0.1155 0 0.2424 6 0.5795 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 5.05268E-05 9.80525E-03 + 20000000 4.99991E-05 7.11407E-03 + 30000000 4.96912E-05 5.83832E-03 + 40000000 4.97609E-05 5.02543E-03 + 50000000 4.98374E-05 4.50949E-03 + 60000000 4.97212E-05 4.12260E-03 + 70000000 4.96934E-05 3.81740E-03 + 80000000 4.97110E-05 3.56673E-03 + 90000000 4.97249E-05 3.36063E-03 + 100000000 4.97774E-05 3.19308E-03 diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alo b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alo new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alo @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Au b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Au new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Au @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Aum b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Aum new file mode 100644 index 00000000..35d384a3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Aum @@ -0,0 +1,30 @@ + 2 100000000 227159447379 + Geometrical data of the experiment listed in MCNP input format below. +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Fe-56(n,p) +f 7 + 500 501 502 503 504 505 506 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 12.2 0.0032 0 0.0063 4.29477E-08 0.0194 0 0.0463 + 12.2 0.1155 0 0.2424 6 0.5795 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 5.05268E-05 9.80525E-03 + 20000000 4.99991E-05 7.11407E-03 + 30000000 4.96912E-05 5.83832E-03 + 40000000 4.97609E-05 5.02543E-03 + 50000000 4.98374E-05 4.50949E-03 + 60000000 4.97212E-05 4.12260E-03 + 70000000 4.96934E-05 3.81740E-03 + 80000000 4.97110E-05 3.56673E-03 + 90000000 4.97249E-05 3.36063E-03 + 100000000 4.97774E-05 3.19308E-03 diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Auo b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Auo new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Auo @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Al b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Al new file mode 100644 index 00000000..c8eff18e --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Al @@ -0,0 +1,4 @@ +mcnp 6.mpi 01/16/24 16:14:31 3 100000000 9830648627 + Sic EXPERIMENT - Activation foils +ntal 1s + 100000000 1.93786E-05 3.00034E-03 9.30369E+02 diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alm b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alm new file mode 100644 index 00000000..60744a6d --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alm @@ -0,0 +1,28 @@ +mcnp 6.mpi 01/16/24 16:14:31 3 100000000 9830648627 + Sic EXPERIMENT - Activation foils +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 14 0.0030 1.4 0.0057 3.61E-07 0.0084 8 0.0111 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.96468E-05 9.41353E-03 9.45529E+02 + 20000000 1.94759E-05 6.67521E-03 9.39536E+02 + 30000000 1.93747E-05 5.46691E-03 9.34062E+02 + 40000000 1.93912E-05 4.72287E-03 9.38551E+02 + 50000000 1.93615E-05 4.23166E-03 9.35212E+02 + 60000000 1.93853E-05 3.85710E-03 9.38458E+02 + 70000000 1.93749E-05 3.57028E-03 9.38767E+02 + 80000000 1.93931E-05 3.33990E-03 9.38510E+02 + 90000000 1.93686E-05 3.14865E-03 9.38633E+02 + 100000000 1.93786E-05 3.00034E-03 9.30369E+02 diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alo b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alo new file mode 100644 index 00000000..de539a43 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alo @@ -0,0 +1 @@ +mcnp 6. diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLD b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLD new file mode 100644 index 00000000..fdfbc856 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLD @@ -0,0 +1 @@ +mcnp 6.mpi diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDm b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDm new file mode 100644 index 00000000..5862eb64 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDm @@ -0,0 +1,76 @@ +mcnp 6.mpi 01/16/24 16:17:48 3 100000000 72102093521 + Sic EXPERIMENT +ntal 3 + 16 26 6 +tally 16 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 0 +c 0 +e 0 +t 0 +vals + 6 0.0148 5 0.0137 8.54E-06 0.0089 6 0.0062 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.62875E-05 4.69004E-02 6.58006E+00 + 20000000 1.66096E-05 4.00296E-02 4.50248E+00 + 30000000 1.60510E-05 2.81792E-02 6.03805E+00 + 40000000 1.57491E-05 2.20229E-02 7.39525E+00 + 50000000 1.59192E-05 1.98610E-02 7.26202E+00 + 60000000 1.60618E-05 1.82496E-02 7.15771E+00 + 70000000 1.60470E-05 1.63455E-02 7.64251E+00 + 80000000 1.59215E-05 1.48624E-02 8.08421E+00 + 90000000 1.61032E-05 1.55560E-02 6.55654E+00 + 100000000 1.61469E-05 1.47658E-02 6.54816E+00 +tally 26 -1 0 0 + 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 0 +c 0 +e 0 +t 0 +vals + 8 0.0144 5 0.0100 2 0.0113 1 0.0139 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 9.48055E-06 5.58607E-02 4.63842E+00 + 20000000 8.96669E-06 3.49144E-02 5.91841E+00 + 30000000 8.76964E-06 2.59506E-02 7.11965E+00 + 40000000 8.67404E-06 2.23674E-02 7.16919E+00 + 50000000 8.58397E-06 1.93319E-02 7.66496E+00 + 60000000 8.55624E-06 1.77396E-02 7.57510E+00 + 70000000 8.61532E-06 1.83275E-02 6.07893E+00 + 80000000 8.61645E-06 1.67082E-02 6.39673E+00 + 90000000 8.57896E-06 1.54113E-02 6.68027E+00 + 100000000 8.59076E-06 1.44414E-02 6.84563E+00 +tally 6 -2 0 0 + 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 0 +c 0 +e 0 +t 0 +vals + 1 0.0109 2 0.0110 3 0.0080 4s 0.0058 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 2.57681E-05 3.60930E-02 1.11105E+01 + 20000000 2.55763E-05 2.87520E-02 8.72725E+00 + 30000000 2.48206E-05 2.04166E-02 1.15023E+01 + 40000000 2.44231E-05 1.62885E-02 1.35188E+01 + 50000000 2.45031E-05 1.45865E-02 1.34635E+01 + 60000000 2.46180E-05 1.34206E-02 1.32354E+01 + 70000000 2.46623E-05 1.24249E-02 1.32265E+01 + 80000000 2.45380E-05 1.13002E-02 1.39845E+01 + 90000000 2.46821E-05 1.14860E-02 1.20263E+01 + 100000000 2.47376E-05 1.08739E-02 1.20744E+01 diff --git a/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDo b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDo new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/31c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDo @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_In b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_In new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_In @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Inm b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Inm new file mode 100644 index 00000000..367bf3c6 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Inm @@ -0,0 +1,31 @@ +mcnp 6.mpi 01/17/24 08:12:23 3 100000000 51950859883 + PCA-Replica Benchmark +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Rh103 Detectors +f 10 + 0 924 944 0 0 0 0 0 0 1078 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 2 0.0107 7 0.0048 1 0.0048 21 0.0042 + 3 0.0039 7 0.0036 3 0.0040 90007 0.0025 + 3 0.0031 7 0.0112 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.88799E-20 1.53359E-02 5.71312E+01 + 20000000 1.90677E-20 1.07641E-02 5.78226E+01 + 30000000 1.89079E-20 8.79122E-03 5.76809E+01 + 40000000 1.87847E-20 7.64302E-03 5.71806E+01 + 50000000 1.87881E-20 6.85465E-03 5.67984E+01 + 60000000 1.87581E-20 6.24197E-03 5.70483E+01 + 70000000 1.87028E-20 5.78872E-03 5.68361E+01 + 80000000 1.87024E-20 5.40530E-03 5.70251E+01 + 90000000 1.88449E-20 1.17337E-02 1.07541E+01 + 100000000 1.87852E-20 1.06972E-02 1.16405E+01 diff --git a/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Ino b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Ino new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_In/mcnp/ASPIS-PCA-Replica_Ino @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rh b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rh new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rh @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rhm b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rhm new file mode 100644 index 00000000..367bf3c6 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rhm @@ -0,0 +1,31 @@ +mcnp 6.mpi 01/17/24 08:12:23 3 100000000 51950859883 + PCA-Replica Benchmark +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Rh103 Detectors +f 10 + 0 924 944 0 0 0 0 0 0 1078 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 2 0.0107 7 0.0048 1 0.0048 21 0.0042 + 3 0.0039 7 0.0036 3 0.0040 90007 0.0025 + 3 0.0031 7 0.0112 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.88799E-20 1.53359E-02 5.71312E+01 + 20000000 1.90677E-20 1.07641E-02 5.78226E+01 + 30000000 1.89079E-20 8.79122E-03 5.76809E+01 + 40000000 1.87847E-20 7.64302E-03 5.71806E+01 + 50000000 1.87881E-20 6.85465E-03 5.67984E+01 + 60000000 1.87581E-20 6.24197E-03 5.70483E+01 + 70000000 1.87028E-20 5.78872E-03 5.68361E+01 + 80000000 1.87024E-20 5.40530E-03 5.70251E+01 + 90000000 1.88449E-20 1.17337E-02 1.07541E+01 + 100000000 1.87852E-20 1.06972E-02 1.16405E+01 diff --git a/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rho b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rho new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_RR/ASPIS-PCA-Replica_Rh/mcnp/ASPIS-PCA-Replica_Rho @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_flux b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_flux new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_flux @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxm b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxm new file mode 100644 index 00000000..ef8f988d --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxm @@ -0,0 +1,90 @@ +mcnp 6.mpi 01/17/24 08:27:20 3 100000000 51950859883 + PCA-Replica Benchmark +ntal 2 + 914 924 +tally 914 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Neutron spectrum at position #8 z=39.01 cm +f 1 + 0 +d 1 +u 0 +s 0 +m 0 +c 0 +et 44 + 5.20000E-02 5.90000E-02 6.70000E-02 7.60000E-02 8.60000E-02 9.70000E-02 + 1.11000E-01 1.26000E-01 1.43000E-01 1.62000E-01 1.83000E-01 2.07000E-01 + 2.35000E-01 2.66000E-01 3.02000E-01 3.42000E-01 3.88000E-01 4.39000E-01 + 4.98000E-01 5.64000E-01 6.39000E-01 7.24000E-01 8.21000E-01 9.30000E-01 + 1.05400E+00 1.19400E+00 1.35300E+00 1.53400E+00 1.73800E+00 1.96900E+00 + 2.23100E+00 2.52800E+00 2.86500E+00 3.24600E+00 3.67900E+00 4.16900E+00 + 4.72400E+00 5.35300E+00 6.06500E+00 6.87300E+00 7.78800E+00 8.82500E+00 + 1.00000E+01 +t 0 +vals + 1 0.1806 2 0.3110 3 0.2528 4 0.2358 + 1 0.2070 2 0.2447 3 0.1152 4 0.0380 + 1 0.0361 2 0.0386 3 0.0318 4 0.0372 + 1 0.0290 2 0.0287 3 0.0266 4 0.0245 + 1 0.0128 2 0.0149 3 0.0130 4 0.0122 + 1 0.0109 2 0.0118 3 0.0123 4 0.0131 + 1 0.0088 2 0.0074 3 0.0075 4 0.0079 + 1 0.0080 2 0.0086 3 0.0090 4 0.0109 + 1 0.0110 2 0.0130 3 0.0118 4 0.0102 + 1 0.0111 2 0.0131 3 0.0169 4 0.0209 + 1 0.0264 2 0.0349 3 0.0523 4 0.0101 +tfc 10 1 1 1 1 1 1 44 1 + 10000000 5.33977E+01 3.15771E-02 1.36404E+01 + 20000000 5.26797E+01 2.16100E-02 1.45649E+01 + 30000000 5.20224E+01 1.67537E-02 1.61373E+01 + 40000000 5.18618E+01 1.50626E-02 1.49722E+01 + 50000000 5.19616E+01 1.48246E-02 1.23586E+01 + 60000000 5.17882E+01 1.31954E-02 1.29976E+01 + 70000000 5.18346E+01 1.23057E-02 1.28122E+01 + 80000000 5.19858E+01 1.14786E-02 1.28883E+01 + 90000000 5.21042E+01 1.08245E-02 1.28818E+01 + 100000000 5.20905E+01 1.01358E-02 1.32219E+01 +tally 924 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Neutron spectrum at position #10 z=58.61 cm +f 1 + 1078 +d 1 +u 0 +s 0 +m 0 +c 0 +et 44 + 5.20000E-02 5.90000E-02 6.70000E-02 7.60000E-02 8.60000E-02 9.70000E-02 + 1.11000E-01 1.26000E-01 1.43000E-01 1.62000E-01 1.83000E-01 2.07000E-01 + 2.35000E-01 2.66000E-01 3.02000E-01 3.42000E-01 3.88000E-01 4.39000E-01 + 4.98000E-01 5.64000E-01 6.39000E-01 7.24000E-01 8.21000E-01 9.30000E-01 + 1.05400E+00 1.19400E+00 1.35300E+00 1.53400E+00 1.73800E+00 1.96900E+00 + 2.23100E+00 2.52800E+00 2.86500E+00 3.24600E+00 3.67900E+00 4.16900E+00 + 4.72400E+00 5.35300E+00 6.06500E+00 6.87300E+00 7.78800E+00 8.82500E+00 + 1.00000E+01 +t 0 +vals + 1 0.3743 3 0.5429 4 0.3898 2 0.5481 + 1 0.4308 3 0.5708 4 0.1403 2 0.1226 + 1 0.0932 3 0.0949 4 0.0996 2 0.1309 + 1 0.4998 3 0.0892 4 0.1561 2 0.0604 + 1 0.0343 3 0.0447 4 0.0470 2 0.0535 + 1 0.0402 3 0.0316 4 0.0463 2 0.0411 + 1 0.0497 3 0.0272 4 0.0258 2 0.0306 + 1 0.0236 3 0.0289 4 0.0338 2 0.0318 + 1 0.0492 3 0.0365 4 0.0373 2 0.0279 + 1 0.0260 3 0.0266 4 0.0295 2 0.0334 + 1 0.0323 3 0.0381 4 0.0526 2 0.0321 +tfc 10 1 1 1 1 1 1 44 1 + 10000000 6.99639E+00 7.15532E-02 2.65652E+00 + 20000000 6.48608E+00 4.55525E-02 3.27790E+00 + 30000000 6.34426E+00 3.57832E-02 3.53746E+00 + 40000000 6.39284E+00 2.97368E-02 3.84148E+00 + 50000000 6.47983E+00 2.58132E-02 4.07615E+00 + 60000000 6.35816E+00 2.28994E-02 4.31582E+00 + 70000000 6.32750E+00 2.10371E-02 4.38395E+00 + 80000000 6.26593E+00 1.91788E-02 4.61674E+00 + 90000000 6.28941E+00 2.05194E-02 3.58482E+00 + 100000000 6.51707E+00 3.21458E-02 1.31449E+00 diff --git a/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxo b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxo new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/ASPIS-PCA-Replica_flux/spectra/mcnp/ASPIS-PCA-Replica_fluxo @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Al b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Al new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Al @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alm b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alm new file mode 100644 index 00000000..e9c45e3c --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alm @@ -0,0 +1,28 @@ +mcnp 6.mpi 05/10/24 11:03:22 3 100000000 16552401248 + BREEDER BLANKET EXPERIMENT S. Villari 2006 +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 48001 48002 48003 48004 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 4 0.0035 3 0.0071 9 0.0127 6 0.0212 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 8.87296E-05 1.09826E-02 2.49315E+02 + 20000000 8.78418E-05 7.77579E-03 2.49296E+02 + 30000000 8.79054E-05 6.35123E-03 2.49176E+02 + 40000000 8.73950E-05 5.47905E-03 2.51139E+02 + 50000000 8.72887E-05 4.91278E-03 2.49954E+02 + 60000000 8.74425E-05 4.51118E-03 2.47091E+02 + 70000000 8.72109E-05 4.17279E-03 2.47543E+02 + 80000000 8.71823E-05 3.90380E-03 2.47417E+02 + 90000000 8.72603E-05 3.68194E-03 2.47214E+02 + 100000000 8.71161E-05 3.49914E-03 2.46325E+02 diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alo b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alo new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_Al/mcnp/FNG-HCPB_Alo @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3 b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3 new file mode 100644 index 00000000..0923aa31 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3 @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3m b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3m new file mode 100644 index 00000000..3fa21afb --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3m @@ -0,0 +1,43 @@ +mcnp 6.mpi 05/10/24 11:08:48 3 100000000 16552401248 + BREEDER BLANKET EXPERIMENT S. Villari 2006 +ntal 1 + 84 +tally 84 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 48 + 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 + 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 + 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 + 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 + 16060 16061 16062 16063 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 2.2 0.0128 1 0.0146 6 0.0165 7 0.0210 + 2.2 0.0112 1 0.0132 6 0.0155 7 0.0203 + 2.2 0.0110 1 0.0130 6 0.0148 7 0.0195 + 2.2 0.0104 1 0.0131 6 0.0151 7 0.0195 + 2.2 0.0108 1 0.0132 6 0.0147 7 0.0197 + 2.2 0.0110 1 0.0128 6 0.0152 9 0.0205 + 2.2 0.0107 1 0.0129 6 0.0151 7 0.0195 + 2.2 0.0113 1 0.0141 6 0.0153 7 0.0202 + 2.2 0.0120 1 0.0138 6 0.0161 7 0.0211 + 2.2 0.0131 1 0.0138 6 0.0160 7 0.0211 + 2.2 0.0131 1 0.0150 6 0.0173 7 0.0209 + 2.2 0.0145 1 0.0155 6 0.0177 7 0.0222 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 4.94545E-06 3.57842E-02 2.34927E+01 + 20000000 4.94296E-06 2.50070E-02 2.40921E+01 + 30000000 5.09176E-06 2.13231E-02 2.20910E+01 + 40000000 5.10812E-06 1.82564E-02 2.25907E+01 + 50000000 5.17653E-06 1.66401E-02 2.17589E+01 + 60000000 5.21224E-06 1.58297E-02 2.00385E+01 + 70000000 5.19204E-06 1.44803E-02 2.05285E+01 + 80000000 5.25104E-06 1.40188E-02 1.91589E+01 + 90000000 5.25037E-06 1.33748E-02 1.87074E+01 + 100000000 5.27719E-06 1.27575E-02 1.85045E+01 diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3o b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3o new file mode 100644 index 00000000..0923aa31 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-HCPB/FNG-HCPB_H3/mcnp/FNG-HCPB_H3o @@ -0,0 +1 @@ +mcnp diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Al b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Al new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Al @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alm b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alm new file mode 100644 index 00000000..35d384a3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alm @@ -0,0 +1,30 @@ + 2 100000000 227159447379 + Geometrical data of the experiment listed in MCNP input format below. +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Fe-56(n,p) +f 7 + 500 501 502 503 504 505 506 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 12.2 0.0032 0 0.0063 4.29477E-08 0.0194 0 0.0463 + 12.2 0.1155 0 0.2424 6 0.5795 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 5.05268E-05 9.80525E-03 + 20000000 4.99991E-05 7.11407E-03 + 30000000 4.96912E-05 5.83832E-03 + 40000000 4.97609E-05 5.02543E-03 + 50000000 4.98374E-05 4.50949E-03 + 60000000 4.97212E-05 4.12260E-03 + 70000000 4.96934E-05 3.81740E-03 + 80000000 4.97110E-05 3.56673E-03 + 90000000 4.97249E-05 3.36063E-03 + 100000000 4.97774E-05 3.19308E-03 diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alo b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alo new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Al/mcnp/FNG-SS_Alo @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Au b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Au new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Au @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Aum b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Aum new file mode 100644 index 00000000..35d384a3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Aum @@ -0,0 +1,30 @@ + 2 100000000 227159447379 + Geometrical data of the experiment listed in MCNP input format below. +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + Fe-56(n,p) +f 7 + 500 501 502 503 504 505 506 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 12.2 0.0032 0 0.0063 4.29477E-08 0.0194 0 0.0463 + 12.2 0.1155 0 0.2424 6 0.5795 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 5.05268E-05 9.80525E-03 + 20000000 4.99991E-05 7.11407E-03 + 30000000 4.96912E-05 5.83832E-03 + 40000000 4.97609E-05 5.02543E-03 + 50000000 4.98374E-05 4.50949E-03 + 60000000 4.97212E-05 4.12260E-03 + 70000000 4.96934E-05 3.81740E-03 + 80000000 4.97110E-05 3.56673E-03 + 90000000 4.97249E-05 3.36063E-03 + 100000000 4.97774E-05 3.19308E-03 diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Auo b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Auo new file mode 100644 index 00000000..cffa2ef3 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SS/FNG-SS_Au/mcnp/FNG-SS_Auo @@ -0,0 +1 @@ +sadf \ No newline at end of file diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Al b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Al new file mode 100644 index 00000000..c8eff18e --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Al @@ -0,0 +1,4 @@ +mcnp 6.mpi 01/16/24 16:14:31 3 100000000 9830648627 + Sic EXPERIMENT - Activation foils +ntal 1s + 100000000 1.93786E-05 3.00034E-03 9.30369E+02 diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alm b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alm new file mode 100644 index 00000000..60744a6d --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alm @@ -0,0 +1,28 @@ +mcnp 6.mpi 01/16/24 16:14:31 3 100000000 9830648627 + Sic EXPERIMENT - Activation foils +ntal 1 + 4 +tally 4 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 1 +c 0 +e 0 +t 0 +vals + 14 0.0030 1.4 0.0057 3.61E-07 0.0084 8 0.0111 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.96468E-05 9.41353E-03 9.45529E+02 + 20000000 1.94759E-05 6.67521E-03 9.39536E+02 + 30000000 1.93747E-05 5.46691E-03 9.34062E+02 + 40000000 1.93912E-05 4.72287E-03 9.38551E+02 + 50000000 1.93615E-05 4.23166E-03 9.35212E+02 + 60000000 1.93853E-05 3.85710E-03 9.38458E+02 + 70000000 1.93749E-05 3.57028E-03 9.38767E+02 + 80000000 1.93931E-05 3.33990E-03 9.38510E+02 + 90000000 1.93686E-05 3.14865E-03 9.38633E+02 + 100000000 1.93786E-05 3.00034E-03 9.30369E+02 diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alo b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alo new file mode 100644 index 00000000..de539a43 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_Al/mcnp/FNG-SiC_Alo @@ -0,0 +1 @@ +mcnp 6. diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLD b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLD new file mode 100644 index 00000000..fdfbc856 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLD @@ -0,0 +1 @@ +mcnp 6.mpi diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDm b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDm new file mode 100644 index 00000000..5862eb64 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDm @@ -0,0 +1,76 @@ +mcnp 6.mpi 01/16/24 16:17:48 3 100000000 72102093521 + Sic EXPERIMENT +ntal 3 + 16 26 6 +tally 16 -1 0 0 + 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 0 +c 0 +e 0 +t 0 +vals + 6 0.0148 5 0.0137 8.54E-06 0.0089 6 0.0062 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 1.62875E-05 4.69004E-02 6.58006E+00 + 20000000 1.66096E-05 4.00296E-02 4.50248E+00 + 30000000 1.60510E-05 2.81792E-02 6.03805E+00 + 40000000 1.57491E-05 2.20229E-02 7.39525E+00 + 50000000 1.59192E-05 1.98610E-02 7.26202E+00 + 60000000 1.60618E-05 1.82496E-02 7.15771E+00 + 70000000 1.60470E-05 1.63455E-02 7.64251E+00 + 80000000 1.59215E-05 1.48624E-02 8.08421E+00 + 90000000 1.61032E-05 1.55560E-02 6.55654E+00 + 100000000 1.61469E-05 1.47658E-02 6.54816E+00 +tally 26 -1 0 0 + 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 0 +c 0 +e 0 +t 0 +vals + 8 0.0144 5 0.0100 2 0.0113 1 0.0139 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 9.48055E-06 5.58607E-02 4.63842E+00 + 20000000 8.96669E-06 3.49144E-02 5.91841E+00 + 30000000 8.76964E-06 2.59506E-02 7.11965E+00 + 40000000 8.67404E-06 2.23674E-02 7.16919E+00 + 50000000 8.58397E-06 1.93319E-02 7.66496E+00 + 60000000 8.55624E-06 1.77396E-02 7.57510E+00 + 70000000 8.61532E-06 1.83275E-02 6.07893E+00 + 80000000 8.61645E-06 1.67082E-02 6.39673E+00 + 90000000 8.57896E-06 1.54113E-02 6.68027E+00 + 100000000 8.59076E-06 1.44414E-02 6.84563E+00 +tally 6 -2 0 0 + 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +f 4 + 602 612 622 632 +d 1 +u 0 +s 0 +m 0 +c 0 +e 0 +t 0 +vals + 1 0.0109 2 0.0110 3 0.0080 4s 0.0058 +tfc 10 1 1 1 1 1 1 1 1 + 10000000 2.57681E-05 3.60930E-02 1.11105E+01 + 20000000 2.55763E-05 2.87520E-02 8.72725E+00 + 30000000 2.48206E-05 2.04166E-02 1.15023E+01 + 40000000 2.44231E-05 1.62885E-02 1.35188E+01 + 50000000 2.45031E-05 1.45865E-02 1.34635E+01 + 60000000 2.46180E-05 1.34206E-02 1.32354E+01 + 70000000 2.46623E-05 1.24249E-02 1.32265E+01 + 80000000 2.45380E-05 1.13002E-02 1.39845E+01 + 90000000 2.46821E-05 1.14860E-02 1.20263E+01 + 100000000 2.47376E-05 1.08739E-02 1.20744E+01 diff --git a/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDo b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDo new file mode 100644 index 00000000..b48e2135 --- /dev/null +++ b/tests/TestFiles/expoutput/Simulations/32c/FNG-SiC/FNG-SiC_TLD/mcnp/FNG-SiC_TLDo @@ -0,0 +1 @@ +mcnp diff --git a/tests/expoutput_test.py b/tests/expoutput_test.py index bcf3cf63..53aa8fd5 100644 --- a/tests/expoutput_test.py +++ b/tests/expoutput_test.py @@ -135,6 +135,33 @@ def test_spectrumoutput(self, session_mock: MockUpSession): ) assert len(os.listdir(path2raw)) == 3 + testname = "ASPIS-PCA-Replica_flux" + self.benchoutput_comp = expoutput.SpectrumOutput( + ["32c", "31c", "00c"], code, testname, session_mock, multiplerun=True + ) + self.benchoutput_comp.compare() + # check that all the raw data is dumped + path2raw = os.path.join( + session_mock.path_comparison, + "32c_Vs_31c_Vs_00c", + testname, + "mcnp", + "Raw_Data", + ) + assert ( + self.benchoutput_comp.raw_data["mcnp"][("spectra", "32c")][914][ + "Energy" + ].iloc[10] + == 1.83000e-01 + ) + assert ( + self.benchoutput_comp.raw_data["mcnp"][("spectra", "00c")][924][ + "Error" + ].iloc[0] + == 0.3742 + ) + assert len(os.listdir(path2raw)) == 3 + def test_shieldingoutput(self, session_mock: MockUpSession): code = "mcnp" @@ -164,6 +191,75 @@ def test_shieldingoutput(self, session_mock: MockUpSession): ) assert len(os.listdir(path2raw)) == 3 + testname = "FNG-SS" + self.benchoutput_comp = expoutput.ShieldingOutput( + ["32c", "31c", "00c"], code, testname, session_mock, multiplerun=True + ) + self.benchoutput_comp.compare() + # check that all the raw data is dumped + # check that all the raw data is dumped + path2raw = os.path.join( + session_mock.path_comparison, + "32c_Vs_31c_Vs_00c", + testname, + "mcnp", + "Raw_Data", + ) + assert ( + self.benchoutput_comp.raw_data["mcnp"][("Al", "31c")][4]["Cells"].iloc[1] + == 501 + ) + assert ( + self.benchoutput_comp.raw_data["mcnp"][("Au", "00c")][4]["Error"].iloc[2] + == 0.0194 + ) + + testname = "FNG-SiC" + self.benchoutput_comp = expoutput.ShieldingOutput( + ["32c", "31c", "00c"], code, testname, session_mock, multiplerun=True + ) + self.benchoutput_comp.compare() + # check that all the raw data is dumped + # check that all the raw data is dumped + path2raw = os.path.join( + session_mock.path_comparison, + "32c_Vs_31c_Vs_00c", + testname, + "mcnp", + "Raw_Data", + ) + assert ( + self.benchoutput_comp.raw_data["mcnp"][("Al", "31c")][4]["Cells"].iloc[1] + == 612 + ) + assert ( + self.benchoutput_comp.raw_data["mcnp"][("TLD", "00c")][16]["Error"].iloc[2] + == 0.0089 + ) + + testname = "ASPIS-PCA-Replica_RR" + self.benchoutput_comp = expoutput.ShieldingOutput( + ["32c", "31c", "00c"], code, testname, session_mock, multiplerun=True + ) + self.benchoutput_comp.compare() + # check that all the raw data is dumped + # check that all the raw data is dumped + path2raw = os.path.join( + session_mock.path_comparison, + "32c_Vs_31c_Vs_00c", + testname, + "mcnp", + "Raw_Data", + ) + assert ( + self.benchoutput_comp.raw_data["mcnp"][("In", "31c")][4]["Cells"].iloc[1] + == 924 + ) + assert ( + self.benchoutput_comp.raw_data["mcnp"][("Rh", "00c")][4]["Error"].iloc[2] + == 0.0049 + ) + def test_tiaraoutput(self, session_mock: MockUpSession): code = "mcnp" @@ -235,3 +331,32 @@ def test_fngoutput(self, session_mock: MockUpSession): ) assert len(os.listdir(path2raw)) == 2 assert True + + def test_fnghcpboutput(self, session_mock: MockUpSession): + + code = "mcnp" + testname = "FNG-HCPB" + os.makedirs(session_mock.path_comparison) + os.makedirs(session_mock.path_single) + self.benchoutput_comp = expoutput.fnghcpboutput( + ["32c", "31c", "00c"], code, testname, session_mock, multiplerun=True + ) + self.benchoutput_comp.compare() + # check that all the raw data is dumped + # check that all the raw data is dumped + path2raw = os.path.join( + session_mock.path_comparison, + "32c_Vs_31c_Vs_00c", + testname, + "mcnp", + "Raw_Data", + ) + assert ( + self.benchoutput_comp.raw_data["mcnp"][("Al", "31c")][4]["Cells"].iloc[1] + == 48002 + ) + assert ( + self.benchoutput_comp.raw_data["mcnp"][("H3", "00c")][84]["Error"].iloc[2] + == 0.0165 + ) + assert len(os.listdir(path2raw)) == 3 diff --git a/tests/plotter_test.py b/tests/plotter_test.py index 38a4a6b6..fd8f164c 100644 --- a/tests/plotter_test.py +++ b/tests/plotter_test.py @@ -74,7 +74,7 @@ "Binned graph", "Ratio graph", "Experimental points", - "Discreet Experimental points", + "Discrete Experimental points", "Grouped bars", ]