diff --git a/examples/infeas_analysis_cluster.ipynb b/examples/infeas_analysis_cluster.ipynb index bb54ddd..ab2f4ea 100644 --- a/examples/infeas_analysis_cluster.ipynb +++ b/examples/infeas_analysis_cluster.ipynb @@ -424,7 +424,8 @@ } ], "source": [ - "campaign, samples = analyse.read_campaign(campaign_name=\"example_cluster\")\n", + "campaign = analyse.get_campaign(campaign_name=\"example_cluster\")\n", + "samples = analyse.get_samples(campaign)\n", "samples" ] }, diff --git a/examples/infeas_analysis_local.ipynb b/examples/infeas_analysis_local.ipynb index be53169..0885f2a 100644 --- a/examples/infeas_analysis_local.ipynb +++ b/examples/infeas_analysis_local.ipynb @@ -411,7 +411,8 @@ } ], "source": [ - "campaign, samples = analyse.read_campaign(campaign_name=\"example_local\")\n", + "campaign = analyse.get_campaign(campaign_name=\"example_local\")\n", + "samples = analyse.get_samples(campaign)\n", "samples" ] }, diff --git a/infeas/analyse.py b/infeas/analyse.py index 032923d..0817813 100644 --- a/infeas/analyse.py +++ b/infeas/analyse.py @@ -9,8 +9,8 @@ from infeas.eval import QOIS, WORK_DIR -def read_campaign(campaign_name: str) -> pd.DataFrame: - """Read in evaluated campaign and return dataframe. +def get_campaign(campaign_name: str) -> uq.campaign.Campaign: + """Read in evaluated campaign and return campaign object. Fetches the latest campaign with matching name. @@ -23,8 +23,6 @@ def read_campaign(campaign_name: str) -> pd.DataFrame: ------- uq.campaign.Campaign easyVVUQ campaign - pd.DataFrame - Evaluation results Raises ------ @@ -52,13 +50,27 @@ def read_campaign(campaign_name: str) -> pd.DataFrame: db_location=db_location_prefixed, name=campaign_name, work_dir=WORK_DIR ) + return campaign + + +def get_samples(campaign: uq.campaign.Campaign) -> pd.DataFrame: + """Get samples from campaign object. + + Parameters + ---------- + campaign : uq.campaign.Campaign + campaign object + + Returns + ------- + pd.DataFrame + evaluated samples + """ samples = campaign.get_collation_result() - sample_count = samples.shape[0] - print(f"Campaign read in. Number of samples = {sample_count}") - # Drop strange multi-index of 0 + # Drop unnecessary multi-index of 0 samples.columns = samples.columns.droplevel(1) - return campaign, samples + return samples def describe_qois(results: pd.DataFrame) -> pd.DataFrame: diff --git a/infeas/decoder.py b/infeas/decoder.py index c774a41..431fe1e 100644 --- a/infeas/decoder.py +++ b/infeas/decoder.py @@ -73,27 +73,21 @@ def _process_raw_data(self, raw_data: Dict[str, Any]) -> Dict[str, float]: for ineq_constrs_key in ineq_constrs_keys } - # Only want violated constraint values - # Coerce feasible inequality constraints (> 0) = 0.0 - # TODO Not sure if we want to mask non-violated constraint - # values at this stage: infeasibile responses only - vio_ineq_constrs_dict = {} - for key, value in ineq_constrs_dict.items(): - if value > 0: - vio_ineq_constrs_dict[key] = 0.0 - else: - vio_ineq_constrs_dict[key] = value - - # Merge individual eq and ineq violated constraint values - responses = responses | eq_constrs_dict | vio_ineq_constrs_dict + # Merge individual eq and ineq constraint values + responses = responses | eq_constrs_dict | ineq_constrs_dict # Calculate RMS constraint residuals for violated constraints only # Create arrays from constraints dicts - eq_constrs = np.array(list(eq_constrs_dict.values())) - vio_ineq_constrs = np.array(list(vio_ineq_constrs_dict.values())) - vio_constrs = np.concatenate((eq_constrs, vio_ineq_constrs)) - rms_vio_constr_res = np.sqrt(np.mean(vio_constrs**2)) - responses["rms_vio_constr_res"] = rms_vio_constr_res + # Process satisfied con: c > 0 + # Everyone else satisfied con: c < 0 + # Flip sign to agree with standard + ineq_constrs = -np.array(list(ineq_constrs_dict.values())) + + # TODO Would be better to override method in notebook for testing + + # Use w metric: most violated inequality constraint + w = np.max(ineq_constrs) + responses["w"] = w return responses diff --git a/infeas/mfile_to_in.py b/infeas/mfile_to_in.py index f5867bc..2b5da5b 100644 --- a/infeas/mfile_to_in.py +++ b/infeas/mfile_to_in.py @@ -9,6 +9,7 @@ from pathlib import Path from typing import Optional, Sequence import re +from shutil import copy """Unfortunately, f-values have to be detected in two ways. This is because @@ -120,34 +121,111 @@ def convert( - mfile_name: str, original_in_name: str, - sol_in_name: str, + new_in_name: str, no_optimisation: Optional[bool] = True, n_equalities: Optional[int] = None, + mfile_name: Optional[str] = None, + remove_f_value_inits: Optional[bool] = False, ) -> Path: - """Convert mfile to input file, preserving optimisation parameter vector. + """Convert input file to a modified new one. + + If input file and n_equalities provided, just convert input to inequalities. + If mfile is provided, copy solution vector to new input file. Parameters ---------- - mfile_name : str - name of mfile to convert original_in_name : str the IN.DAT used to create the MFILE.DAT solution - sol_in_name : str - name of input file to be created at solution vector + new_in_name : str + modified input file to be created no_optimisation : Optional[bool], optional convert IN.DAT to non-optimising run, by default True n_equalities : Optional[int], optional how many of the constraints to make equalities. The first n_equalities constraints will be left as equalities, the rest converted to inequalities, by default None + mfile_name : Optional[str], optional + if mfile supplied, extract solution vector into new input file, by + default None + remove_f_value_inits : Optional[bool], optional + remove f-value initialisations, e.g. `fthresh = 0.8`, by default False Returns ------- Path path to solution input file """ + # Create new input file, optionally overwriting with solution vector + if mfile_name: + # Extract solution vector from mfile, copy into new input file + sol_in_dat_path = overwrite_sol_vector( + mfile_name=mfile_name, + original_in_name=original_in_name, + new_in_name=new_in_name, + ) + else: + # Just copy original input to new path + sol_in_dat_path = copy(original_in_name, new_in_name) + + # Additional modifications to top of input file + top_content = [] + if no_optimisation: + top_content.extend(["* Once through only: no optimisation", "ioptimz = -2"]) + + if n_equalities is not None: + # Write neqns count + top_content.extend( + [ + "* Define number of equality constraints, and", + "* use inequality constraints: corresponding f-values removed", + f"neqns = {n_equalities}", + ] + ) + + new_content = [line + "\n" for line in top_content] + + # Write top and main content, removing f-values if necessary + with open(sol_in_dat_path, "r") as f: + content = f.readlines() + + if n_equalities: + # Remove all f-values as opt params + main_content = remove_f_values(content, remove_f_value_inits) + else: + main_content = content + + new_content.extend(main_content) + + with open(sol_in_dat_path, "w") as f: + f.writelines(new_content) + + return sol_in_dat_path + + +def overwrite_sol_vector( + mfile_name: str, original_in_name: str, new_in_name: str +) -> Path: + """Extract solution vector from mfile, copy into new input file. + + Parameters + ---------- + mfile_name : str + output containing solution vector + original_in_name : str + original input file + new_in_name : str + input file with initial optimisation parameter vector overwritten with + the solution vector + + Returns + ------- + Path + path to new solution vector input file + """ + # Pattern for single array element, e.g. fimp(13) + array_el_re = re.compile(r"(\w+)\((\d+)\)") + # First, extract the solution (optimisation parameters) from the mfile # Create Mfile object from mfile mfile_path = Path(mfile_name) @@ -189,63 +267,53 @@ def convert( continue # Otherwise update new IN.DAT value with solution value - in_dat.add_parameter(var_name, value) + matches = array_el_re.match(var_name) + if matches is not None: + # Found a single array element e.g. fimp(13) + array_name = matches.group(1) + array_index = matches.group(2) + py_array_index = int(array_index) - 1 + + in_dat.change_array( + array_name=array_name, array_index=py_array_index, array_value=value + ) + else: + # Set individual parameter + in_dat.add_parameter(var_name, value) - print(f"Solution f-values ignored = {dropped_sol_f_value_count}") + print(f"Optimisation parameter f-values ignored = {dropped_sol_f_value_count}") # Write out new IN.DAT, with optimisation parameters set to original # solution vector - sol_in_dat_path = Path(sol_in_name) + sol_in_dat_path = Path(new_in_name) in_dat.write_in_dat(sol_in_dat_path) - - # Additional modifications to top of input file - top_content = [] - if no_optimisation: - top_content.extend(["* Once through only: no optimisation", "ioptimz = -2"]) - - if n_equalities is not None: - # Write neqns count - top_content.extend( - [ - "* Define number of equality constraints, and", - "* use inequality constraints: corresponding f-values removed", - f"neqns = {n_equalities}", - ] - ) - - new_content = [line + "\n" for line in top_content] - - # Write top and main content, removing f-values if necessary - with open(sol_in_dat_path, "r+") as f: - content = f.readlines() - f.seek(0, 0) - - if n_equalities: - # Remove all f-values - main_content = remove_f_values(content) - else: - main_content = content - - new_content.extend(main_content) - f.writelines(new_content) - return sol_in_dat_path -def remove_f_values(lines_with_f_values: Sequence[str]) -> list[str]: +def remove_f_values( + lines_with_f_values: Sequence[str], remove_f_value_inits: bool +) -> list[str]: """Remove f-value optimisation parameters from input file lines. + Removes `ixc = 23 * fthresh` line if opt param 23 is f-value. + Optionally removes f-value value initialisations `fthresh = 0.8`. + Parameters ---------- lines_with_f_values : Sequence[str] lines from original input file + remove_f_value_inits : bool + remove f-value initialisations, e.g. `fthresh = 0.8` Returns ------- list[str] lines with f-value optimisation parameters removed """ + # f-value opt params removed (ixc = 23 * fdene) f_value_removal_count = 0 + # f-value initialisations removed (fthresh = 0.8) + f_value_init_removal_count = 0 # Lines that will be included in new IN.DAT lines_without_f_values = [] # Opt params beginning with f that aren't on the ignore list @@ -255,10 +323,14 @@ def remove_f_values(lines_with_f_values: Sequence[str]) -> list[str]: # Don't also search for comment (e.g. ixc = 23 * fdene) as it may not be there: # Just look for opt param number opt_param_re = re.compile(r"ixc\s*=\s*(\d+)") + # If not already found in the f-value opt param number list, attempt to # find any opt params starting with f (depends on "*" comment) opt_param_beginning_with_f_re = re.compile(r"ixc\s*=\s*(\d+)\s*\*\s*(f\w+)") + # Any line starting with f (could be f-value value definition) + line_starting_with_f_re = re.compile(r"^(f\w*)") + for line in lines_with_f_values: matches = opt_param_re.match(line) if matches is not None: @@ -272,9 +344,6 @@ def remove_f_values(lines_with_f_values: Sequence[str]) -> list[str]: f_value_removal_count += 1 continue - # Non f-value opt param or other line: keep - lines_without_f_values.append(line) - # Check if line contains opt param beginning with an f: # Not known f-value (would be in numbers list), but suspicious as could be matches = opt_param_beginning_with_f_re.match(line) @@ -285,6 +354,20 @@ def remove_f_values(lines_with_f_values: Sequence[str]) -> list[str]: # Could be an f-value suspect_opt_params_beginning_with_f.append(line) + # Optionally, remove any f-value initialisations + # e.g. `fthresh = 0.8` + if remove_f_value_inits: + matches = line_starting_with_f_re.match(line) + if matches is not None: + if matches.group(1) not in STARTS_WITH_F_BUT_NOT_F_VALUE_NAMES: + # Found f-value initialisation: drop the line + f_value_init_removal_count += 1 + continue + + # Non f-value opt param, (optionally not) f-value initialisation or other + # line: keep + lines_without_f_values.append(line) + # Print out potential f-value vars if any if len(suspect_opt_params_beginning_with_f) > 0: raise ValueError( @@ -293,4 +376,7 @@ def remove_f_values(lines_with_f_values: Sequence[str]) -> list[str]: else: print(f"f-values removed as optimisation parameters = {f_value_removal_count}") + if remove_f_value_inits: + print(f"f-value initialisations removed = {f_value_init_removal_count}") + return lines_without_f_values diff --git a/max_net_elec/max_net_elec_analysis.ipynb b/max_net_elec/max_net_elec_analysis.ipynb index 94ee8b4..ee8f2c9 100644 --- a/max_net_elec/max_net_elec_analysis.ipynb +++ b/max_net_elec/max_net_elec_analysis.ipynb @@ -1247,7 +1247,8 @@ } ], "source": [ - "campaign, results = analyse.read_campaign(campaign_name)\n", + "campaign = analyse.get_campaign(campaign_name)\n", + "results = analyse.get_samples(campaign)\n", "results" ] }, diff --git a/min_rmajor/min_rmajor_analysis.ipynb b/min_rmajor/min_rmajor_analysis.ipynb index 9551910..91d4984 100644 --- a/min_rmajor/min_rmajor_analysis.ipynb +++ b/min_rmajor/min_rmajor_analysis.ipynb @@ -1246,7 +1246,8 @@ } ], "source": [ - "campaign, results = analyse.read_campaign(campaign_name)\n", + "campaign = analyse.get_campaign(campaign_name)\n", + "results = analyse.get_samples(campaign)\n", "results" ] }, diff --git a/ra/metrics/README.md b/ra/metrics/README.md new file mode 100644 index 0000000..25ce4da --- /dev/null +++ b/ra/metrics/README.md @@ -0,0 +1,5 @@ +# Local reliability analysis: different reliability metrics + +Run a local reliability analysis, comparing different reliability metrics. + +Originally, the requirement violation severity function $s$ was defined by the RMS violated inequality constraints. This is modified to a normalised version; normalised to the value of the severity at the solution point. The severity function then becomes a test of whether the sample point is more or less violated than the solution point. \ No newline at end of file diff --git a/ra/metrics/lt_ineqs_after_ra_mods.template b/ra/metrics/lt_ineqs_after_ra_mods.template new file mode 100644 index 0000000..8b0e875 --- /dev/null +++ b/ra/metrics/lt_ineqs_after_ra_mods.template @@ -0,0 +1,449 @@ +* Once through only: no optimisation +ioptimz = -2 +* Define number of equality constraints, and +* use inequality constraints: corresponding f-values removed +neqns = 3 + +*--------------------------------------------------* + + +*---------------Constraint Equations---------------* + +icc = 1 * Beta +icc = 2 * Global power balance +icc = 11 * Radial build +icc = 5 * Density upper limit +icc = 8 * Neutron wall load upper limit +icc = 9 * Fusion power upper limit +icc = 13 * Burn time lower limit +icc = 15 * LH power threshold limit +icc = 30 * Injection power upper limit +icc = 16 * Net electric power lower limit +icc = 24 * Beta upper limit +icc = 25 * Peak toroidal field upper limit +icc = 26 * Central solenoid EOF current density upper limit +icc = 27 * Central solenoid BOP current density upper limit +icc = 33 * I_op +icc = 34 * Dump voltage upper limit +icc = 35 * J_winding pack +icc = 36 * TF coil temperature margin lower limit +icc = 60 * Central solenoid temperature margin lower limit +icc = 62 * taup +icc = 65 * Dump time set by VV loads +icc = 72 * central solenoid shear stress limit +icc = 81 * Ne +icc = 68 * Psep +icc = 31 * TF coil case stress upper limit +icc = 32 * TF coil conduit stress upper limit + +*---------------Iteration Variables----------------* + +ixc = 2 * bt +ixc = 3 * rmajor +boundl(3) = 8.0 +boundu(3) = 9.0 +ixc = 4 * te +boundu(4) = 100.0 +ixc = 5 * beta +ixc = 6 * dene +ixc = 10 * hfact +boundu(10) = 1.2 +ixc = 13 * tfcth +boundl(13) = 0.7 +ixc = 16 * ohcth +boundl(16) = 0.3 +ixc = 18 * q +boundl(18) = 3.0 +ixc = 29 * bore +boundl(29) = 0.1 +ixc = 37 * coheof +ixc = 41 * fcohbop +ixc = 44 * fvsbrnni +ixc = 56 * tdmptf +ixc = 57 * thkcas +ixc = 58 * thwcndut +boundl(58) = 0.008 +ixc = 59 * fcutfsu +boundl(59) = 0.50 +boundu(59) = 0.94 +ixc = 60 * cpttf +boundl(60) = 65000.0 +boundu(60) = 90000.0 +ixc = 109 * ralpne +boundu(109) = 0.1 +ixc = 122 * oh_steel_frac +ixc = 135 * fimp(13) +ixc = 140 * dr_tf_wp +boundl(140) = 0.4 + +*---------------Cs Fatigue Variables---------------* + + +*------------------- Costs 1990--------------------* + + +*------------------- Costs 2015--------------------* + + +*-----------------Blanket Library------------------* + + +*----------------------Build-----------------------* + + +*-----------------Build Variables------------------* + +blnkith = 0.7 * inboard blanket thickness (m); (calculated if `blktmodel>0`) (=0;0 if `iblnkith=0`) +blnkoth = 1.0 * outboard blanket thickness (m); calculated if `blktmodel>0` +bore = 2.003843190236783 * central solenoid inboard radius (m) (`iteration variable 29`) +ddwex = 0.15 * cryostat thickness (m) +d_vv_in = 0.3 * vacuum vessel inboard thickness (TF coil / shield) (m) +d_vv_out = 0.3 * vacuum vessel outboard thickness (TF coil / shield) (m) +d_vv_top = 0.3 * vacuum vessel topside thickness (TF coil / shield) (m) (= d_vv_bot if double-null) +d_vv_bot = 0.3 * vacuum vessel underside thickness (TF coil / shield) (m) +gapds = 0.02 * gap between inboard vacuum vessel and thermal shield (m) (`iteration variable 61`) +ohcth = 0.546816593988753 * Central solenoid thickness (m) (`iteration variable 16`) +scrapli = 0.25 * Gap between plasma and first wall; inboard side (m) (if `iscrp=1`) +scraplo = 0.25 * Gap between plasma and first wall; outboard side (m) (if `iscrp=1`) +shldith = 0.3 * inboard shield thickness (m) (`iteration variable 93`) +shldoth = 0.800 * outboard shield thickness (m) (`iteration variable 94`) +tfcth = 1.2 * inboard TF coil thickness; (centrepost for ST) (m) +thshield_ib = 0.050 * TF-VV thermal shield thickness; inboard (m) +thshield_ob = 0.050 * TF-VV thermal shield thickness; outboard (m) +thshield_vb = 0.050 * TF-VV thermal shield thickness; vertical build (m) +vvblgap = 0.02 * gap between vacuum vessel and blanket (m) + +*---------------Buildings Variables----------------* + + +*-----------------Ccfe Hcpb Module-----------------* + + +*---------------Const And Precisions---------------* + + +*--------------------Constants---------------------* + + +*---------------Constraint Variables---------------* + +bmxlim = 14.0 * maximum peak toroidal field (T) (`constraint equation 25`) +fbetatry = 0.5 * f-value for beta limit (`constraint equation 24`; `iteration variable 36`) +fdene = 1.2 * f-value for density limit (`constraint equation 5`; `iteration variable 9`) +fiooic = 0.65 * f-value for TF coil operating current / critical current ratio +fjohc = 0.6 * f-value for central solenoid current at end-of-flattop +fjohc0 = 0.6 * f-value for central solenoid current at beginning of pulse +fjprot = 1.0 * f-value for TF coil winding pack current density +foh_stress = 1.0 * f-value for Tresca yield criterion in Central Solenoid +fmaxvvstress = 1.0 * f-value for maximum permitted stress of the VV +fvdump = 1.0 * f-value for dump voltage (`constraint equation 34`; `iteration variable 51`) +fwalld = 1.0 * f-value for maximum wall load (`constraint equation 8`; `iteration variable 14`) +pnetelin = 400.0 * required net electric power (MW) (`constraint equation 16`) +powfmax = 3000 * maximum fusion power (MW) (`constraint equation 9`) +psepbqarmax = 10.0 * maximum ratio of Psep*Bt/qAR (MWT/m) (`constraint equation 68`) +tbrnmn = 7200.0 * minimum burn time (s) (KE - no longer itv;; see issue #706) +walalw = 2.0 * allowable neutron wall-load (MW/m2) (`constraint equation 8`) +taulimit = 5.0 * Lower limit on taup/taueff the ratio of alpha particle to energy confinement + +*-------------------Constraints--------------------* + + +*------------------Cost Variables------------------* + +cfactr = 0.80 * Total plant availability fraction; input if `iavail=0` +cost_model = 0 * Switch for cost model; +iavail = 0 * Switch for plant availability model; +output_costs = 1 * Switch for costs output; + +*----------------------Costs-----------------------* + + +*-------------Current Drive Variables--------------* + +bscfmax = 0.95 * maximum fraction of plasma current from bootstrap; if `bscfmax < 0`; +etaech = 0.5 * ECH wall plug to injector efficiency +gamma_ecrh = 0.30 * User input ECRH gamma (1;0e20 A/(W m^2)) +iefrf = 10 * Switch for current drive efficiency model; +pheat = 75.0 * heating power not used for current drive (MW) (`iteration variable 11`) +pinjalw = 200.0 * maximum allowable value for injected power (MW) (`constraint equation 30`) + +*-------------------Dcll Module--------------------* + + +*------------Define Iteration Variables------------* + + +*----------------Divertor Variables----------------* + +divfix = 0.62 * divertor structure vertical thickness (m) + +*------------------Error Handling------------------* + + +*-------------------Final Module-------------------* + + +*-------------------Fson Library-------------------* + + +*-------------------Fson Path M--------------------* + + +*------------------Fson String M-------------------* + + +*-------------------Fson Value M-------------------* + + +*----------------Function Evaluator----------------* + + +*--------------------Fw Module---------------------* + + +*-------------------Fwbs Module--------------------* + + +*------------------Fwbs Variables------------------* + +inuclear = 1 * switch for nuclear heating in the coils; +qnuc = 1.3e4 * nuclear heating in the coils (W) (`inuclear=1`) +primary_pumping = 3 * Switch for pumping power for primary coolant (mechanical power only and peak first wall +secondary_cycle = 2 * Switch for power conversion cycle; +vfshld = 0.60 * coolant void fraction in shield +etaiso = 0.9 * isentropic efficiency of FW and blanket coolant pumps +etahtp = 0.87 * electrical efficiency of primary coolant pumps + +*-----------------Global Variables-----------------* + +runtitle = generic large tokamak * short descriptive title for the run + +*-------------Heat Transport Variables-------------* + +etath = 0.4 * thermal to electric conversion efficiency if `secondary_cycle=2`; otherwise calculated; +ipowerflow = 0 * switch for power flow model; +iprimshld = 1 * Switch for shield thermal power destiny; + +*--------------------Ife Module--------------------* + + +*------------------Ife Variables-------------------* + + +*------------Impurity Radiation Module-------------* + +coreradius = 0.75 * coreradius /0;6/ ; normalised radius defining the 'core' region +coreradiationfraction = 0.6 * coreradiationfraction /1;0/ ; fraction of radiation from 'core' region that is subtracted from the loss power +fimp(1) = 0.9 +fimp(2) = 0.1 +fimp(3) = 0.0 +fimp(4) = 0.0 +fimp(5) = 0.0 +fimp(6) = 0.0 +fimp(7) = 0.0 +fimp(8) = 0.0 +fimp(9) = 0.0 +fimp(10) = 0.0 +fimp(11) = 0.0 +fimp(12) = 0.0 +fimp(13) = 0.000597755323387789 +fimp(14) = 5e-06 + +*-------------------Init Module--------------------* + + +*-------------------Main Module--------------------* + + +*------------------Maths Library-------------------* + + +*--------------Neoclassics Constants---------------* + + +*----------------Neoclassics Module----------------* + + +*---------------------Numerics---------------------* + +minmax = 1 * +neqns = 3 * neqns /0/ ; number of equality constraints to be satisfied +epsvmc = 1e-7 * epsvmc /1;0e-6/ ; error tolerance for VMCON + +*----------------Pf Power Variables----------------* + + +*------------------Pfcoil Module-------------------* + + +*-----------------Pfcoil Variables-----------------* + +alstroh = 7.5d8 * allowable hoop stress in Central Solenoid structural material (Pa) +coheof = 21443595.371072624 * Central solenoid overall current density at end of flat-top (A/m2) (`iteration variable 37`) (`sweep variable 62`) +cptdin = 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4 * peak current per turn input for PF coil i (A) +fcohbop = 0.93491189654662 * ratio of central solenoid overall current density at beginning of pulse / end of flat-top +fcuohsu = 0.70 * copper fraction of strand in central solenoid +ipfloc = 2,2,3,3 * Switch for location of PF coil group i; +isumatoh = 1 * switch for superconductor material in central solenoid; +isumatpf = 3 * switch for superconductor material in PF coils; +ncls = 1,1,2,2 * number of PF coils in group j +ngrp = 4 * number of groups of PF coils; Symmetric coil pairs should all be in the same group +ohhghf = 0.9 * Central solenoid height / TF coil internal height +oh_steel_frac = 0.4856940627014451 * central solenoid steel fraction (`iteration variable 122`) +rjconpf = 1.1d7, 1.1d7, 6.d6, 6.d6, 8.d6, 8.0d6, 8.0d6, 8.0d6 * average winding pack current density of PF coil i (A/m2) at time of peak +rpf2 = -1.825 * offset (m) of radial position of `ipfloc=2` PF coils from being at +sigpfcf = 0.666 * fraction of JxB hoop force supported by steel case for superconducting PF coils (`ipfres=0`) +zref(1) = 3.6 +zref(2) = 1.2 +zref(3) = 1.0 +zref(4) = 2.8 +zref(5) = 1.0 +zref(6) = 1.0 +zref(7) = 1.0 +zref(8) = 1.0 +zref(9) = 1.0 +zref(10) = 1.0 + +*-------------Physics Functions Module-------------* + + +*------------------Physics Module------------------* + + +*----------------Physics Variables-----------------* + +alphan = 1.00 * density profile index +alphat = 1.45 * temperature profile index +aspect = 3.0 * aspect ratio (`iteration variable 1`) +beta = 0.03230408815355488 * total plasma beta (`iteration variable 5`) (calculated if stellarator) +bt = 5.318322174644904 * toroidal field on axis (T) (`iteration variable 2`) +dene = 7.796223900029837e+19 * electron density (/m3) (`iteration variable 6`) +dnbeta = 3.0 * Troyon-like coefficient for beta scaling calculated +fgwsep = 0.5 * fraction of Greenwald density to set as separatrix density; If `<0`; separatrix +fkzohm = 1.02 * Zohm elongation scaling adjustment factor (`ishape=2; 3`) +fvsbrnni = 0.4242184436680697 * fraction of the plasma current produced by non-inductive means (`iteration variable 44`) +gamma = 0.3 * Ejima coefficient for resistive startup V-s formula +hfact = 1.185971818905028 * H factor on energy confinement times; radiation corrected (`iteration variable 10`); +ibss = 4 * switch for bootstrap current scaling +iculbl = 1 * switch for beta limit scaling (`constraint equation 24`) +icurr = 4 * switch for plasma current scaling to use +idensl = 7 * switch for density limit to enforce (`constraint equation 5`) +ifalphap = 1 * switch for fast alpha pressure calculation +iinvqd = 1 * switch for inverse quadrature in L-mode scaling laws 5 and 9; +ipedestal = 1 * switch for pedestal profiles; +neped = 0.5e20 * electron density of pedestal [m-3] (`ipedestal==1) +nesep = 0.2e20 * electron density at separatrix [m-3] (`ipedestal==1) +plasma_res_factor = 0.7 * plasma resistivity pre-factor +rhopedn = 0.94 * r/a of density pedestal (`ipedestal==1`) +rhopedt = 0.94 * r/a of temperature pedestal (`ipedestal==1`) +tbeta = 2.0 * temperature profile index beta (`ipedestal==1) +teped = 5.5 * electron temperature of pedestal (keV) (`ipedestal==1; ieped=0; calculated for ieped=1`) +tesep = 0.1 * electron temperature at separatrix (keV) (`ipedestal==1`) calculated if reinke +iprofile = 1 * switch for current profile consistency; +isc = 34 * switch for energy confinement time scaling law (see description in `tauscl`) +ishape = 0 * switch for plasma cross-sectional shape calculation; +kappa = 1.85 * plasma separatrix elongation (calculated if `ishape = 1-5; 7 or 9-10`) +q = 3.7339078193128556 * Safety factor 'near' plasma edge (`iteration variable 18`) equal to q95 +q0 = 1.0 * safety factor on axis +ralpne = 0.060238763988650204 * thermal alpha density/electron density (`iteration variable 109`) +rmajor = 8.0 * plasma major radius (m) (`iteration variable 3`) +i_single_null = 1 * switch for single null / double null plasma; +ssync = 0.6 * synchrotron wall reflectivity factor +te = 12.221383528378944 * volume averaged electron temperature (keV) (`iteration variable 4`) +triang = 0.5 * plasma separatrix triangularity (calculated if `ishape = 1; 3-5 or 7`) + +*----------------------Power-----------------------* + + +*------------Primary Pumping Variables-------------* + + +*------------------Process Input-------------------* + + +*------------------Process Output------------------* + + +*-----------------Profiles Module------------------* + + +*-----------------Pulse Variables------------------* + +lpulse = 1 * Switch for reactor model; + +*-----------------Rebco Variables------------------* + + +*------------------Reinke Module-------------------* + + +*-----------------Reinke Variables-----------------* + + +*---------------Resistive Materials----------------* + + +*-------------------Scan Module--------------------* + + +*-----------------Sctfcoil Module------------------* + + +*----------------Startup Variables-----------------* + + +*------------Stellarator Configuration-------------* + + +*----------------Stellarator Module----------------* + + +*--------------Stellarator Variables---------------* + + +*---------------Structure Variables----------------* + + +*-----------------Tfcoil Variables-----------------* + +sig_tf_case_max = 7.5e8 * Allowable maximum shear stress (Tresca criterion) in TF coil case (Pa) +sig_tf_wp_max = 7.5e8 * Allowable maximum shear stress (Tresca criterion) in TF coil conduit (Pa) +casthi = 0.06 * inboard TF coil case plasma side thickness (m) (calculated for stellarators) +casths = 0.05 * inboard TF coil sidewall case thickness (m) (calculated for stellarators) +cpttf = 85462.67500253802 * TF coil current per turn (A); (calculated for stellarators) (calculated for +dhecoil = 0.01 * diameter of central helium channel in TF winding (m) +fcutfsu = 0.8231999768826475 * copper fraction of cable conductor (TF coils) +i_tf_sc_mat = 1 * Switch for superconductor material in TF coils; +ripmax = 0.6 * aximum allowable toroidal field ripple amplitude at plasma edge (%) +tdmptf = 17.97282589344206 * fast discharge time for TF coil in event of quench (s) (`iteration variable 56`) +n_tf = 16 * Number of TF coils (default = 50 for stellarators); Number of TF coils outer legs for ST +tftmp = 4.75 * peak helium coolant temperature in TF coils and PF coils (K) +thkcas = 0.2816873221155309 * inboard TF coil case outer (non-plasma side) thickness (m) (`iteration variable 57`) +dr_tf_wp = 0.5153787768966674 * radial thickness of winding pack (m) (`iteration variable 140`) (issue #514) +thwcndut = 0.008012110032981922 * TF coil conduit case thickness (m) (`iteration variable 58`) +tinstf = 0.008 * Thickness of the ground insulation layer surrounding (m) +tmargmin_cs = 1.5 * minimum allowable temperature margin ; CS (K) +tmargmin = 1.5 * minimum allowable temperature margin ; TFC AND CS (K) +vdalw = 10.0 * max voltage across TF coil during quench (kV) (`iteration variable 52`) +vftf = 0.3 * coolant fraction of TFC 'cable' (`i_tf_sup=1`); or of TFC leg (`i_tf_ssup=0`) + +*-----------------Times Variables------------------* + +pulsetimings = 0 * Switch for pulse timings (if lpulse=1); +tdwell = 1800.0 * time between pulses in a pulsed reactor (s) (`iteration variable 17`) +tramp = 500.0 * initial PF coil charge time (s); if pulsed; = tohs + +*--------------------Utilities---------------------* + + +*-----------------Vacuum Variables-----------------* + + +*--------------Water Usage Variables---------------* + +****************************** +* Modifications for reliability analysis: overwrites any previous values +****************************** +fimp(14) = $fimp_14 * W impurity fraction +psepbqarmax = $psepbqarmax * divertor protection limit +triang = $triang * triangularity \ No newline at end of file diff --git a/ra/metrics/lt_ineqs_before_conv_crit_mod.template b/ra/metrics/lt_ineqs_before_conv_crit_mod.template new file mode 100644 index 0000000..22c24fe --- /dev/null +++ b/ra/metrics/lt_ineqs_before_conv_crit_mod.template @@ -0,0 +1,449 @@ +* Once through only: no optimisation +ioptimz = -2 +* Define number of equality constraints, and +* use inequality constraints: corresponding f-values removed +neqns = 3 + +*--------------------------------------------------* + + +*---------------Constraint Equations---------------* + +icc = 1 * Beta +icc = 2 * Global power balance +icc = 11 * Radial build +icc = 5 * Density upper limit +icc = 8 * Neutron wall load upper limit +icc = 9 * Fusion power upper limit +icc = 13 * Burn time lower limit +icc = 15 * LH power threshold limit +icc = 30 * Injection power upper limit +icc = 16 * Net electric power lower limit +icc = 24 * Beta upper limit +icc = 25 * Peak toroidal field upper limit +icc = 26 * Central solenoid EOF current density upper limit +icc = 27 * Central solenoid BOP current density upper limit +icc = 33 * I_op +icc = 34 * Dump voltage upper limit +icc = 35 * J_winding pack +icc = 36 * TF coil temperature margin lower limit +icc = 60 * Central solenoid temperature margin lower limit +icc = 62 * taup +icc = 65 * Dump time set by VV loads +icc = 72 * central solenoid shear stress limit +icc = 81 * Ne +icc = 68 * Psep +icc = 31 * TF coil case stress upper limit +icc = 32 * TF coil conduit stress upper limit + +*---------------Iteration Variables----------------* + +ixc = 2 * bt +ixc = 3 * rmajor +boundl(3) = 8.0 +boundu(3) = 9.0 +ixc = 4 * te +boundu(4) = 100.0 +ixc = 5 * beta +ixc = 6 * dene +ixc = 10 * hfact +boundu(10) = 1.2 +ixc = 13 * tfcth +boundl(13) = 0.7 +ixc = 16 * ohcth +boundl(16) = 0.3 +ixc = 18 * q +boundl(18) = 3.0 +ixc = 29 * bore +boundl(29) = 0.1 +ixc = 37 * coheof +ixc = 41 * fcohbop +ixc = 44 * fvsbrnni +ixc = 56 * tdmptf +ixc = 57 * thkcas +ixc = 58 * thwcndut +boundl(58) = 0.008 +ixc = 59 * fcutfsu +boundl(59) = 0.50 +boundu(59) = 0.94 +ixc = 60 * cpttf +boundl(60) = 65000.0 +boundu(60) = 90000.0 +ixc = 109 * ralpne +boundu(109) = 0.1 +ixc = 122 * oh_steel_frac +ixc = 135 * fimp(13) +ixc = 140 * dr_tf_wp +boundl(140) = 0.4 + +*---------------Cs Fatigue Variables---------------* + + +*------------------- Costs 1990--------------------* + + +*------------------- Costs 2015--------------------* + + +*-----------------Blanket Library------------------* + + +*----------------------Build-----------------------* + + +*-----------------Build Variables------------------* + +blnkith = 0.7 * inboard blanket thickness (m); (calculated if `blktmodel>0`) (=0;0 if `iblnkith=0`) +blnkoth = 1.0 * outboard blanket thickness (m); calculated if `blktmodel>0` +bore = 1.9538096403866128 * central solenoid inboard radius (m) (`iteration variable 29`) +ddwex = 0.15 * cryostat thickness (m) +d_vv_in = 0.3 * vacuum vessel inboard thickness (TF coil / shield) (m) +d_vv_out = 0.3 * vacuum vessel outboard thickness (TF coil / shield) (m) +d_vv_top = 0.3 * vacuum vessel topside thickness (TF coil / shield) (m) (= d_vv_bot if double-null) +d_vv_bot = 0.3 * vacuum vessel underside thickness (TF coil / shield) (m) +gapds = 0.02 * gap between inboard vacuum vessel and thermal shield (m) (`iteration variable 61`) +ohcth = 0.5699418715863596 * Central solenoid thickness (m) (`iteration variable 16`) +scrapli = 0.25 * Gap between plasma and first wall; inboard side (m) (if `iscrp=1`) +scraplo = 0.25 * Gap between plasma and first wall; outboard side (m) (if `iscrp=1`) +shldith = 0.3 * inboard shield thickness (m) (`iteration variable 93`) +shldoth = 0.800 * outboard shield thickness (m) (`iteration variable 94`) +tfcth = 1.2 * inboard TF coil thickness; (centrepost for ST) (m) +thshield_ib = 0.050 * TF-VV thermal shield thickness; inboard (m) +thshield_ob = 0.050 * TF-VV thermal shield thickness; outboard (m) +thshield_vb = 0.050 * TF-VV thermal shield thickness; vertical build (m) +vvblgap = 0.02 * gap between vacuum vessel and blanket (m) + +*---------------Buildings Variables----------------* + + +*-----------------Ccfe Hcpb Module-----------------* + + +*---------------Const And Precisions---------------* + + +*--------------------Constants---------------------* + + +*---------------Constraint Variables---------------* + +bmxlim = 14.0 * maximum peak toroidal field (T) (`constraint equation 25`) +fbetatry = 0.5 * f-value for beta limit (`constraint equation 24`; `iteration variable 36`) +fdene = 1.2 * f-value for density limit (`constraint equation 5`; `iteration variable 9`) +fiooic = 0.65 * f-value for TF coil operating current / critical current ratio +fjohc = 0.6 * f-value for central solenoid current at end-of-flattop +fjohc0 = 0.6 * f-value for central solenoid current at beginning of pulse +fjprot = 1.0 * f-value for TF coil winding pack current density +foh_stress = 1.0 * f-value for Tresca yield criterion in Central Solenoid +fmaxvvstress = 1.0 * f-value for maximum permitted stress of the VV +fvdump = 1.0 * f-value for dump voltage (`constraint equation 34`; `iteration variable 51`) +fwalld = 1.0 * f-value for maximum wall load (`constraint equation 8`; `iteration variable 14`) +pnetelin = 400.0 * required net electric power (MW) (`constraint equation 16`) +powfmax = 3000 * maximum fusion power (MW) (`constraint equation 9`) +psepbqarmax = 10.0 * maximum ratio of Psep*Bt/qAR (MWT/m) (`constraint equation 68`) +tbrnmn = 7200.0 * minimum burn time (s) (KE - no longer itv;; see issue #706) +walalw = 2.0 * allowable neutron wall-load (MW/m2) (`constraint equation 8`) +taulimit = 5.0 * Lower limit on taup/taueff the ratio of alpha particle to energy confinement + +*-------------------Constraints--------------------* + + +*------------------Cost Variables------------------* + +cfactr = 0.80 * Total plant availability fraction; input if `iavail=0` +cost_model = 0 * Switch for cost model; +iavail = 0 * Switch for plant availability model; +output_costs = 1 * Switch for costs output; + +*----------------------Costs-----------------------* + + +*-------------Current Drive Variables--------------* + +bscfmax = 0.95 * maximum fraction of plasma current from bootstrap; if `bscfmax < 0`; +etaech = 0.5 * ECH wall plug to injector efficiency +gamma_ecrh = 0.30 * User input ECRH gamma (1;0e20 A/(W m^2)) +iefrf = 10 * Switch for current drive efficiency model; +pheat = 75.0 * heating power not used for current drive (MW) (`iteration variable 11`) +pinjalw = 200.0 * maximum allowable value for injected power (MW) (`constraint equation 30`) + +*-------------------Dcll Module--------------------* + + +*------------Define Iteration Variables------------* + + +*----------------Divertor Variables----------------* + +divfix = 0.62 * divertor structure vertical thickness (m) + +*------------------Error Handling------------------* + + +*-------------------Final Module-------------------* + + +*-------------------Fson Library-------------------* + + +*-------------------Fson Path M--------------------* + + +*------------------Fson String M-------------------* + + +*-------------------Fson Value M-------------------* + + +*----------------Function Evaluator----------------* + + +*--------------------Fw Module---------------------* + + +*-------------------Fwbs Module--------------------* + + +*------------------Fwbs Variables------------------* + +inuclear = 1 * switch for nuclear heating in the coils; +qnuc = 1.3e4 * nuclear heating in the coils (W) (`inuclear=1`) +primary_pumping = 3 * Switch for pumping power for primary coolant (mechanical power only and peak first wall +secondary_cycle = 2 * Switch for power conversion cycle; +vfshld = 0.60 * coolant void fraction in shield +etaiso = 0.9 * isentropic efficiency of FW and blanket coolant pumps +etahtp = 0.87 * electrical efficiency of primary coolant pumps + +*-----------------Global Variables-----------------* + +runtitle = generic large tokamak * short descriptive title for the run + +*-------------Heat Transport Variables-------------* + +etath = 0.4 * thermal to electric conversion efficiency if `secondary_cycle=2`; otherwise calculated; +ipowerflow = 0 * switch for power flow model; +iprimshld = 1 * Switch for shield thermal power destiny; + +*--------------------Ife Module--------------------* + + +*------------------Ife Variables-------------------* + + +*------------Impurity Radiation Module-------------* + +coreradius = 0.75 * coreradius /0;6/ ; normalised radius defining the 'core' region +coreradiationfraction = 0.6 * coreradiationfraction /1;0/ ; fraction of radiation from 'core' region that is subtracted from the loss power +fimp(1) = 0.9 +fimp(2) = 0.1 +fimp(3) = 0.0 +fimp(4) = 0.0 +fimp(5) = 0.0 +fimp(6) = 0.0 +fimp(7) = 0.0 +fimp(8) = 0.0 +fimp(9) = 0.0 +fimp(10) = 0.0 +fimp(11) = 0.0 +fimp(12) = 0.0 +fimp(13) = 0.0005676083884529063 +fimp(14) = 5e-06 + +*-------------------Init Module--------------------* + + +*-------------------Main Module--------------------* + + +*------------------Maths Library-------------------* + + +*--------------Neoclassics Constants---------------* + + +*----------------Neoclassics Module----------------* + + +*---------------------Numerics---------------------* + +minmax = 1 * +neqns = 3 * neqns /0/ ; number of equality constraints to be satisfied +epsvmc = 1e-7 * epsvmc /1;0e-6/ ; error tolerance for VMCON + +*----------------Pf Power Variables----------------* + + +*------------------Pfcoil Module-------------------* + + +*-----------------Pfcoil Variables-----------------* + +alstroh = 7.5d8 * allowable hoop stress in Central Solenoid structural material (Pa) +coheof = 20910063.408582743 * Central solenoid overall current density at end of flat-top (A/m2) (`iteration variable 37`) (`sweep variable 62`) +cptdin = 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4 * peak current per turn input for PF coil i (A) +fcohbop = 0.9253870649759701 * ratio of central solenoid overall current density at beginning of pulse / end of flat-top +fcuohsu = 0.70 * copper fraction of strand in central solenoid +ipfloc = 2,2,3,3 * Switch for location of PF coil group i; +isumatoh = 1 * switch for superconductor material in central solenoid; +isumatpf = 3 * switch for superconductor material in PF coils; +ncls = 1,1,2,2 * number of PF coils in group j +ngrp = 4 * number of groups of PF coils; Symmetric coil pairs should all be in the same group +ohhghf = 0.9 * Central solenoid height / TF coil internal height +oh_steel_frac = 0.4666244422630157 * central solenoid steel fraction (`iteration variable 122`) +rjconpf = 1.1d7, 1.1d7, 6.d6, 6.d6, 8.d6, 8.0d6, 8.0d6, 8.0d6 * average winding pack current density of PF coil i (A/m2) at time of peak +rpf2 = -1.825 * offset (m) of radial position of `ipfloc=2` PF coils from being at +sigpfcf = 0.666 * fraction of JxB hoop force supported by steel case for superconducting PF coils (`ipfres=0`) +zref(1) = 3.6 +zref(2) = 1.2 +zref(3) = 1.0 +zref(4) = 2.8 +zref(5) = 1.0 +zref(6) = 1.0 +zref(7) = 1.0 +zref(8) = 1.0 +zref(9) = 1.0 +zref(10) = 1.0 + +*-------------Physics Functions Module-------------* + + +*------------------Physics Module------------------* + + +*----------------Physics Variables-----------------* + +alphan = 1.00 * density profile index +alphat = 1.45 * temperature profile index +aspect = 3.0 * aspect ratio (`iteration variable 1`) +beta = 0.032875409159602936 * total plasma beta (`iteration variable 5`) (calculated if stellarator) +bt = 5.3432605090882115 * toroidal field on axis (T) (`iteration variable 2`) +dene = 7.968944559592192e+19 * electron density (/m3) (`iteration variable 6`) +dnbeta = 3.0 * Troyon-like coefficient for beta scaling calculated +fgwsep = 0.5 * fraction of Greenwald density to set as separatrix density; If `<0`; separatrix +fkzohm = 1.02 * Zohm elongation scaling adjustment factor (`ishape=2; 3`) +fvsbrnni = 0.43455894250944155 * fraction of the plasma current produced by non-inductive means (`iteration variable 44`) +gamma = 0.3 * Ejima coefficient for resistive startup V-s formula +hfact = 1.2 * H factor on energy confinement times; radiation corrected (`iteration variable 10`); +ibss = 4 * switch for bootstrap current scaling +iculbl = 1 * switch for beta limit scaling (`constraint equation 24`) +icurr = 4 * switch for plasma current scaling to use +idensl = 7 * switch for density limit to enforce (`constraint equation 5`) +ifalphap = 1 * switch for fast alpha pressure calculation +iinvqd = 1 * switch for inverse quadrature in L-mode scaling laws 5 and 9; +ipedestal = 1 * switch for pedestal profiles; +neped = 0.5e20 * electron density of pedestal [m-3] (`ipedestal==1) +nesep = 0.2e20 * electron density at separatrix [m-3] (`ipedestal==1) +plasma_res_factor = 0.7 * plasma resistivity pre-factor +rhopedn = 0.94 * r/a of density pedestal (`ipedestal==1`) +rhopedt = 0.94 * r/a of temperature pedestal (`ipedestal==1`) +tbeta = 2.0 * temperature profile index beta (`ipedestal==1) +teped = 5.5 * electron temperature of pedestal (keV) (`ipedestal==1; ieped=0; calculated for ieped=1`) +tesep = 0.1 * electron temperature at separatrix (keV) (`ipedestal==1`) calculated if reinke +iprofile = 1 * switch for current profile consistency; +isc = 34 * switch for energy confinement time scaling law (see description in `tauscl`) +ishape = 0 * switch for plasma cross-sectional shape calculation; +kappa = 1.85 * plasma separatrix elongation (calculated if `ishape = 1-5; 7 or 9-10`) +q = 3.6740980326674357 * Safety factor 'near' plasma edge (`iteration variable 18`) equal to q95 +q0 = 1.0 * safety factor on axis +ralpne = 0.08184572822808084 * thermal alpha density/electron density (`iteration variable 109`) +rmajor = 8.0 * plasma major radius (m) (`iteration variable 3`) +i_single_null = 1 * switch for single null / double null plasma; +ssync = 0.6 * synchrotron wall reflectivity factor +te = 12.529208872441531 * volume averaged electron temperature (keV) (`iteration variable 4`) +triang = 0.5 * plasma separatrix triangularity (calculated if `ishape = 1; 3-5 or 7`) + +*----------------------Power-----------------------* + + +*------------Primary Pumping Variables-------------* + + +*------------------Process Input-------------------* + + +*------------------Process Output------------------* + + +*-----------------Profiles Module------------------* + + +*-----------------Pulse Variables------------------* + +lpulse = 1 * Switch for reactor model; + +*-----------------Rebco Variables------------------* + + +*------------------Reinke Module-------------------* + + +*-----------------Reinke Variables-----------------* + + +*---------------Resistive Materials----------------* + + +*-------------------Scan Module--------------------* + + +*-----------------Sctfcoil Module------------------* + + +*----------------Startup Variables-----------------* + + +*------------Stellarator Configuration-------------* + + +*----------------Stellarator Module----------------* + + +*--------------Stellarator Variables---------------* + + +*---------------Structure Variables----------------* + + +*-----------------Tfcoil Variables-----------------* + +sig_tf_case_max = 7.5e8 * Allowable maximum shear stress (Tresca criterion) in TF coil case (Pa) +sig_tf_wp_max = 7.5e8 * Allowable maximum shear stress (Tresca criterion) in TF coil conduit (Pa) +casthi = 0.06 * inboard TF coil case plasma side thickness (m) (calculated for stellarators) +casths = 0.05 * inboard TF coil sidewall case thickness (m) (calculated for stellarators) +cpttf = 79653.5996379021 * TF coil current per turn (A); (calculated for stellarators) (calculated for +dhecoil = 0.01 * diameter of central helium channel in TF winding (m) +fcutfsu = 0.8279235435984497 * copper fraction of cable conductor (TF coils) +i_tf_sc_mat = 1 * Switch for superconductor material in TF coils; +ripmax = 0.6 * aximum allowable toroidal field ripple amplitude at plasma edge (%) +tdmptf = 19.516156838432067 * fast discharge time for TF coil in event of quench (s) (`iteration variable 56`) +n_tf = 16 * Number of TF coils (default = 50 for stellarators); Number of TF coils outer legs for ST +tftmp = 4.75 * peak helium coolant temperature in TF coils and PF coils (K) +thkcas = 0.27817131748284374 * inboard TF coil case outer (non-plasma side) thickness (m) (`iteration variable 57`) +dr_tf_wp = 0.5446354488716441 * radial thickness of winding pack (m) (`iteration variable 140`) (issue #514) +thwcndut = 0.008 * TF coil conduit case thickness (m) (`iteration variable 58`) +tinstf = 0.008 * Thickness of the ground insulation layer surrounding (m) +tmargmin_cs = 1.5 * minimum allowable temperature margin ; CS (K) +tmargmin = 1.5 * minimum allowable temperature margin ; TFC AND CS (K) +vdalw = 10.0 * max voltage across TF coil during quench (kV) (`iteration variable 52`) +vftf = 0.3 * coolant fraction of TFC 'cable' (`i_tf_sup=1`); or of TFC leg (`i_tf_ssup=0`) + +*-----------------Times Variables------------------* + +pulsetimings = 0 * Switch for pulse timings (if lpulse=1); +tdwell = 1800.0 * time between pulses in a pulsed reactor (s) (`iteration variable 17`) +tramp = 500.0 * initial PF coil charge time (s); if pulsed; = tohs + +*--------------------Utilities---------------------* + + +*-----------------Vacuum Variables-----------------* + + +*--------------Water Usage Variables---------------* + +****************************** +* Modifications for reliability analysis: overwrites any previous values +****************************** +fimp(14) = $fimp_14 * W impurity fraction +psepbqarmax = $psepbqarmax * divertor protection limit +triang = $triang * triangularity \ No newline at end of file diff --git a/ra/metrics/ra_analysis.ipynb b/ra/metrics/ra_analysis.ipynb new file mode 100644 index 0000000..870a3b2 --- /dev/null +++ b/ra/metrics/ra_analysis.ipynb @@ -0,0 +1,384 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Local reliability with w severity function: analyse\n", + "\n", + "Evaluate local reliability for 3 uncertain parameters (fimp_14, psepbqarmax and triang). This uses the $w$ worst-violated inequality constraint severity metric." + ] + }, + { + "cell_type": "code", + "execution_count": 103, + "metadata": {}, + "outputs": [], + "source": [ + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "import numpy as np\n", + "import pandas as pd\n", + "from infeas import analyse" + ] + }, + { + "cell_type": "code", + "execution_count": 104, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Reading in campaign database.\n", + "Reading in campaign database.\n" + ] + } + ], + "source": [ + "campaign_names = [\n", + " \"lt_3p_before_conv_crit_mod\", # with ra mods, but without conv crit mod\n", + " \"lt_3p_after_ra_mods\", # with ra mods, with feasible conv crit mod\n", + "]\n", + "\n", + "# 3p: triang, psepbqarmax, fimp_14\n", + "\n", + "qois = [\"w\"]\n", + "\n", + "# Campaign name bug: string pattern must match unique campaign\n", + "campaigns = {}\n", + "for campaign_name in campaign_names:\n", + " campaigns[campaign_name] = analyse.get_campaign(campaign_name)" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Peek at samples from one campaign: check out a responses." + ] + }, + { + "cell_type": "code", + "execution_count": 105, + "metadata": {}, + "outputs": [], + "source": [ + "# samples = analyse.get_samples(campaigns[\"lt_3p_feas\"])\n", + "# samples[qois].describe()" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Distribution of violated constraint residuals" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Original convergence criterionFeasible convergence criterion
00.0572030.058435
10.0249300.062459
20.0449470.058435
30.0843240.064453
40.0445540.068452
.........
1450.0383970.035472
1460.0383970.034071
1470.0383970.035472
1480.0257310.028744
1490.0306510.028744
\n", + "

150 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " Original convergence criterion Feasible convergence criterion\n", + "0 0.057203 0.058435\n", + "1 0.024930 0.062459\n", + "2 0.044947 0.058435\n", + "3 0.084324 0.064453\n", + "4 0.044554 0.068452\n", + ".. ... ...\n", + "145 0.038397 0.035472\n", + "146 0.038397 0.034071\n", + "147 0.038397 0.035472\n", + "148 0.025731 0.028744\n", + "149 0.030651 0.028744\n", + "\n", + "[150 rows x 2 columns]" + ] + }, + "execution_count": 106, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "response_series = []\n", + "for campaign_name in campaigns:\n", + " # TODO How are these different?\n", + " # samples = campaign.get_collation_result()\n", + " # samples = campaign.analyse(qoi_cols=qois)\n", + "\n", + " results = campaigns[campaign_name].analyse(qoi_cols=qois)\n", + " results.samples.columns = results.samples.columns.droplevel(1)\n", + " samples = results.samples[\"w\"]\n", + " # Response series for one campaign\n", + " samples = samples.rename(campaign_name)\n", + " response_series.append(samples)\n", + "\n", + "# Concatenate list of response series into single df\n", + "campaigns_responses = pd.concat(response_series, axis=1)\n", + "\n", + "# Rename columns that will become legend labels (easier and less error-prone if done in df)\n", + "label_mapper = {\n", + " \"lt_3p_before_conv_crit_mod\": \"Original convergence criterion\",\n", + " \"lt_3p_after_ra_mods\": \"Feasible convergence criterion\",\n", + "}\n", + "campaigns_responses_labelled = campaigns_responses.rename(\n", + " mapper=label_mapper, axis=\"columns\"\n", + ")\n", + "campaigns_responses_labelled" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## w result\n", + "\n", + "3 uncertain params, unc params extended to include solution point, w as severity metric." + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0, 0.5, 'CDF')" + ] + }, + "execution_count": 107, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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b+3iEJENUAwzkZmZiRo1arCJylx01daUNRnYygmsptBWY6Or2cgc7KnpyVwY3KhQ5Nh4eNhP9E9Elqf4TigsLGRwYw66um47cDKwam5NnrxILbCJCPWDv6e00gUglsTgRgveYESkit8JZqSv67Yd1b6YQl9uzaHJ0QxsLIDBDRERVZxK2HU7v7BIa2DDGhvL0T+tJlUaly5dgkQiwdGjR43eZsWKFfD19bV6Och2de3aFePGjbPIvnmv2BkhAHluSfKwwoQ04NWtDhvYCCGQJ3+IPPmjrt6HJkfj5MwYnJwZgx9HdWBgYyGsuXEgV69exbRp07B161bcunULQUFB6NOnD6ZOnWowQTokJAQ3btxAtWrVjH6//v374+mnny5vscmBrV+/Hq6ursrnYWFhGDdunFkCnrLcs2QlupKH7azrtil0NUVVti7Z1sKaGwdx4cIFRERE4Ny5c/juu++QlpaG5ORkpKSkoEOHDrhz547ObeVyOZydnREYGAgXF+M/dO7u7qhRo4Y5iu/whBB4+PChtYtRYeRyOQCgatWqRs3gW5b9l+WepQqgrKFReehKHrajrtum0tYUVRm7ZFsLgxsHMXr0aEilUmzfvh1RUVGoVasWnnrqKfz222+4du0a3nvvPeW6YWFhmDVrFmJjY+Ht7Y0RI0ZoreLftGkT6tevDzc3NzzxxBP45ptvIJFIlAMcajZLTZ8+HS1btsR//vMfhIWFwcfHBwMGDMD9+/eV62zduhWPP/44fH194e/vj169euH8+fMmHWtBQQESEhIQEhICmUyGevXq4euvv1a+vmvXLrRr1w4ymQxBQUF455131AKLrl27YuzYsZg0aRKqVq2KwMBATJ8+Xfn6oEGD0L9/f7X3LCwsRLVq1ZTznBUXFyMpKQm1a9eGu7s7WrRogbVr1yrXT01NhUQiwa+//oo2bdpAJpPhzz//xP379zF48GB4enoiKCgIn376aammm4KCAkyYMAHBwcHw9PREZGQkUlNTla8rzvu2bdvQuHFjeHl5oWfPnrhx44ZamZctW4YmTZooz8OYMWOUr927dw+vvfYaqlevDm9vbzz55JM4duyY3vP+77//YuDAgahatSo8PT0RERGB/ftLfrAU1/6rr75C7dq14ebmpjzXimPr2rUrLl++jPHjx0MikahVx//555/o3Lkz3N3dERISgrFjxyI3N1f5urH3bHmvPZWToobmw5rqD8UIwkBJU9S71x26OUqToimKzVAVh8GNAY/aTCv+YezMGHfu3MG2bdvwxhtvKMfkUAgMDMTgwYOxZs0atf198sknaNGiBf773/9iypQppfZ58eJF9O3bF3369MGxY8cwcuRItQBJl/Pnz2PDhg345Zdf8Msvv2DXrl346KOPlK/n5uYiPj4ehw4dQkpKCpycnPD888+juLjYqGMFgNjYWHz33Xf4/PPPcerUKXz55Zfw8vICAFy7dg1PP/002rZti2PHjmHx4sX4+uuv8f7776vt45tvvoGnpyf279+P2bNnY+bMmdixYwcAYPDgwfj555+Rk5OjXH/btm3Iy8vD888/DwBISkrCypUrkZycjBMnTmD8+PF4+eWXsWvXLrX3eeedd/DRRx/h1KlTaN68OeLj47Fnzx5s2rQJO3bswB9//IEjR46obTNmzBjs27cP33//Pf7++2/069cPPXv2xLlz55Tr5OXl4ZNPPsF//vMf7N69G1euXMGECROUry9evBijR4/GiBEjcPz4cWzatAn16j36genXrx8yMzPx66+/4vDhw2jdujW6deums4YvJycHUVFRuHbtGjZt2oRjx45h0qRJatctLS0N69atw/r167Xmwaxfvx6PPfYYZs6ciRs3biiDsfPnz6Nnz5548cUX8ffff2PNmjX4888/1YIxwPA9a45rT+WkmSysSZE8LPWsNIEN8KgpioFNxWF9rgH5hUUIn7rNKu99cmaMUW2z586dgxACjRs31vp648aNcffuXdy8eVPZjPTkk0/i7bffVq5z6dIltW2+/PJLNGzYEHPmzAEANGzYEP/88w8++OADvWUpLi7GihUrlE0RQ4YMQUpKinK7F198UW39ZcuWoXr16jh58iSaNm1q8FjPnj2LH374ATt27EB0dDQAoE6dOsrXFy1ahJCQECxcuBASiQSNGjXC9evXkZCQgKlTp8LJqSSeb968OaZNmwYAqF+/PhYuXIiUlBR0794dMTEx8PT0xE8//YQhQ4YAAFavXo1nn30WVapUQUFBAT788EP89ttv6NChg7IMf/75J7788ktERUUpyzNz5kx0794dAHD//n188803WL16Nbp16wYAWL58OWrWrKlc/8qVK1i+fDmuXLmiXD5hwgRs3boVy5cvx4cffgigpCYpOTkZ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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots()\n", + "sns.ecdfplot(data=campaigns_responses_labelled, ax=ax)\n", + "ax.set_title(\"LT reliability analysis: 3 uncertain parameters\")\n", + "ax.set_xlabel(\"$w$, most-violated inequality constraint residual\")\n", + "ax.set_ylabel(\"CDF\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As\n", + "$$R = F_s(0\\mid\\theta),$$\n", + "Reliability $R > 0$ for the solution point under uncertainty when the feasible convergence criterion modifications are applied. There are samples point where $s \\leq 0$; some samples are feasible. This is due to the solution point itself now being feasible in the modified convergence criterion case." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## $w$ plot with $R$ annotation" + ] + }, + { + "cell_type": "code", + "execution_count": 129, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0.01761192075216762, 0.05333333333333333, 'Reliability R = 0.033')" + ] + }, + "execution_count": 129, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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4uKCs2fP4tGjR/keLzcXFxdkZGTg0KFD+W539+5dk5K2IyIicOjQIWzcuBG9e/cGAEESZUNCQlC9enV+uWHDhnBycuJfe7VajZ07d6JLly5o1qxZnv01TUCmfj50vxsLYur7ydTrLEhkZCTKlSvHL3fv3h2enp7892lhypi7VrKwxxg4cCD/2MXFBbVr14aDgwN69uzJr69duzZcXFy0rrWo32cvXrzAkSNH0LNnT/7769mzZ3j+/DlCQ0Nx8+ZNPHz4UGufQYMG5ckXK8xnzhjULFUI69evx6JFi3Dt2jWtfAR9X/a66548eYKsrCzUqFEjz7a6627evAnGGGrWrKm3HIVNbLx37x7EYnGe83l4eMDFxQX37t3TWn/8+HHs3bsX0dHRevNV1Go1li1bhpUrV+LOnTtaeRL6qnurVKmitezs7AwA8PHxybNerVYjNTWVP87JkycxY8YMnD59GpmZmVrbp6am8scyptz50Xcvb968ib/++svgF/KTJ09MOsc///yDqVOn4siRI0hLS9N6TjdQ8/LyypN8V6tWLQDcj2arVq1MOrexIiMjMX/+fPz888+IjIzE9evXceHChTz5Pvrcv38f06dPx+7du/Hy5Uut53Svz9bWNs/rWr58+Tz77dmzB5999hkSEhK08rEKGtfExcUFXbp0wcaNGzFnzhwAXJDm7e2Nt99+m9/uiy++QFRUFHx8fNC0aVO89957iIyMRLVq1Qwee/jw4diyZQveffddeHt745133kHPnj0RFhaWb5kK4uvry/eui4iIwODBgxESEoLr16+btWlK9/MIaL/2T58+RVpaWoFjLZn6+SgoONZlyvtJn4KusyC638MikQg1atTQClhNKaONjQ2fd5JbUT83zs7OqFy5cp7PhLOzs9bxivp9lpiYCMYYpk2bhmnTphk8hre3N7+s754X5jNnDApuTPTjjz+iX79+CA8Px8SJE+Hm5gaJRILY2Fi9yYJF+RJSq9UQiUT49ddf9faOcHR0LPSxgYJ/EDTq16+PlJQU/PDDDxgyZEieN+i8efMwbdo0fPzxx5gzZw4qVKgAsViMMWPG6E20NdTTw9B69t/YHrdu3UKHDh1Qp04dLF68GD4+PpDJZNi3bx+WLFmS51wFlTs/+u6bWq1Gx44dMWnSJL37aIINY6SkpCA4OBhOTk6YPXs2qlevDltb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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots()\n", + "sns.ecdfplot(data=campaigns_responses_labelled, ax=ax)\n", + "ax.set_title(\"Large tokamak reliability analysis: 3 uncertain parameters\")\n", + "ax.set_xlabel(\"$w$, most-violated inequality constraint residual\")\n", + "ax.set_ylabel(\"CDF\")\n", + "\n", + "# Intersection lines\n", + "x, y = ax.lines[0].get_data()\n", + "thresh = 0.0\n", + "# Find index of sign-change around threshold\n", + "thresh_idx = np.nonzero(np.diff(np.sign(x - thresh)))[0]\n", + "y_val = y[thresh_idx[0]]\n", + "ax.axhline(y_val, color=\"grey\", linestyle=\"dashed\")\n", + "ax.axvline(0.0, color=\"grey\", linestyle=\"dashed\")\n", + "\n", + "# Annotation positions\n", + "reliable_x = 0.75 * np.max(campaigns_responses_labelled)\n", + "reliable_y_pad = 0.04\n", + "feas_y = 0.7\n", + "feas_x_pad = 0.02 * np.max(campaigns_responses_labelled)\n", + "reliability_x_pad = 0.2 * np.max(campaigns_responses_labelled)\n", + "ax.annotate(\"Infeasible\", xy=(0.0, feas_y), xytext=(feas_x_pad, feas_y), color=\"red\")\n", + "ax.annotate(\n", + " \"Feasible\", xy=(0.0, feas_y), xytext=(-feas_x_pad, feas_y), ha=\"right\", color=\"blue\"\n", + ")\n", + "ax.annotate(\n", + " \"Unreliable\",\n", + " (reliable_x, y_val + reliable_y_pad),\n", + " color=\"red\",\n", + " verticalalignment=\"center\",\n", + " annotation_clip=False,\n", + ")\n", + "ax.annotate(\n", + " \"Reliable\",\n", + " (reliable_x, y_val - reliable_y_pad),\n", + " color=\"blue\",\n", + " verticalalignment=\"center\",\n", + " annotation_clip=False,\n", + ")\n", + "ax.annotate(\n", + " f\"Reliability R = {y_val:.2}\",\n", + " (reliability_x_pad, y_val + reliable_y_pad / 2),\n", + " color=\"green\",\n", + " verticalalignment=\"center\",\n", + " annotation_clip=False,\n", + ")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.9" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "0d602a62c005a1edaecc467843c8abc40b106c408f7dd3fdae5e868ff234b67e" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/ra/metrics/ra_eval.ipynb b/ra/metrics/ra_eval.ipynb new file mode 100644 index 0000000..584135f --- /dev/null +++ b/ra/metrics/ra_eval.ipynb @@ -0,0 +1,10333 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Local reliability: evaluate\n", + "\n", + "Evaluate local reliability for 3 uncertain parameters (fimp_14, psepbqarmax and triang)." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import easyvvuq as uq\n", + "import chaospy as cp\n", + "from pathlib import Path\n", + "from infeas.decoder import MfileDecoder" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# Define campaign\n", + "WORK_DIR = \"campaigns\"\n", + "Path(\"campaigns\").mkdir(exist_ok=True)\n", + "campaign = uq.Campaign(name=\"lt_3p_before_conv_crit_mod\", work_dir=WORK_DIR)\n", + "\n", + "# Define parameter space\n", + "# Uncertainties from Alex's SA paper\n", + "\n", + "params = {\n", + " # Default values are at solution point\n", + " \"fimp_14\": {\n", + " \"type\": \"float\",\n", + " # TODO\n", + " \"min\": 1.0e-6,\n", + " \"max\": 1.0e-4,\n", + " \"default\": 5.0e-6,\n", + " }, # ok\n", + " \"psepbqarmax\": {\"type\": \"float\", \"min\": 8.7, \"max\": 10.5, \"default\": 10.0}, # ok\n", + " \"triang\": {\"type\": \"float\", \"min\": 0.4, \"max\": 0.6, \"default\": 0.5}, # ok\n", + "}\n", + "\n", + "# QoIs\n", + "# Worst violated ineq constraint\n", + "qois = [\n", + " \"w\",\n", + "]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, define a custom decoder to handle Process's mfile output." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Create encoder and decoder\n", + "encoder = uq.encoders.GenericEncoder(\n", + " template_fname=\"lt_ineqs_before_conv_crit_mod.template\", target_filename=\"IN.DAT\"\n", + ")\n", + "\n", + "decoder = MfileDecoder(target_filename=\"MFILE.DAT\", output_columns=qois)\n", + "\n", + "cmd = \"process -i IN.DAT\"\n", + "actions = uq.actions.local_execute(encoder, cmd, decoder)\n", + "\n", + "# Add the app\n", + "campaign.add_app(name=\"feasibility\", params=params, actions=actions)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 0%| | 0/150 [00:000`) (=0;0 if `iblnkith=0`) +blnkoth = 1.0 * outboard blanket thickness (m); calculated if `blktmodel>0` +bore = 1.9854 * central solenoid inboard radius (m) (`iteration variable 29`) +ddwex = 0.15 * cryostat thickness (m) +d_vv_in = 0.3 * vacuum vessel inboard thickness (TF coil / shield) (m) +d_vv_out = 0.3 * vacuum vessel outboard thickness (TF coil / shield) (m) +d_vv_top = 0.3 * vacuum vessel topside thickness (TF coil / shield) (m) (= d_vv_bot if double-null) +d_vv_bot = 0.3 * vacuum vessel underside thickness (TF coil / shield) (m) +gapds = 0.02 * gap between inboard vacuum vessel and thermal shield (m) (`iteration variable 61`) +ohcth = 0.57587 * Central solenoid thickness (m) (`iteration variable 16`) +scrapli = 0.25 * Gap between plasma and first wall; inboard side (m) (if `iscrp=1`) +scraplo = 0.25 * Gap between plasma and first wall; outboard side (m) (if `iscrp=1`) +shldith = 0.3 * inboard shield thickness (m) (`iteration variable 93`) +shldoth = 0.800 * outboard shield thickness (m) (`iteration variable 94`) +tfcth = 1.2 * inboard TF coil thickness; (centrepost for ST) (m) +thshield_ib = 0.050 * TF-VV thermal shield thickness; inboard (m) +thshield_ob = 0.050 * TF-VV thermal shield thickness; outboard (m) +thshield_vb = 0.050 * TF-VV thermal shield thickness; vertical build (m) +vvblgap = 0.02 * gap between vacuum vessel and blanket (m) + +*---------------Buildings Variables----------------* + + +*-----------------Ccfe Hcpb Module-----------------* + + +*---------------Const And Precisions---------------* + + +*--------------------Constants---------------------* + + +*---------------Constraint Variables---------------* + +bmxlim = 14.0 * maximum peak toroidal field (T) (`constraint equation 25`) +fbetatry = 0.5087 * f-value for beta limit (`constraint equation 24`; `iteration variable 36`) +fdene = 1.2 * f-value for density limit (`constraint equation 5`; `iteration variable 9`) +ffuspow = 0.54006 * f-value for maximum fusion power (`constraint equation 9`, `iteration variable 26`) +fiooic = 0.71737 * f-value for TF coil operating current / critical current ratio +fjohc = 0.55541 * f-value for central solenoid current at end-of-flattop +fjohc0 = 0.5419 * f-value for central solenoid current at beginning of pulse +fjprot = 0.99639 * f-value for TF coil winding pack current density +flhthresh = 1.6735 * f-value for L-H power threshold (`constraint equation 15`, `iteration variable 103`) +foh_stress = 0.90092 * f-value for Tresca yield criterion in Central Solenoid +fpeakb = 0.86988 * f-value for maximum toroidal field (`constraint equation 25`, `iteration variable 35`) +fpinj = 0.40071 * f-value for injection power (`constraint equation 30`, `iteration variable 46`) +fpnetel = 1.0 * f-value for net electric power (`constraint equation 16`, `iteration variable 25`) +fpsepbqar = 1.0 * f-value for maximum Psep*Bt/qAR limit (`constraint equation 68`, `iteration variable 117`) +fstrcase = 0.9967 * f-value for maximum TF coil case Tresca yield criterion +fstrcond = 0.85185 * f-value for maxiumum TF coil conduit Tresca yield criterion +fmaxvvstress = 0.42966 * f-value for maximum permitted stress of the VV +ftburn = 0.9994 * f-value for minimum burn time (`constraint equation 13`, `iteration variable 21`) +ftmargoh = 0.99653 * f-value for central solenoid temperature margin +ftmargtf = 0.99673 * f-value for TF coil temperature margin (`constraint equation 36`, `iteration variable 54`) +fvdump = 0.95837 * f-value for dump voltage (`constraint equation 34`; `iteration variable 51`) +fwalld = 0.50758 * f-value for maximum wall load (`constraint equation 8`; `iteration variable 14`) +pnetelin = 400.0 * required net electric power (MW) (`constraint equation 16`) +powfmax = 3000 * maximum fusion power (MW) (`constraint equation 9`) +psepbqarmax = 10.0 * maximum ratio of Psep*Bt/qAR (MWT/m) (`constraint equation 68`) +tbrnmn = 7200.0 * minimum burn time (s) (KE - no longer itv;; see issue #706) +walalw = 2.0 * allowable neutron wall-load (MW/m2) (`constraint equation 8`) +taulimit = 5.0 * Lower limit on taup/taueff the ratio of alpha particle to energy confinement +ftaulimit = 0.7193 * f-value for lower limit on taup/taueff the ratio of alpha particle to energy + +*-------------------Constraints--------------------* + + +*------------------Cost Variables------------------* + +cfactr = 0.80 * Total plant availability fraction; input if `iavail=0` +cost_model = 0 * Switch for cost model; +iavail = 0 * Switch for plant availability model; +output_costs = 1 * Switch for costs output; + +*----------------------Costs-----------------------* + + +*-------------Current Drive Variables--------------* + +bscfmax = 0.95 * maximum fraction of plasma current from bootstrap; if `bscfmax < 0`; +etaech = 0.5 * ECH wall plug to injector efficiency +gamma_ecrh = 0.30 * User input ECRH gamma (1;0e20 A/(W m^2)) +iefrf = 10 * Switch for current drive efficiency model; +pheat = 75.0 * heating power not used for current drive (MW) (`iteration variable 11`) +pinjalw = 200.0 * maximum allowable value for injected power (MW) (`constraint equation 30`) + +*-------------------Dcll Module--------------------* + + +*------------Define Iteration Variables------------* + + +*----------------Divertor Variables----------------* + +divfix = 0.62 * divertor structure vertical thickness (m) + +*------------------Error Handling------------------* + + +*-------------------Final Module-------------------* + + +*-------------------Fson Library-------------------* + + +*-------------------Fson Path M--------------------* + + +*------------------Fson String M-------------------* + + +*-------------------Fson Value M-------------------* + + +*----------------Function Evaluator----------------* + + +*--------------------Fw Module---------------------* + + +*-------------------Fwbs Module--------------------* + + +*------------------Fwbs Variables------------------* + +inuclear = 1 * switch for nuclear heating in the coils; +qnuc = 1.3e4 * nuclear heating in the coils (W) (`inuclear=1`) +primary_pumping = 3 * Switch for pumping power for primary coolant (mechanical power only and peak first wall +secondary_cycle = 2 * Switch for power conversion cycle; +vfshld = 0.60 * coolant void fraction in shield +etaiso = 0.9 * isentropic efficiency of FW and blanket coolant pumps +etahtp = 0.87 * electrical efficiency of primary coolant pumps + +*-----------------Global Variables-----------------* + +runtitle = generic large tokamak * short descriptive title for the run + +*-------------Heat Transport Variables-------------* + +etath = 0.4 * thermal to electric conversion efficiency if `secondary_cycle=2`; otherwise calculated; +ipowerflow = 0 * switch for power flow model; +iprimshld = 1 * Switch for shield thermal power destiny; + +*--------------------Ife Module--------------------* + + +*------------------Ife Variables-------------------* + + +*------------Impurity Radiation Module-------------* + +coreradius = 0.75 * coreradius /0;6/ ; normalised radius defining the 'core' region +coreradiationfraction = 0.6 * coreradiationfraction /1;0/ ; fraction of radiation from 'core' region that is subtracted from the loss power +fimp(1) = 0.9 +fimp(2) = 0.1 +fimp(3) = 0.0 +fimp(4) = 0.0 +fimp(5) = 0.0 +fimp(6) = 0.0 +fimp(7) = 0.0 +fimp(8) = 0.0 +fimp(9) = 0.0 +fimp(10) = 0.0 +fimp(11) = 0.0 +fimp(12) = 0.0 +fimp(13) = 0.00038 +fimp(14) = 5e-06 + +*-------------------Init Module--------------------* + + +*-------------------Main Module--------------------* + + +*------------------Maths Library-------------------* + + +*--------------Neoclassics Constants---------------* + + +*----------------Neoclassics Module----------------* + + +*---------------------Numerics---------------------* + +minmax = 1 * +epsvmc = 1e-7 * epsvmc /1;0e-6/ ; error tolerance for VMCON + +*----------------Pf Power Variables----------------* + + +*------------------Pfcoil Module-------------------* + + +*-----------------Pfcoil Variables-----------------* + +alstroh = 7.5d8 * allowable hoop stress in Central Solenoid structural material (Pa) +coheof = 20264000.0 * Central solenoid overall current density at end of flat-top (A/m2) (`iteration variable 37`) (`sweep variable 62`) +cptdin = 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4 * peak current per turn input for PF coil i (A) +fcohbop = 0.9438 * ratio of central solenoid overall current density at beginning of pulse / end of flat-top +fcuohsu = 0.70 * copper fraction of strand in central solenoid +ipfloc = 2,2,3,3 * Switch for location of PF coil group i; +isumatoh = 1 * switch for superconductor material in central solenoid; +isumatpf = 3 * switch for superconductor material in PF coils; +ncls = 1,1,2,2 * number of PF coils in group j +ngrp = 4 * number of groups of PF coils; Symmetric coil pairs should all be in the same group +ohhghf = 0.9 * Central solenoid height / TF coil internal height +oh_steel_frac = 0.51868 * central solenoid steel fraction (`iteration variable 122`) +rjconpf = 1.1d7, 1.1d7, 6.d6, 6.d6, 8.d6, 8.0d6, 8.0d6, 8.0d6 * average winding pack current density of PF coil i (A/m2) at time of peak +rpf2 = -1.825 * offset (m) of radial position of `ipfloc=2` PF coils from being at +sigpfcf = 0.666 * fraction of JxB hoop force supported by steel case for superconducting PF coils (`ipfres=0`) +zref(1) = 3.6 +zref(2) = 1.2 +zref(3) = 1.0 +zref(4) = 2.8 +zref(5) = 1.0 +zref(6) = 1.0 +zref(7) = 1.0 +zref(8) = 1.0 +zref(9) = 1.0 +zref(10) = 1.0 + +*-------------Physics Functions Module-------------* + + +*------------------Physics Module------------------* + + +*----------------Physics Variables-----------------* + +alphan = 1.00 * density profile index +alphat = 1.45 * temperature profile index +aspect = 3.0 * aspect ratio (`iteration variable 1`) +beta = 0.033648 * total plasma beta (`iteration variable 5`) (calculated if stellarator) +bt = 5.294 * toroidal field on axis (T) (`iteration variable 2`) +dene = 8.0667e+19 * electron density (/m3) (`iteration variable 6`) +dnbeta = 3.0 * Troyon-like coefficient for beta scaling calculated +fgwsep = 0.5 * fraction of Greenwald density to set as separatrix density; If `<0`; separatrix +fkzohm = 1.02 * Zohm elongation scaling adjustment factor (`ishape=2; 3`) +fne0 = 0.59638 * f-value for the constraint ne(0) > ne(ped) (`constraint equation 81`) +fvsbrnni = 0.43358 * fraction of the plasma current produced by non-inductive means (`iteration variable 44`) +gamma = 0.3 * Ejima coefficient for resistive startup V-s formula +hfact = 1.1886 * H factor on energy confinement times; radiation corrected (`iteration variable 10`); +ibss = 4 * switch for bootstrap current scaling +iculbl = 1 * switch for beta limit scaling (`constraint equation 24`) +icurr = 4 * switch for plasma current scaling to use +idensl = 7 * switch for density limit to enforce (`constraint equation 5`) +ifalphap = 1 * switch for fast alpha pressure calculation +iinvqd = 1 * switch for inverse quadrature in L-mode scaling laws 5 and 9; +ipedestal = 1 * switch for pedestal profiles; +neped = 0.5e20 * electron density of pedestal [m-3] (`ipedestal==1) +nesep = 0.2e20 * electron density at separatrix [m-3] (`ipedestal==1) +plasma_res_factor = 0.7 * plasma resistivity pre-factor +rhopedn = 0.94 * r/a of density pedestal (`ipedestal==1`) +rhopedt = 0.94 * r/a of temperature pedestal (`ipedestal==1`) +tbeta = 2.0 * temperature profile index beta (`ipedestal==1) +teped = 5.5 * electron temperature of pedestal (keV) (`ipedestal==1; ieped=0; calculated for ieped=1`) +tesep = 0.1 * electron temperature at separatrix (keV) (`ipedestal==1`) calculated if reinke +iprofile = 1 * switch for current profile consistency; +isc = 34 * switch for energy confinement time scaling law (see description in `tauscl`) +ishape = 0 * switch for plasma cross-sectional shape calculation; +kappa = 1.85 * plasma separatrix elongation (calculated if `ishape = 1-5; 7 or 9-10`) +q = 3.5961 * safety factor 'near' plasma edge (`iteration variable 18`) equal to q95 +q0 = 1.0 * safety factor on axis +ralpne = 0.083954 * thermal alpha density/electron density (`iteration variable 109`) +rmajor = 8.0 * plasma major radius (m) (`iteration variable 3`) +i_single_null = 1 * switch for single null / double null plasma; +ssync = 0.6 * synchrotron wall reflectivity factor +te = 12.489 * volume averaged electron temperature (keV) (`iteration variable 4`) +triang = 0.5 * plasma separatrix triangularity (calculated if `ishape = 1; 3-5 or 7`) + +*----------------------Power-----------------------* + + +*------------Primary Pumping Variables-------------* + + +*------------------Process Input-------------------* + + +*------------------Process Output------------------* + + +*-----------------Profiles Module------------------* + + +*-----------------Pulse Variables------------------* + +lpulse = 1 * Switch for reactor model; + +*-----------------Rebco Variables------------------* + + +*------------------Reinke Module-------------------* + + +*-----------------Reinke Variables-----------------* + + +*---------------Resistive Materials----------------* + + +*-------------------Scan Module--------------------* + + +*-----------------Sctfcoil Module------------------* + + +*----------------Startup Variables-----------------* + + +*------------Stellarator Configuration-------------* + + +*----------------Stellarator Module----------------* + + +*--------------Stellarator Variables---------------* + + +*---------------Structure Variables----------------* + + +*-----------------Tfcoil Variables-----------------* + +sig_tf_case_max = 7.5e8 * Allowable maximum shear stress (Tresca criterion) in TF coil case (Pa) +sig_tf_wp_max = 7.5e8 * Allowable maximum shear stress (Tresca criterion) in TF coil conduit (Pa) +casthi = 0.06 * inboard TF coil case plasma side thickness (m) (calculated for stellarators) +casths = 0.05 * inboard TF coil sidewall case thickness (m) (calculated for stellarators) +cpttf = 89795.0 * TF coil current per turn (A); (calculated for stellarators) (calculated for +dhecoil = 0.01 * diameter of central helium channel in TF winding (m) +fcutfsu = 0.84212 * copper fraction of cable conductor (TF coils) +i_tf_sc_mat = 1 * Switch for superconductor material in TF coils; +ripmax = 0.6 * aximum allowable toroidal field ripple amplitude at plasma edge (%) +tdmptf = 18.429 * fast discharge time for TF coil in event of quench (s) (`iteration variable 56`) +n_tf = 16 * Number of TF coils (default = 50 for stellarators); Number of TF coils outer legs for ST +tftmp = 4.75 * peak helium coolant temperature in TF coils and PF coils (K) +thkcas = 0.28216 * inboard TF coil case outer (non-plasma side) thickness (m) (`iteration variable 57`) +dr_tf_wp = 0.50416 * radial thickness of winding pack (m) (`iteration variable 140`) (issue #514) +thwcndut = 0.0080099 * TF coil conduit case thickness (m) (`iteration variable 58`) +tinstf = 0.008 * Thickness of the ground insulation layer surrounding (m) +tmargmin_cs = 1.5 * minimum allowable temperature margin ; CS (K) +tmargmin = 1.5 * minimum allowable temperature margin ; TFC AND CS (K) +vdalw = 9.5837 * max voltage across TF coil during quench (kV) (`iteration variable 52`) +vftf = 0.3 * coolant fraction of TFC 'cable' (`i_tf_sup=1`); or of TFC leg (`i_tf_ssup=0`) + +*-----------------Times Variables------------------* + +pulsetimings = 0 * Switch for pulse timings (if lpulse=1); +tdwell = 1800.0 * time between pulses in a pulsed reactor (s) (`iteration variable 17`) +tramp = 500.0 * initial PF coil charge time (s); if pulsed; = tohs + +*--------------------Utilities---------------------* + + +*-----------------Vacuum Variables-----------------* + + +*--------------Water Usage Variables---------------* + +****************************** +* Modifications for reliability analysis: overwrites any previous values +****************************** +* Once through only +ioptimz = -2 * no optimisation +neqns = 3 * distinguish between equality and inequality constraints \ No newline at end of file diff --git a/ra/metrics/rel_threshold/large_tokamak_sol_MFILE.DAT b/ra/metrics/rel_threshold/large_tokamak_sol_MFILE.DAT new file mode 100644 index 0000000..21d2f4a --- /dev/null +++ b/ra/metrics/rel_threshold/large_tokamak_sol_MFILE.DAT @@ -0,0 +1,1527 @@ + # PROCESS # + # Power Reactor Optimisation Code # + # PROCESS # + # Power Reactor Optimisation Code # + PROCESS_version_number__________________________________________________ (procver)_____________________ "3.0.2 R" + Date_of_run_____________________________________________________________ (date)________________________ "29/02/2024" + Time_of_run_____________________________________________________________ (time)________________________ "09:46" + User____________________________________________________________________ (username)____________________ "jon" + PROCESS_run_title_______________________________________________________ (runtitle)____________________ "generic large tokamak + PROCESS_tag_number______________________________________________________ (tagno)_______________________ "v3.0.2-32-g2958d5e" + PROCESS_git_branch_name_________________________________________________ (branch_name)_________________ "main" + PROCESS_last_commit_message_____________________________________________ (commsg)______________________ "Add tests for parsing real inputs in IN.DAT" + Input_filename__________________________________________________________ (fileprefix)__________________ "/home/jon/code/easyVVUQ-process/ra/metrics/rel_threshold/large_tokamak_sol_IN.DAT " + Optimisation_switch_____________________________________________________ (ioptimz)_____________________ -2 + Figure_of_merit_switch__________________________________________________ (minmax)______________________ 1 + # Final UNFEASIBLE Point # + # Numerics # + Normalised_objective_function___________________________________________ (norm_objf)___________________ 1.6000E+00 + Beta_consistency__________________normalised_residue____________________ (eq_con001)___________________ 7.8159E-03 + Global_power_balance_consistency__normalised_residue____________________ (eq_con002)___________________ -1.5544E-02 + Radial_build_consistency__________normalised_residue____________________ (eq_con011)___________________ -2.3989E-06 + Density_upper_limit_____________________________________________________ (ineq_con005)_________________ 4.3293E-06 + Neutron_wall_load_upper_limit___________________________________________ (ineq_con008)_________________ -2.2872E-02 + Fusion_power_upper_limit________________________________________________ (ineq_con009)_________________ -2.2865E-02 + Burn_time_lower_limit___________________________________________________ (ineq_con013)_________________ 2.1526E-01 + L-H_power_threshold_limit_______________________________________________ (ineq_con015)_________________ 2.6835E-01 + Injection_power_upper_limit_____________________________________________ (ineq_con030)_________________ 3.9078E-02 + Net_electric_power_lower_limit__________________________________________ (ineq_con016)_________________ -8.1371E-02 + Beta_upper_limit________________________________________________________ (ineq_con024)_________________ 4.0887E-03 + Peak_toroidal_field_upper_limit_________________________________________ (ineq_con025)_________________ -1.8032E-07 + CS_coil_EOF_current_density_limit_______________________________________ (ineq_con026)_________________ 1.3632E-04 + CS_coil_BOP_current_density_limit_______________________________________ (ineq_con027)_________________ 1.2698E-04 + I_op_/_I_critical_(TF_coil)_____________________________________________ (ineq_con033)_________________ -3.1263E-05 + Dump_voltage_upper_limit________________________________________________ (ineq_con034)_________________ -1.7223E-04 + J_winding_pack/J_protection_limit_______________________________________ (ineq_con035)_________________ -1.5447E-05 + TF_coil_temp._margin_lower_limit________________________________________ (ineq_con036)_________________ -7.4495E-05 + CS_temperature_margin_lower_limit_______________________________________ (ineq_con060)_________________ 2.2210E-04 + taup/taueff_____________________________________________________________ (ineq_con062)_________________ 3.0746E-02 + Dump_time_set_by_VV_stress______________________________________________ (ineq_con065)_________________ -1.7246E-05 + CS_Tresca_yield_criterion_______________________________________________ (ineq_con072)_________________ 5.6591E-05 + ne0_>_neped_____________________________________________________________ (ineq_con081)_________________ -5.6851E-06 + Upper_Lim._on_Psep_*_Bt_/_q_A_R_________________________________________ (ineq_con068)_________________ -2.7634E-01 + TF_coil_case_stress_upper_limit_________________________________________ (ineq_con031)_________________ 4.6020E-06 + TF_coil_conduit_stress_upper_lim________________________________________ (ineq_con032)_________________ 1.0348E-06 + # Power Reactor Costs (1990 US$) # + First_wall_/_blanket_life_(years)_______________________________________ (fwbllife)____________________ 6.0158E+00 + Divertor_life_(years)___________________________________________________ (divlife.)____________________ 1.5955E+00 + Cost_of_electricity_(m$/kWh)____________________________________________ (coe)_________________________ 1.2636E+02 + # Detailed Costings (1990 US$) # + Acc.22_multiplier_for_Nth_of_a_kind_____________________________________ (fkind)_______________________ 1.0000E+00 + Level_of_Safety_Assurance_______________________________________________ (lsa)_________________________ 4 + # Structures and Site Facilities # + Site_improvements,_facilities,_land_(M$)________________________________ (c211)________________________ 3.5200E+01 + Reactor_building_cost_(M$)______________________________________________ (c212)________________________ 4.5238E+02 + Turbine_building_cost_(M$)______________________________________________ (c213)________________________ 3.8000E+01 + Reactor_maintenance_building_cost_(M$)__________________________________ (c2141)_______________________ 1.0307E+02 + Warm_shop_cost_(M$)_____________________________________________________ (c2142)_______________________ 5.7641E+01 + Tritium_building_cost_(M$)______________________________________________ (c215)________________________ 1.4800E+01 + Electrical_equipment_building_cost_(M$)_________________________________ (c216)________________________ 1.9736E+01 + Additional_buildings_cost_(M$)__________________________________________ (c2171)_______________________ 1.8000E+01 + Control_room_buildings_cost_(M$)________________________________________ (c2172)_______________________ 2.1000E+01 + Shop_and_warehouses_cost_(M$)___________________________________________ (c2173)_______________________ 1.1500E+01 + Cryogenic_building_cost_(M$)____________________________________________ (c2174)_______________________ 1.1043E+01 + Total_account_21_cost_(M$)______________________________________________ (c21)_________________________ 7.8237E+02 + # Reactor Systems # + First_wall_cost_(M$)____________________________________________________ (c2211)_______________________ 1.9130E+02 + Blanket_beryllium_cost_(M$)_____________________________________________ (c22121)______________________ 2.6109E+02 + Blanket_breeder_material_cost_(M$)______________________________________ (c22122)______________________ 6.3985E+02 + Blanket_stainless_steel_cost_(M$)_______________________________________ (c22123)______________________ 8.0726E+01 + Blanket_vanadium_cost_(M$)______________________________________________ (c22124)______________________ 0.0000E+00 + Blanket_total_cost_(M$)_________________________________________________ (c2212)_______________________ 9.8166E+02 + Bulk_shield_cost_(M$)___________________________________________________ (c22131)______________________ 7.8394E+01 + Penetration_shielding_cost_(M$)_________________________________________ (c22132)______________________ 7.8394E+01 + Total_shield_cost_(M$)__________________________________________________ (c2213)_______________________ 1.5679E+02 + Total_support_structure_cost_(M$)_______________________________________ (c2214)_______________________ 4.0933E+01 + Divertor_cost_(M$)______________________________________________________ (c2215)_______________________ 4.1660E+01 + Total_account_221_cost_(M$)_____________________________________________ (c221)________________________ 1.4123E+03 + # Magnets # + TF_coil_conductor_cost_(M$)_____________________________________________ (c22211)______________________ 1.3229E+02 + TF_coil_winding_cost_(M$)_______________________________________________ (c22212)______________________ 5.4263E+01 + TF_coil_case_cost_(M$)__________________________________________________ (c22213)______________________ 4.4365E+02 + TF_intercoil_structure_cost_(M$)________________________________________ (c22214)______________________ 1.5066E+02 + TF_coil_gravity_support_structure_(M$)__________________________________ (c22215)______________________ 4.4658E+01 + TF_magnet_assemblies_cost_(M$)__________________________________________ (c2221)_______________________ 8.2552E+02 + PF_coil_conductor_cost_(M$)_____________________________________________ (c22221)______________________ 4.6405E+02 + PF_coil_winding_cost_(M$)_______________________________________________ (c22222)______________________ 7.6757E+01 + PF_coil_case_cost_(M$)__________________________________________________ (c22223)______________________ 9.4840E+01 + PF_coil_support_structure_cost_(M$)_____________________________________ (c22224)______________________ 8.0236E+00 + PF_magnet_assemblies_cost_(M$)__________________________________________ (c2222)_______________________ 6.4367E+02 + Vacuum_vessel_assembly_cost_(M$)________________________________________ (c2223)_______________________ 2.5404E+02 + Total_account_222_cost_(M$)_____________________________________________ (c222)________________________ 1.7232E+03 + # Power Injection # + ECH_system_cost_(M$)____________________________________________________ (c2231)_______________________ 2.3138E+02 + Lower_hybrid_system_cost_(M$)___________________________________________ (c2232)_______________________ 0.0000E+00 + Neutral_beam_system_cost_(M$)___________________________________________ (c2233)_______________________ 0.0000E+00 + Total_account_223_cost_(M$)_____________________________________________ (c223)________________________ 2.3138E+02 + # Vacuum Systems # + High_vacuum_pumps_cost_(M$)_____________________________________________ (c2241)_______________________ 1.2480E+01 + Backing_pumps_cost_(M$)_________________________________________________ (c2242)_______________________ 4.6800E+00 + Vacuum_duct_cost_(M$)___________________________________________________ (c2243)_______________________ 2.6123E+00 + Valves_cost_(M$)________________________________________________________ (c2244)_______________________ 5.9325E+00 + Duct_shielding_cost_(M$)________________________________________________ (c2245)_______________________ 0.0000E+00 + Instrumentation_cost_(M$)_______________________________________________ (c2246)_______________________ 1.3000E+00 + Total_account_224_cost_(M$)_____________________________________________ (c224)________________________ 2.7005E+01 + # Power Conditioning # + TF_coil_power_supplies_cost_(M$)________________________________________ (c22511)______________________ 4.0144E+00 + TF_coil_breakers_cost_(M$)______________________________________________ (c22512)______________________ 3.4127E+01 + TF_coil_dump_resistors_cost_(M$)________________________________________ (c22513)______________________ 2.1323E+01 + TF_coil_instrumentation_and_control_(M$)________________________________ (c22514)______________________ 4.8000E+00 + TF_coil_bussing_cost_(M$)_______________________________________________ (c22515)______________________ 3.5267E+01 + Total,_TF_coil_power_costs_(M$)_________________________________________ (c2251)_______________________ 9.9531E+01 + PF_coil_power_supplies_cost_(M$)________________________________________ (c22521)______________________ 2.9610E+00 + PF_coil_instrumentation_and_control_(M$)________________________________ (c22522)______________________ 3.6000E+00 + PF_coil_bussing_cost_(M$)_______________________________________________ (c22523)______________________ 1.1995E+01 + PF_coil_burn_power_supplies_cost_(M$)___________________________________ (c22524)______________________ 1.2679E+00 + PF_coil_breakers_cost_(M$)______________________________________________ (c22525)______________________ 1.4709E+01 + PF_coil_dump_resistors_cost_(M$)________________________________________ (c22526)______________________ 4.3203E+00 + PF_coil_ac_breakers_cost_(M$)___________________________________________ (c22527)______________________ 9.0000E-01 + Total,_PF_coil_power_costs_(M$)_________________________________________ (c2252)_______________________ 3.9754E+01 + Total,_energy_storage_cost_(M$)_________________________________________ (c2253)_______________________ 1.5492E+01 + Total_account_225_cost_(M$)_____________________________________________ (c225)________________________ 1.5478E+02 + # Heat Transport System # + Pumps_and_piping_system_cost_(M$)_______________________________________ (cpp)_________________________ 3.7395E+01 + Primary_heat_exchanger_cost_(M$)________________________________________ (chx)_________________________ 7.2626E+01 + Total,_reactor_cooling_system_cost_(M$)_________________________________ (c2261)_______________________ 1.1002E+02 + Pumps,_piping_cost_(M$)_________________________________________________ (cppa)________________________ 3.3871E+01 + Total,_auxiliary_cooling_system_cost_(M$)_______________________________ (c2262)_______________________ 3.3871E+01 + Total,_cryogenic_system_cost_(M$)_______________________________________ (c2263)_______________________ 3.2064E+02 + Total_account_226_cost_(M$)_____________________________________________ (c226)________________________ 4.6453E+02 + # Fuel Handling System # + Fuelling_system_cost_(M$)_______________________________________________ (c2271)_______________________ 2.2300E+01 + Fuel_processing_and_purification_cost_(M$)______________________________ (c2272)_______________________ 1.0354E+02 + Atmospheric_recovery_systems_cost_(M$)__________________________________ (c2273)_______________________ 5.8088E+01 + Nuclear_building_ventilation_cost_(M$)__________________________________ (c2274)_______________________ 6.9201E+01 + Total_account_227_cost_(M$)_____________________________________________ (c227)________________________ 2.5313E+02 + # Instrumentation and Control # + Instrumentation_and_control_cost_(M$)___________________________________ (c228)________________________ 1.5000E+02 + # Maintenance Equipment # + Maintenance_equipment_cost_(M$)_________________________________________ (c229)________________________ 1.2500E+02 + # Total Account 22 Cost # + Total_account_22_cost_(M$)______________________________________________ (c22)_________________________ 4.5414E+03 + # Turbine Plant Equipment # + Turbine_plant_equipment_cost_(M$)_______________________________________ (c23)_________________________ 1.7886E+02 + # Electric Plant Equipment # + Switchyard_equipment_cost_(M$)__________________________________________ (c241)________________________ 1.8400E+01 + Transformers_cost_(M$)__________________________________________________ (c242)________________________ 8.6103E+00 + Low_voltage_equipment_cost_(M$)_________________________________________ (c243)________________________ 6.9983E+00 + Diesel_backup_equipment_cost_(M$)_______________________________________ (c244)________________________ 6.8000E+00 + Auxiliary_facilities_cost_(M$)__________________________________________ (c245)________________________ 1.5000E+00 + Total_account_24_cost_(M$)______________________________________________ (c24)_________________________ 4.2309E+01 + # Miscellaneous Plant Equipment # + Miscellaneous_plant_equipment_cost_(M$)_________________________________ (c25)_________________________ 2.5000E+01 + # Heat Rejection System # + Heat_rejection_system_cost_(M$)_________________________________________ (c26)_________________________ 5.0808E+01 + # Plant Direct Cost # + Plant_direct_cost_(M$)__________________________________________________ (cdirt)_______________________ 5.6208E+03 + # Reactor Core Cost # + Reactor_core_cost_(M$)__________________________________________________ (crctcore)____________________ 3.3670E+03 + # Indirect Cost # + Indirect_cost_(M$)______________________________________________________ (c9)__________________________ 1.8745E+03 + # Total Contingency # + Total_contingency_(M$)__________________________________________________ (ccont)_______________________ 1.4616E+03 + # Constructed Cost # + Constructed_cost_(M$)___________________________________________________ (concost)_____________________ 8.9569E+03 + # Interest during Construction # + Interest_during_construction_(M$)_______________________________________ (moneyint)____________________ 1.4779E+03 + # Total Capital Investment # + Total_capital_investment_(M$)___________________________________________ (capcost)_____________________ 1.0435E+04 + # Plant Availability # + Allowable_blanket_neutron_fluence_(MW-yr/m2)____________________________ (abktflnc)____________________ 5.0000E+00 + Allowable_divertor_heat_fluence_(MW-yr/m2)______________________________ (adivflnc)____________________ 7.0000E+00 + First_wall_/_blanket_lifetime_(years)___________________________________ (bktlife)_____________________ 6.0158E+00 OP + Divertor_lifetime_(years)_______________________________________________ (divlife)_____________________ 1.5955E+00 OP + Heating/CD_system_lifetime_(years)______________________________________ (cdrlife)_____________________ 6.0158E+00 OP + Total_plant_lifetime_(years)____________________________________________ (tlife)_______________________ 3.0000E+01 + Total_plant_availability_fraction_______________________________________ (cfactr)______________________ 8.0000E-01 + Number_of_fusion_cycles_to_reach_allowable_fw/blanket_DPA_______________ (bktcycles)___________________ 5.7473E+04 + # Plasma # + Tokamak_aspect_ratio_=_Conventional,_itart_=_0__________________________ (itart)_______________________ 0.0000E+00 + Major_radius_(m)________________________________________________________ (rmajor)______________________ 8.0000E+00 ITV + Minor_radius_(m)________________________________________________________ (rminor)______________________ 2.6667E+00 + Aspect_ratio____________________________________________________________ (aspect)______________________ 3.0000E+00 + Elongation,_X-point_(input_value_used)__________________________________ (kappa)_______________________ 1.8500E+00 + Elongation,_95%_surface_(calculated_from_kappa)_________________________ (kappa95)_____________________ 1.6518E+00 + Elongation,_area_ratio_calc.____________________________________________ (kappaa)______________________ 1.7188E+00 + Triangularity,_X-point_(input_value_used)_______________________________ (triang)______________________ 5.0000E-01 + Triangularity,_95%_surface_(calculated_from_triang)_____________________ (triang95)____________________ 3.3333E-01 + Plasma_poloidal_perimeter_(m)___________________________________________ (pperim)______________________ 2.4081E+01 + Plasma_cross-sectional_area_(m2)________________________________________ (xarea)_______________________ 3.8398E+01 + Plasma_surface_area_(m2)________________________________________________ (sarea)_______________________ 1.1738E+03 OP + Plasma_volume_(m3)______________________________________________________ (vol)_________________________ 1.8882E+03 OP + Plasma_current_scaling_law_used_________________________________________ (icurr)_______________________ 4 + Plasma_current_(MA)_____________________________________________________ (plascur/1D6)_________________ 1.6631E+01 + Current_density_profile_factor__________________________________________ (alphaj)______________________ 1.9805E+00 + Plasma_internal_inductance,_li__________________________________________ (rli)_________________________ 1.2275E+00 + Vertical_field_at_plasma_(T)____________________________________________ (bvert)_______________________ -7.4373E-01 + Vacuum_toroidal_field_at_R_(T)__________________________________________ (bt)__________________________ 5.2940E+00 ITV + Average_poloidal_field_(T)______________________________________________ (bp)__________________________ 8.6787E-01 + Total_field_(sqrt(bp^2_+_bt^2))_(T)_____________________________________ (btot)________________________ 5.3647E+00 + Safety_factor_on_axis___________________________________________________ (q0)__________________________ 1.0000E+00 + Safety_factor_at_95%_flux_surface_______________________________________ (q95)_________________________ 3.5961E+00 ITV + Cylindrical_safety_factor_(qcyl)________________________________________ (qstar)_______________________ 2.9805E+00 + Total_plasma_beta_______________________________________________________ (beta)________________________ 3.3648E-02 ITV + Total_poloidal_beta_____________________________________________________ (betap)_______________________ 1.2857E+00 OP + Total_toroidal_beta_____________________________________________________ ______________________________ 3.4552E-02 OP + Fast_alpha_beta_________________________________________________________ (betaft)______________________ 4.3434E-03 OP + Beam_ion_beta___________________________________________________________ (betanb)______________________ 0.0000E+00 OP + (Fast_alpha_+_beam_physics_variables.beta)/(thermal_physics_variables.be (gammaft)_____________________ 1.4821E-01 OP + Thermal_beta____________________________________________________________ ______________________________ 2.9305E-02 OP + Thermal_poloidal_beta___________________________________________________ ______________________________ 1.1197E+00 OP + Thermal_toroidal_physics_variables.beta_(=_beta-exp)____________________ ______________________________ 3.0092E-02 OP + 2nd_stability_physics_variables.beta_:_beta_p_/_(R/a)___________________ (eps*betap)___________________ 4.2856E-01 + 2nd_stability_physics_variables.beta_upper_limit________________________ (epbetmax)____________________ 1.3800E+00 + Beta_g_coefficient______________________________________________________ (dnbeta)______________________ 4.9099E+00 + Normalised_thermal_beta_________________________________________________ ______________________________ 2.4875E+00 + Normalised_total_beta___________________________________________________ ______________________________ 2.8562E+00 + Normalised_toroidal_beta________________________________________________ (normalised_toroidal_beta)____ 2.9329E+00 + Limit_on_thermal_beta___________________________________________________ (betalim)_____________________ 5.7842E-02 + Plasma_thermal_energy_(J)_______________________________________________ ______________________________ 9.5042E+08 OP + Total_plasma_internal_energy_(J)________________________________________ (total_plasma_internal_energy) 1.0913E+09 OP + Electron_temperature_(keV)______________________________________________ (te)__________________________ 1.2489E+01 ITV + Electron_temperature_on_axis_(keV)______________________________________ (te0)_________________________ 2.5758E+01 + Ion_temperature_(keV)___________________________________________________ (ti)__________________________ 1.2489E+01 + Ion_temperature_on_axis_(keV)___________________________________________ (ti0)_________________________ 2.5758E+01 + Electron_temp.,_density_weighted_(keV)__________________________________ (ten)_________________________ 1.3805E+01 + Electron_density_(/m3)__________________________________________________ (dene)________________________ 8.0667E+19 ITV + Electron_density_on_axis_(/m3)__________________________________________ (ne0)_________________________ 1.0610E+20 OP + Line-averaged_electron_density_(/m3)____________________________________ (dnla)________________________ 8.9334E+19 OP + Line-averaged_electron_density_/_Greenwald_density______________________ (dnla_gw)_____________________ 1.2000E+00 OP + Ion_density_(/m3)_______________________________________________________ (dnitot)______________________ 7.2407E+19 OP + Fuel_density_(/m3)______________________________________________________ (deni)________________________ 6.5585E+19 OP + Total_impurity_density_with_Z_>_2_(no_He)_(/m3)_________________________ (dnz)_________________________ 3.1057E+16 OP + Helium_ion_density_(thermalised_ions_only)_(/m3)________________________ (dnalp)_______________________ 6.7723E+18 OP + Proton_density_(/m3)____________________________________________________ (dnprot)______________________ 1.8963E+16 OP + Hot_beam_density_(/m3)__________________________________________________ (dnbeam)______________________ 0.0000E+00 OP + Density_limit_from_scaling_(/m3)________________________________________ (dnelimt)_____________________ 7.4446E+19 OP + Helium_ion_density_(thermalised_ions_only)_/_electron_density___________ (ralpne)______________________ 8.3954E-02 ITV + H__concentration________________________________________________________ (fimp(01))____________________ 8.1327E-01 OP + He_concentration________________________________________________________ (fimp(02))____________________ 8.3954E-02 + Be_concentration________________________________________________________ (fimp(03))____________________ 0.0000E+00 + C__concentration________________________________________________________ (fimp(04))____________________ 0.0000E+00 + N__concentration________________________________________________________ (fimp(05))____________________ 0.0000E+00 + O__concentration________________________________________________________ (fimp(06))____________________ 0.0000E+00 + Ne_concentration________________________________________________________ (fimp(07))____________________ 0.0000E+00 + Si_concentration________________________________________________________ (fimp(08))____________________ 0.0000E+00 + Ar_concentration________________________________________________________ (fimp(09))____________________ 0.0000E+00 + Fe_concentration________________________________________________________ (fimp(10))____________________ 0.0000E+00 + Ni_concentration________________________________________________________ (fimp(11))____________________ 0.0000E+00 + Kr_concentration________________________________________________________ (fimp(12))____________________ 0.0000E+00 + Xe_concentration________________________________________________________ (fimp(13))____________________ 3.8000E-04 ITV + W__concentration________________________________________________________ (fimp(14))____________________ 5.0000E-06 + Average_mass_of_all_ions_(amu)__________________________________________ (aion)________________________ 2.6954E+00 OP + Effective_charge________________________________________________________ (zeff)________________________ 2.0700E+00 + Density_profile_factor__________________________________________________ (alphan)______________________ 1.0000E+00 + Plasma_profile_model____________________________________________________ (ipedestal)___________________ 1 + Density_pedestal_r/a_location___________________________________________ (rhopedn)_____________________ 9.4000E-01 + Electron_density_pedestal_height_(/m3)__________________________________ (neped)_______________________ 6.3279E+19 OP + Electron_density_at_pedestal_/_nGW______________________________________ (fgwped_out)__________________ 8.5000E-01 + Temperature_pedestal_r/a_location_______________________________________ (rhopedt)_____________________ 9.4000E-01 + Pedestal_scaling_switch_________________________________________________ (ieped)_______________________ 0 + Electron_temp._pedestal_height_(keV)____________________________________ (teped)_______________________ 5.5000E+00 + Electron_temp._at_separatrix_(keV)______________________________________ (tesep)_______________________ 1.0000E-01 + Electron_density_at_separatrix_(/m3)____________________________________ (nesep)_______________________ 3.7223E+19 + Electron_density_at_separatrix_/_nGW____________________________________ (fgwsep_out)__________________ 5.0000E-01 + Temperature_profile_index_______________________________________________ (alphat)______________________ 1.4500E+00 + Temperature_profile_index_beta__________________________________________ (tbeta)_______________________ 2.0000E+00 + Old_ASDEX_model_________________________________________________________ (dlimit(1))___________________ 6.0674E+19 OP + Borrass_ITER_model_I____________________________________________________ (dlimit(2))___________________ 1.3020E+20 OP + Borrass_ITER_model_II___________________________________________________ (dlimit(3))___________________ 5.2397E+19 OP + JET_edge_radiation_model________________________________________________ (dlimit(4))___________________ 4.2300E+21 OP + JET_simplified_model____________________________________________________ (dlimit(5))___________________ 5.1014E+20 OP + Hugill-Murakami_Mq_model________________________________________________ (dlimit(6))___________________ 6.6609E+19 OP + Greenwald_model_________________________________________________________ (dlimit(7))___________________ 7.4446E+19 OP + Deuterium_fuel_fraction_________________________________________________ (fdeut)_______________________ 5.0000E-01 + Tritium_fuel_fraction___________________________________________________ (ftrit)_______________________ 5.0000E-01 + Total_fusion_power_(MW)_________________________________________________ (powfmw)______________________ 1.6581E+03 OP + _=____D-T_fusion_power_(MW)_____________________________________________ (pdt)_________________________ 1.6561E+03 OP + __+___D-D_fusion_power_(MW)_____________________________________________ (pdd)_________________________ 1.9950E+00 OP + __+_D-He3_fusion_power_(MW)_____________________________________________ (pdhe3)_______________________ 0.0000E+00 OP + Alpha_power:_total_(MW)_________________________________________________ (palpmw)______________________ 3.3122E+02 OP + Alpha_power:_beam-plasma_(MW)___________________________________________ (palpnb)______________________ 0.0000E+00 OP + Neutron_power_(MW)______________________________________________________ (pneutmw)_____________________ 1.3256E+03 OP + Charged_particle_power_(excluding_alphas)_(MW)__________________________ (pchargemw)___________________ 1.2956E+00 OP + Total_power_deposited_in_plasma_(MW)____________________________________ (tot_power_plasma)____________ 3.9359E+02 OP + Bremsstrahlung_radiation_power_(MW)_____________________________________ (pbrempv*vol)_________________ 5.3574E+01 OP + Line_radiation_power_(MW)_______________________________________________ (plinepv*vol)_________________ 9.9551E+01 OP + Synchrotron_radiation_power_(MW)________________________________________ (psyncpv*vol)_________________ 1.5188E+01 OP + Synchrotron_wall_reflectivity_factor____________________________________ (ssync)_______________________ 6.0000E-01 + Normalised_minor_radius_defining_'core'_________________________________ (coreradius)__________________ 7.5000E-01 + Fraction_of_core_radiation_subtracted_from_P_L__________________________ (coreradiationfraction)_______ 6.0000E-01 + Radiation_power_from_inner_zone_(MW)____________________________________ (pinnerzoneradmw)_____________ 7.1766E+01 OP + Radiation_power_from_outer_zone_(MW)____________________________________ (pouterzoneradmw)_____________ 9.6546E+01 OP + Total_radiation_power_from_inside_LCFS_(MW)_____________________________ (pradmw)______________________ 1.6831E+02 OP + LCFS_radiation_fraction_=_total_radiation_in_LCFS_/_total_power_deposite (rad_fraction_LCFS)___________ 4.2763E-01 OP + Nominal_mean_radiation_load_on_inside_surface_of_reactor_(MW/m2)________ (photon_wall)_________________ 1.3191E-01 OP + Peaking_factor_for_radiation_wall_load__________________________________ (peakfactrad)_________________ 3.3300E+00 IP + Maximum_permitted_radiation_wall_load_(MW/m^2)__________________________ (maxradwallload)______________ 1.0000E+00 IP + Peak_radiation_wall_load_(MW/m^2)_______________________________________ (peakradwallload)_____________ 4.3928E-01 OP + Fast_alpha_particle_power_incident_on_the_first_wall_(MW)_______________ (palpfwmw)____________________ 1.6561E+01 OP + Nominal_mean_neutron_load_on_inside_surface_of_reactor_(MW/m2)__________ (wallmw)______________________ 1.0389E+00 OP + Power_incident_on_the_divertor_targets_(MW)_____________________________ (ptarmw)______________________ 4.5056E+01 OP + Fraction_of_power_to_the_lower_divertor_________________________________ (ftar)________________________ 1.0000E+00 IP + Outboard_side_heat_flux_decay_length_(m)________________________________ (lambdaio)____________________ 1.5700E-03 OP + Fraction_of_power_on_the_inner_targets__________________________________ (fio)_________________________ 4.1000E-01 OP + Fraction_of_power_incident_on_the_lower_inner_target____________________ (fLI)_________________________ 4.1000E-01 OP + Fraction_of_power_incident_on_the_lower_outer_target____________________ (fLO)_________________________ 5.9000E-01 OP + Power_incident_on_the_lower_inner_target_(MW)___________________________ (pLImw)_______________________ 1.8473E+01 OP + Power_incident_on_the_lower_outer_target_(MW)___________________________ (pLOmw)_______________________ 2.6583E+01 OP + Ohmic_heating_power_(MW)________________________________________________ (pohmmw)______________________ 5.1235E-01 OP + Fraction_of_alpha_power_deposited_in_plasma_____________________________ (falpha)______________________ 9.5000E-01 + Fraction_of_alpha_power_to_electrons____________________________________ (falpe)_______________________ 7.1828E-01 + Fraction_of_alpha_power_to_ions_________________________________________ (falpi)_______________________ 2.8172E-01 + Ion_transport_(MW)______________________________________________________ (ptrimw)______________________ 1.4934E+02 OP + Electron_transport_(MW)_________________________________________________ (ptremw)______________________ 1.6637E+02 OP + Injection_power_to_ions_(MW)____________________________________________ (pinjimw)_____________________ 0.0000E+00 OP + Injection_power_to_electrons_(MW)_______________________________________ (pinjemw)_____________________ 7.7128E+01 OP + Ignited_plasma_switch_(0=not_ignited,_1=ignited)________________________ (ignite)______________________ 0 + Power_into_divertor_zone_via_charged_particles_(MW)_____________________ (pdivt)_______________________ 2.2528E+02 OP + Psep_/_R_ratio_(MW/m)___________________________________________________ (pdivt/rmajor)________________ 2.8160E+01 OP + Psep_Bt_/_qAR_ratio_(MWT/m)_____________________________________________ (pdivtbt/qar)_________________ 1.3819E+01 OP + ITER_1996_scaling:_nominal_(MW)_________________________________________ (pthrmw(1))___________________ 1.2978E+02 OP + ITER_1996_scaling:_upper_bound_(MW)_____________________________________ (pthrmw(2))___________________ 2.8603E+02 OP + ITER_1996_scaling:_lower_bound_(MW)_____________________________________ (pthrmw(3))___________________ 5.8098E+01 OP + ITER_1997_scaling_(1)_(MW)______________________________________________ (pthrmw(4))___________________ 2.1452E+02 OP + ITER_1997_scaling_(2)_(MW)______________________________________________ (pthrmw(5))___________________ 1.7206E+02 OP + Martin_2008_scaling:_nominal_(MW)_______________________________________ (pthrmw(6))___________________ 9.8492E+01 OP + Martin_2008_scaling:_95%_upper_bound_(MW)_______________________________ (pthrmw(7))___________________ 1.2910E+02 OP + Martin_2008_scaling:_95%_lower_bound_(MW)_______________________________ (pthrmw(8))___________________ 6.7885E+01 OP + Snipes_2000_scaling:_nominal_(MW)_______________________________________ (pthrmw(9))___________________ 6.8534E+01 OP + Snipes_2000_scaling:_upper_bound_(MW)___________________________________ (pthrmw(10))__________________ 1.0054E+02 OP + Snipes_2000_scaling:_lower_bound_(MW)___________________________________ (pthrmw(11))__________________ 4.6345E+01 OP + Snipes_2000_scaling_(closed_divertor):_nominal_(MW)_____________________ (pthrmw(12))__________________ 3.1352E+01 OP + Snipes_2000_scaling_(closed_divertor):_upper_bound_(MW)_________________ (pthrmw(13))__________________ 4.3624E+01 OP + Snipes_2000_scaling_(closed_divertor):_lower_bound_(MW)_________________ (pthrmw(14))__________________ 2.2375E+01 OP + Hubbard_2012_L-I_threshold_-_nominal_(MW)_______________________________ (pthrmw(15))__________________ 2.7550E+01 OP + Hubbard_2012_L-I_threshold_-_lower_bound_(MW)___________________________ (pthrmw(16))__________________ 1.4319E+01 OP + Hubbard_2012_L-I_threshold_-_upper_bound_(MW)___________________________ (pthrmw(17))__________________ 5.3006E+01 OP + Hubbard_2017_L-I_threshold______________________________________________ (pthrmw(18))__________________ 2.6202E+02 OP + Martin_2008_aspect_ratio_corrected_scaling:_nominal_(MW)________________ (pthrmw(19))__________________ 9.8492E+01 OP + Martin_2008_aspect_ratio_corrected_scaling:_95%_upper_bound_(MW)________ (pthrmw(20))__________________ 1.2910E+02 OP + Martin_2008_aspect_ratio_corrected_scaling:_95%_lower_bound_(MW)________ (pthrmw(21))__________________ 6.7885E+01 OP + L-H_threshold_power_(NOT_enforced)_(MW)_________________________________ (plhthresh)___________________ 9.8492E+01 OP + Confinement_H_factor____________________________________________________ (hfact)_______________________ 1.1886E+00 ITV + Global_thermal_energy_confinement_time_(s)______________________________ (taueff)______________________ 3.0371E+00 + Ion_energy_confinement_time_(s)_________________________________________ (tauei)_______________________ 3.0371E+00 + Electron_energy_confinement_time_(s)____________________________________ (tauee)_______________________ 3.0371E+00 + n.tau_=_Volume-average_electron_density_x_Energy_confinement_time_(s/m3) (dntau)_______________________ 2.4499E+20 OP + Triple_product__(keV_s/m3)______________________________________________ (dntau*te)____________________ 3.0597E+21 OP + Transport_loss_power_assumed_in_scaling_law_(MW)________________________ (powerht)_____________________ 3.2183E+02 OP + Switch_for_radiation_loss_term_usage_in_power_balance___________________ (iradloss)____________________ 1 + Radiation_power_subtracted_from_plasma_power_balance_(MW)_______________ ______________________________ 7.1766E+01 OP + Alpha_particle_confinement_time_(s)_____________________________________ (taup)________________________ 2.1761E+01 + Alpha_particle/energy_confinement_time_ratio____________________________ (taup/taueff)_________________ 7.1649E+00 + Lower_limit_on_taup/taueff______________________________________________ (taulimit)____________________ 5.0000E+00 + Total_energy_confinement_time_including_radiation_loss_(s)______________ (total_energy_conf_time)______ 2.7726E+00 + Normalized_plasma_pressure_beta_as_defined_by_McDonald_et_al____________ (beta_mcdonald)_______________ 3.4552E-02 OP + Normalized_ion_Larmor_radius____________________________________________ (rho_star)____________________ 1.9496E-03 OP + Normalized_collisionality_______________________________________________ (nu_star)_____________________ 3.7267E-03 OP + Volume_measure_of_elongation____________________________________________ (kappaa_IPB)__________________ 1.6815E+00 OP + Total_volt-second_requirement_(Wb)______________________________________ (vsstt)_______________________ 2.8632E+02 OP + Inductive_volt-seconds_(Wb)_____________________________________________ (vsind)_______________________ 2.3585E+02 OP + Ejima_coefficient_______________________________________________________ (gamma)_______________________ 3.0000E-01 + Start-up_resistive_(Wb)_________________________________________________ (vsres)_______________________ 5.0159E+01 OP + Flat-top_resistive_(Wb)_________________________________________________ (vsbrn)_______________________ 3.0806E-01 OP + bootstrap_current_fraction_multiplier___________________________________ (cboot)_______________________ 1.0000E+00 + Bootstrap_fraction_(ITER_1989)__________________________________________ (bscf_iter89)_________________ 3.7097E-01 + Bootstrap_fraction_(Sauter_et_al)_______________________________________ (bscf_sauter)_________________ 4.2763E-01 + Bootstrap_fraction_(Nevins_et_al)_______________________________________ (bscf_nevins)_________________ 3.5169E-01 + Bootstrap_fraction_(Wilson)_____________________________________________ (bscf_wilson)_________________ 4.3169E-01 + Diamagnetic_fraction_(Hender)___________________________________________ (diacf_hender)________________ 1.2017E-02 + Diamagnetic_fraction_(SCENE)____________________________________________ (diacf_scene)_________________ 1.1139E-02 + Pfirsch-Schlueter_fraction_(SCENE)______________________________________ (pscf_scene)__________________ -3.0283E-03 + Bootstrap_fraction_(enforced)___________________________________________ (bootipf.)____________________ 4.2763E-01 + Diamagnetic_fraction_(enforced)_________________________________________ (diaipf.)_____________________ 0.0000E+00 + Pfirsch-Schlueter_fraction_(enforced)___________________________________ (psipf.)______________________ 0.0000E+00 + Loop_voltage_during_burn_(V)____________________________________________ (vburn)_______________________ 3.0806E-02 OP + Plasma_resistance_(ohm)_________________________________________________ (rplas)_______________________ 3.2702E-09 OP + Resistive_diffusion_time_(s)____________________________________________ (res_time)____________________ 3.7222E+03 OP + Plasma_inductance_(H)___________________________________________________ (rlp)_________________________ 1.4181E-05 OP + Coefficient_for_sawtooth_effects_on_burn_V-s_requirement________________ (csawth)______________________ 1.0000E+00 + Ratio_of_He_and_pellet_particle_confinement_times_______________________ (tauratio)____________________ 1.0000E+00 + Fuelling_rate_(nucleus-pairs/s)_________________________________________ (qfuel)_______________________ 3.4531E+21 OP + Fuel_burn-up_rate_(reactions/s)_________________________________________ (rndfuel)_____________________ 5.9106E+20 OP + Burn-up_fraction________________________________________________________ (burnup)______________________ 1.7117E-01 + # Energy confinement times, and required H-factors : # + # Current Drive System # + Current_drive_efficiency_model__________________________________________ (iefrf)_______________________ 10 + Secondary_current_drive_efficiency_model________________________________ (iefrffix)____________________ 0 + Ratio_of_power_for_flat-top_to_start-up_(MW)____________________________ (startupratio)________________ 1.0000E+00 + Auxiliary_power_used_for_plasma_heating_only_(MW)_______________________ (pheat)_______________________ 7.5000E+01 + Power_injected_for_current_drive_(MW)___________________________________ (pcurrentdrivemw)_____________ 2.1280E+00 + Maximum_Allowed_Bootstrap_current_fraction______________________________ (bscfmax)_____________________ 9.5000E-01 + Fusion_gain_factor_Q____________________________________________________ (bigq)________________________ 2.1356E+01 OP + Auxiliary_current_drive_(A)_____________________________________________ (auxiliary_cd)________________ 9.8926E+04 OP + Current_drive_efficiency_(A/W)__________________________________________ (effcd)_______________________ 4.6487E-02 OP + Normalised_current_drive_efficiency,_gamma_(10^20_A/W-m2)_______________ (gamcd)_______________________ 3.0000E-01 OP + Wall_plug_to_injector_efficiency________________________________________ (etacd)_______________________ 5.0000E-01 + ECRH_plasma_heating_efficiency__________________________________________ (gamma_ecrh)__________________ 3.0000E-01 + Bootstrap_fraction______________________________________________________ (bootipf)_____________________ 4.2763E-01 + Diamagnetic_fraction____________________________________________________ (diaipf)______________________ 0.0000E+00 + Pfirsch-Schlueter_fraction______________________________________________ (psipf)_______________________ 0.0000E+00 + Auxiliary_current_drive_fraction________________________________________ (faccd)_______________________ 5.9482E-03 + Inductive_fraction______________________________________________________ (facoh)_______________________ 5.6642E-01 + Total___________________________________________________________________ (plasipf+faccd+facoh)_________ 1.0000E+00 + Fraction_of_the_plasma_current_produced_by_non-inductive_means__________ (fvsbrnni)____________________ 4.3358E-01 ITV + Electron_cyclotron_injected_power_(MW)__________________________________ (echpwr)______________________ 7.7128E+01 OP + Maximum_allowable_ECRH_power_(MW)_______________________________________ (pinjalw)_____________________ 2.0000E+02 + ECH_wall_plug_efficiency________________________________________________ (etaech)______________________ 5.0000E-01 + ECH_wall_plug_power_(MW)________________________________________________ (echwpow)_____________________ 1.5426E+02 OP + Total_V-s_capability_of_Central_Solenoid/PF_coils_(Wb)__________________ (abs(vstot))__________________ 5.7726E+02 + Required_volt-seconds_during_start-up_(Wb)______________________________ (vssoft)______________________ 2.8601E+02 + Available_volt-seconds_during_burn_(Wb)_________________________________ (vsmax)_______________________ 2.7002E+02 + # Times # + Initial_charge_time_for_CS_from_zero_current_(s)________________________ (tramp)_______________________ 5.0000E+02 + Plasma_current_ramp-up_time_(s)_________________________________________ (tohs)________________________ 1.6631E+02 + Heating_time_(s)________________________________________________________ (t_fusion_ramp)_______________ 1.0000E+01 + Burn_time_(s)___________________________________________________________ (tburn)_______________________ 8.7551E+03 OP + Reset_time_to_zero_current_for_CS_(s)___________________________________ (tqnch)_______________________ 1.6631E+02 + Time_between_pulses_(s)_________________________________________________ (tdwell)______________________ 1.8000E+03 + Total_plant_cycle_time_(s)______________________________________________ (tcycle)______________________ 2.6426E+03 OP + # Radial Build # + TF_coil_radial_placement_switch_________________________________________ (tf_in_cs)____________________ 0 + TF_coil_radial_placement_switch_________________________________________ (tf_in_cs)____________________ 0 + Machine_bore_(m)________________________________________________________ (bore)________________________ 1.9854E+00 ITV + CS_radial_thickness_(m)_________________________________________________ (ohcth)_______________________ 5.7587E-01 ITV + CS_precompression_(m)___________________________________________________ (precomp)_____________________ 6.8065E-02 + CS_precompresion_to_TF_coil_radial_gap_(m)______________________________ (gapoh)_______________________ 8.0000E-02 + TF_coil_inboard_leg_(m)_________________________________________________ (tfcth)_______________________ 9.1598E-01 ITV + TF_coil_inboard_leg_insulation_gap_(m)__________________________________ (tftsgap)_____________________ 5.0000E-02 + Thermal_shield,_inboard_(m)_____________________________________________ (thshield_ib)_________________ 5.0000E-02 + thermal_shield_to_vessel_radial_gap_(m)_________________________________ (gapds)_______________________ 2.0000E-02 + Inboard_vacuum_vessel_radial_thickness_(m)______________________________ (d_vv_in)_____________________ 3.0000E-01 + Inner_radiation_shield_radial_thickness_(m)_____________________________ (shldith)_____________________ 3.0000E-01 + Gap_(m)_________________________________________________________________ (vvblgap)_____________________ 2.0000E-02 + Inboard_blanket_radial_thickness_(m)____________________________________ (blnkith)_____________________ 7.0000E-01 + Inboard_first_wall_radial_thickness_(m)_________________________________ (fwith)_______________________ 1.8000E-02 + Inboard_scrape-off_radial_thickness_(m)_________________________________ (scrapli)_____________________ 2.5000E-01 + Outboard_scrape-off_radial_thickness_(m)________________________________ (scraplo)_____________________ 2.5000E-01 + Outboard_first_wall_radial_thickness_(m)________________________________ (fwoth)_______________________ 1.8000E-02 + Outboard_blanket_radial_thickness_(m)___________________________________ (blnkoth)_____________________ 1.0000E+00 + Outer_radiation_shield_radial_thickness_(m)_____________________________ (shldoth)_____________________ 8.0000E-01 + Outboard_vacuum_vessel_radial_thickness_(m)_____________________________ (d_vv_out)____________________ 3.0000E-01 + Vessel_to_TF_radial_gap_(m)_____________________________________________ (gapsto)______________________ 1.3720E+00 + Thermal_shield,_outboard_(m)____________________________________________ (thshield_ob)_________________ 5.0000E-02 + Gap_(m)_________________________________________________________________ (tftsgap)_____________________ 5.0000E-02 + TF_coil_outboard_leg_radial_thickness_(m)_______________________________ (tfthko)______________________ 9.1598E-01 + # Vertical Build # + Divertor_null_switch____________________________________________________ (i_single_null)_______________ 1 + Vessel_-_TF_coil_vertical_gap_(m)_______________________________________ (vgap2)_______________________ 1.6300E-01 + Topside_vacuum_vessel_radial_thickness_(m)______________________________ (d_vv_top)____________________ 3.0000E-01 + Top_radiation_shield_thickness_(m)______________________________________ (shldtth)_____________________ 6.0000E-01 + Top_blanket_vertical_thickness_(m)______________________________________ (blnktth)_____________________ 8.5000E-01 + Top_first_wall_vertical_thickness_(m)___________________________________ (fwtth)_______________________ 1.8000E-02 + Top_scrape-off_vertical_thickness_(m)___________________________________ (vgaptop)_____________________ 6.0000E-01 + Plasma_half-height_(m)__________________________________________________ (rminor*kappa)________________ 4.9333E+00 + Bottom_scrape-off_vertical_thickness_(m)________________________________ (vgap)________________________ 2.0019E+00 + Divertor_structure_vertical_thickness_(m)_______________________________ (divfix)______________________ 6.2000E-01 + Bottom_radiation_shield_thickness_(m)___________________________________ (shldlth)_____________________ 7.0000E-01 + Underside_vacuum_vessel_radial_thickness_(m)____________________________ (d_vv_bot)____________________ 3.0000E-01 + External_cryostat_thickness_(m)_________________________________________ (ddwex)_______________________ 1.5000E-01 + Ratio_of_Central_solenoid_height_to_TF_coil_internal_height_____________ (ohhghf)______________________ 9.0000E-01 + Width_of_neutral_beam_duct_where_it_passes_between_the_TF_coils_(m)_____ (beamwd)______________________ 5.8000E-01 + # Divertor build and plasma position # + Plasma_top_position,_radial_(m)_________________________________________ (ptop_radial)_________________ 6.6667E+00 + Plasma_top_position,_vertical_(m)_______________________________________ (ptop_vertical)_______________ 4.9333E+00 + Plasma_geometric_centre,_radial_(m)_____________________________________ (physics_variables.rmajor.)___ 8.0000E+00 + Plasma_geometric_centre,_vertical_(m)___________________________________ (0.0)_________________________ 0.0000E+00 + Plasma_lower_physics_variables.triangularity____________________________ (tril)________________________ 5.0000E-01 + Plasma_elongation_______________________________________________________ (physics_variables.kappa.)____ 1.8500E+00 + TF_coil_vertical_offset_(m)_____________________________________________ (tfoffset)____________________ -6.1694E-01 + Plasma_outer_arc_radius_of_curvature_(m)________________________________ (rco)_________________________ 5.0422E+00 + Plasma_inner_arc_radius_of_curvature_(m)________________________________ (rci)_________________________ 9.7933E+00 + Plasma_lower_X-pt,_radial_(m)___________________________________________ (rxpt)________________________ 6.6667E+00 + Plasma_lower_X-pt,_vertical_(m)_________________________________________ (zxpt)________________________ -4.9333E+00 + Poloidal_plane_angle_between_vertical_and_inner_leg_(rad)_______________ (thetai)______________________ 2.0820E-01 + Poloidal_plane_angle_between_vertical_and_outer_leg_(rad)_______________ (thetao)______________________ 1.0429E+00 + Poloidal_plane_angle_between_inner_leg_and_plate_(rad)__________________ (betai)_______________________ 1.0000E+00 + Poloidal_plane_angle_between_outer_leg_and_plate_(rad)__________________ (betao)_______________________ 1.0000E+00 + Inner_divertor_leg_poloidal_length_(m)__________________________________ (plsepi)______________________ 1.0000E+00 + Outer_divertor_leg_poloidal_length_(m)__________________________________ (plsepo)______________________ 1.5000E+00 + Inner_divertor_plate_length_(m)_________________________________________ (plleni)______________________ 1.0000E+00 + Outer_divertor_plate_length_(m)_________________________________________ (plleno)______________________ 1.0000E+00 + Inner_strike_point,_radial_(m)__________________________________________ (rspi)________________________ 5.6883E+00 + Inner_strike_point,_vertical_(m)________________________________________ (zspi)________________________ -5.1400E+00 + Inner_plate_top,_radial_(m)_____________________________________________ (rplti)_______________________ 5.8656E+00 + Inner_plate_top,_vertical_(m)___________________________________________ (zplti)_______________________ -4.6725E+00 + Inner_plate_bottom,_radial_(m)__________________________________________ (rplbi)_______________________ 5.5109E+00 + Inner_plate_bottom,_vertical_(m)________________________________________ (zplbi)_______________________ -5.6075E+00 + Outer_strike_point,_radial_(m)__________________________________________ (rspo)________________________ 7.4223E+00 + Outer_strike_point,_vertical_(m)________________________________________ (zspo)________________________ -6.2291E+00 + Outer_plate_top,_radial_(m)_____________________________________________ (rplto)_______________________ 7.6496E+00 + Outer_plate_top,_vertical_(m)___________________________________________ (zplto)_______________________ -5.7838E+00 + Outer_plate_bottom,_radial_(m)__________________________________________ (rplbo)_______________________ 7.1949E+00 + Outer_plate_bottom,_vertical_(m)________________________________________ (zplbo)_______________________ -6.6744E+00 + Calculated_maximum_divertor_height_(m)__________________________________ (divht)_______________________ 2.0019E+00 + # TF coils # + Allowable_maximum_shear_stress_in_TF_coil_case_(Tresca_criterion)_(Pa)__ (sig_tf_case_max)_____________ 7.5000E+08 + Allowable_maximum_shear_stress_in_TF_coil_conduit_(Tresca_criterion)_(Pa (sig_tf_wp_max)_______________ 7.5000E+08 + WP_transverse_modulus_(GPa)_____________________________________________ (eyoung_wp_trans*1.0d-9)______ 4.3534E+01 OP + WP_vertical_modulus_(GPa)_______________________________________________ (eyoung_wp_axial*1.0d-9)______ 1.1510E+02 OP + WP_transverse_Poissons_ratio____________________________________________ (poisson_wp_trans)____________ 3.0390E-01 OP + WP_vertical-transverse_Pois._rat._______________________________________ (poisson_wp_axial)____________ 3.1568E-01 OP + Radial____stress_at_maximum_shear_of_layer_1_(Pa)_______________________ (sig_tf_r_max(1))_____________ 4.8849E-08 + toroidal__stress_at_maximum_shear_of_layer_1_(Pa)_______________________ (sig_tf_t_max(1))_____________ -4.8724E+08 + Vertical__stress_at_maximum_shear_of_layer_1_(Pa)_______________________ (sig_tf_z_max(1))_____________ 2.6028E+08 + Von-Mises_stress_at_maximum_shear_of_layer_1_(Pa)_______________________ (sig_tf_vmises_max(1))________ 6.5724E+08 + Maximum_shear_stress_for_the_Tresca_yield_criterion_1_(Pa)______________ (sig_tf_tresca_max(1))________ 7.4752E+08 + Radial____stress_at_maximum_shear_of_layer_2_(Pa)_______________________ (sig_tf_r_max(2))_____________ -1.5411E+08 + toroidal__stress_at_maximum_shear_of_layer_2_(Pa)_______________________ (sig_tf_t_max(2))_____________ -3.7860E+08 + Vertical__stress_at_maximum_shear_of_layer_2_(Pa)_______________________ (sig_tf_z_max(2))_____________ 2.6028E+08 + Von-Mises_stress_at_maximum_shear_of_layer_2_(Pa)_______________________ (sig_tf_vmises_max(2))________ 5.5645E+08 + Maximum_shear_stress_for_the_Tresca_yield_criterion_2_(Pa)______________ (sig_tf_tresca_max(2))________ 6.3889E+08 + Radial____stress_at_maximum_shear_of_layer_3_(Pa)_______________________ (sig_tf_r_max(3))_____________ 6.1398E+06 + toroidal__stress_at_maximum_shear_of_layer_3_(Pa)_______________________ (sig_tf_t_max(3))_____________ -3.6313E+08 + Vertical__stress_at_maximum_shear_of_layer_3_(Pa)_______________________ (sig_tf_z_max(3))_____________ 1.4510E+08 + Von-Mises_stress_at_maximum_shear_of_layer_3_(Pa)_______________________ (sig_tf_vmises_max(3))________ 4.5345E+08 + Maximum_shear_stress_for_the_Tresca_yield_criterion_3_(Pa)______________ (sig_tf_tresca_max(3))________ 5.0824E+08 + Maximum_radial_deflection_at_midplane_(m)_______________________________ (deflect)_____________________ -6.2713E-03 OP + Vertical_strain_on_casing_______________________________________________ (casestr)_____________________ 1.2697E-03 OP + Radial_strain_on_insulator______________________________________________ (insstrain)___________________ -7.6923E-03 OP + Conductor_technology____________________________________________________ (i_tf_sup)____________________ 1 + Superconductor_material_________________________________________________ (i_tf_sc_mat)_________________ 1 + Presence_of_TF_demountable_joints_______________________________________ (itart)_______________________ 0 + TF_inboard_leg_support_strategy_________________________________________ (i_tf_bucking)________________ 1 + Number_of_TF_coils______________________________________________________ (n_tf)________________________ 16 + Inboard_leg_centre_radius_(m)___________________________________________ (r_tf_inboard_mid)____________ 3.1673E+00 OP + Outboard_leg_centre_radius_(m)__________________________________________ (r_tf_outboard_mid)___________ 1.4985E+01 OP + Total_inboard_leg_radial_thickness_(m)__________________________________ (tfcth)_______________________ 9.1598E-01 ITV + Total_outboard_leg_radial_thickness_(m)_________________________________ (tfthko)______________________ 9.1598E-01 + Outboard_leg_toroidal_thickness_(m)_____________________________________ (tftort)______________________ 1.4145E+00 OP + Maximum_inboard_edge_height_(m)_________________________________________ (hmax)________________________ 8.8182E+00 OP + Mean_coil_circumference_(including_inboard_leg_length)_(m)______________ (tfleng)______________________ 4.7937E+01 OP + Vertical_TF_shape_______________________________________________________ (i_tf_shape)__________________ 1 + TF_coil_arc_point_0_R_(m)_______________________________________________ (xarc(1))_____________________ 3.6253E+00 + TF_coil_arc_point_0_Z_(m)_______________________________________________ (yarc(1))_____________________ 4.5506E+00 + TF_coil_arc_point_1_R_(m)_______________________________________________ (xarc(2))_____________________ 7.4667E+00 + TF_coil_arc_point_1_Z_(m)_______________________________________________ (yarc(2))_____________________ 7.5843E+00 + TF_coil_arc_point_2_R_(m)_______________________________________________ (xarc(3))_____________________ 1.4527E+01 + TF_coil_arc_point_2_Z_(m)_______________________________________________ (yarc(3))_____________________ 0.0000E+00 + TF_coil_arc_point_3_R_(m)_______________________________________________ (xarc(4))_____________________ 7.4667E+00 + TF_coil_arc_point_3_Z_(m)_______________________________________________ (yarc(4))_____________________ -8.8182E+00 + TF_coil_arc_point_4_R_(m)_______________________________________________ (xarc(5))_____________________ 3.6253E+00 + TF_coil_arc_point_4_Z_(m)_______________________________________________ (yarc(5))_____________________ -5.2909E+00 + TF_cross-section_(total)_(m2)___________________________________________ (tfareain)____________________ 1.8229E+01 + Total_steel_cross-section_(m2)__________________________________________ (a_tf_steel*n_tf)_____________ 1.2853E+01 + Total_steel_TF_fraction_________________________________________________ (f_tf_steel)__________________ 7.0508E-01 + Total_Insulation_cross-section_(total)_(m2)_____________________________ (a_tf_ins*n_tf)_______________ 8.4751E-01 + Total_Insulation_fraction_______________________________________________ (f_tf_ins)____________________ 4.6493E-02 + Casing_cross_section_area_(per_leg)_(m2)________________________________ (acasetf)_____________________ 5.6444E-01 + Inboard_leg_case_plasma_side_wall_thickness_(m)_________________________ (casthi)______________________ 6.0000E-02 + Inboard_leg_case_inboard_"nose"_thickness_(m)___________________________ (thkcas)______________________ 2.8216E-01 ITV + Inboard_leg_case_sidewall_thickness_at_its_narrowest_point_(m)__________ (casths)______________________ 5.0000E-02 + External_case_mass_per_coil_(kg)________________________________________ (whtcas)______________________ 5.5456E+05 OP + WP_cross_section_area_with_insulation_and_insertion_(per_coil)_(m2)_____ (awpc)________________________ 5.7486E-01 + WP_cross_section_area_(per_coil)_(m2)___________________________________ (aswp)________________________ 5.1696E-01 + Winding_pack_radial_thickness_(m)_______________________________________ (dr_tf_wp)____________________ 5.0416E-01 ITV + Winding_pack_toroidal_width_1_(m)_______________________________________ (wwp1)________________________ 1.1904E+00 OP + Winding_pack_toroidal_width_2_(m)_______________________________________ (wwp2)________________________ 1.0901E+00 OP + Ground_wall_insulation_thickness_(m)____________________________________ (tinstf)______________________ 8.0000E-03 + Winding_pack_insertion_gap_(m)__________________________________________ (tfinsgap)____________________ 1.0000E-02 + Steel_WP_cross-section_(total)_(m2)_____________________________________ (aswp*n_tf)___________________ 3.8217E+00 + Steel_WP_fraction_______________________________________________________ (aswp/awpc)___________________ 4.1551E-01 + Insulation_WP_fraction__________________________________________________ (aiwp/awpc)___________________ 4.7934E-02 + Cable_WP_fraction_______________________________________________________ ((awpc-aswp-aiwp)/awpc)_______ 5.3656E-01 + Turn_parametrisation____________________________________________________ (i_tf_turns_integer)__________ 0 + Number_of_turns_per_TF_coil_____________________________________________ (n_tf_turn)___________________ 1.4739E+02 OP + Width_of_turn_including_inter-turn_insulation_(m)_______________________ (t_turn_tf)___________________ 5.9223E-02 OP + Width_of_conductor_(square)_(m)_________________________________________ (t_conductor)_________________ 5.7623E-02 OP + Width_of_space_inside_conductor_(m)_____________________________________ (t_cable)_____________________ 4.1603E-02 OP + Steel_conduit_thickness_(m)_____________________________________________ (thwcndut)____________________ 8.0099E-03 ITV + Inter-turn_insulation_thickness_(m)_____________________________________ (thicndut)____________________ 8.0000E-04 + Diameter_of_central_helium_channel_in_cable_____________________________ (dhecoil)_____________________ 1.0000E-02 + internal_area_of_the_cable_space________________________________________ (acstf)_______________________ 1.6999E-03 + Coolant_fraction_in_conductor_excluding_central_channel_________________ (vftf)________________________ 3.0000E-01 + Copper_fraction_of_conductor____________________________________________ (fcutfsu)_____________________ 8.4212E-01 ITV + Superconductor_fraction_of_conductor____________________________________ (1-fcutfsu)___________________ 1.5788E-01 + Check_total_area_fractions_in_winding_pack_=_1__________________________ ______________________________ 1.0000E+00 + minimum_TF_conductor_temperature_margin__(K)____________________________ (tmargmin_tf)_________________ 1.5000E+00 + TF_conductor_temperature_margin_(K)_____________________________________ (tmargtf)_____________________ 1.5048E+00 + Elastic_properties_behavior_____________________________________________ (i_tf_cond_eyoung_axial)______ 0 + Conductor_axial_Youngs_modulus__________________________________________ (eyoung_cond_axial)___________ 0.0000E+00 + Conductor_transverse_Youngs_modulus_____________________________________ (eyoung_cond_trans)___________ 0.0000E+00 + Superconductor_mass_per_coil_(kg)_______________________________________ (whtconsc)____________________ 4.6963E+03 OP + Copper_mass_per_coil_(kg)_______________________________________________ (whtconcu)____________________ 5.8072E+04 OP + Steel_conduit_mass_per_coil_(kg)________________________________________ (whtconsh)____________________ 8.9311E+04 OP + Conduit_insulation_mass_per_coil_(kg)___________________________________ (whtconin)____________________ 2.3777E+03 OP + Total_conduit_mass_per_coil_(kg)________________________________________ (whtcon)______________________ 1.5446E+05 OP + Mass_of_each_TF_coil_(kg)_______________________________________________ (whttf/n_tf)__________________ 7.1402E+05 OP + Total_TF_coil_mass_(kg)_________________________________________________ (whttf)_______________________ 1.1424E+07 OP + Nominal_peak_field_assuming_toroidal_symmetry_(T)_______________________ (bmaxtf)______________________ 1.2178E+01 OP + Total_current_in_all_TF_coils_(MA)______________________________________ (ritfc/1.D6)__________________ 2.1176E+02 OP + TF_coil_current_(summed_over_all_coils)_(A)_____________________________ (ritfc)_______________________ 2.1176E+08 + Actual_peak_field_at_discrete_conductor_(T)_____________________________ (bmaxtfrp)____________________ 1.2636E+01 OP + Winding_pack_current_density_(A/m2)_____________________________________ (jwptf)_______________________ 2.5602E+07 OP + Inboard_leg_mid-plane_conductor_current_density_(A/m2)__________________ (oacdcp)______________________ 1.1617E+07 + Total_stored_energy_in_TF_coils_(GJ)____________________________________ (estotftgj)___________________ 1.2161E+02 OP + Inboard_vertical_tension_per_coil_(N)___________________________________ (vforce)______________________ 2.0908E+08 OP + Outboard_vertical_tension_per_coil_(N)__________________________________ (vforce_outboard)_____________ 2.0908E+08 OP + inboard_vertical_tension_fraction_(-)___________________________________ (f_vforce_inboard)____________ 5.0000E-01 OP + Centring_force_per_coil_(N/m)___________________________________________ (cforce)______________________ 8.0590E+07 OP + Max_allowed_tfcoil_variables.ripple_amplitude_at_plasma_outboard_midplan (ripmax)______________________ 6.0000E-01 + Ripple_amplitude_at_plasma_outboard_midplane_(%)________________________ (ripple)______________________ 6.0000E-01 OP + Actual_quench_time_(or_time_constant)_(s)_______________________________ (tdmptf)______________________ 1.8429E+01 ITV + Vacuum_Vessel_stress_on_quench_(Pa)_____________________________________ (vv_stress_quench)____________ 6.1442E+07 OP + Maximum_allowed_voltage_during_quench_due_to_insulation_(kV)____________ (vdalw)_______________________ 9.5837E+00 ITV + Actual_quench_voltage_(kV)______________________________________________ (vtfskv)______________________ 9.1863E+00 OP + Maximum_allowed_temp_rise_during_a_quench_(K)___________________________ (tmaxpro)_____________________ 1.5000E+02 + # Superconducting TF Coils # + Superconductor_switch___________________________________________________ (isumat)______________________ 1 + Critical_field_at_zero_temperature_and_strain_(T)_______________________ (bc20m)_______________________ 3.2970E+01 + Critical_temperature_at_zero_field_and_strain_(K)_______________________ (tc0m)________________________ 1.6060E+01 + Helium_temperature_at_peak_field_(=_superconductor_temperature)_(K)_____ (thelium)_____________________ 4.7500E+00 + Total_helium_fraction_inside_cable_space________________________________ (fhetot)______________________ 3.4620E-01 OP + Copper_fraction_of_conductor____________________________________________ (fcutfsu)_____________________ 8.4212E-01 ITV + Residual_manufacturing_strain_on_superconductor_________________________ (str_tf_con_res)______________ -5.0000E-03 + Self-consistent_strain_on_superconductor________________________________ (str_wp)______________________ 2.0730E-03 + Critical_current_density_in_superconductor_(A/m2)_______________________ (jcritsc)_____________________ 7.1337E+08 OP + Critical_current_density_in_strand_(A/m2)_______________________________ (jcritstr)____________________ 1.1263E+08 OP + Critical_current_density_in_winding_pack_(A/m2)_________________________ (jwdgcrt)_____________________ 3.5687E+07 OP + Actual_current_density_in_winding_pack_(A/m2)___________________________ (jwdgop)______________________ 2.5602E+07 OP + Minimum_allowed_temperature_margin_in_superconductor_(K)________________ (tmargmin_tf)_________________ 1.5000E+00 + Actual_temperature_margin_in_superconductor_(K)_________________________ (tmarg)_______________________ 1.5048E+00 OP + Critical_current_(A)____________________________________________________ (icrit)_______________________ 1.2517E+05 OP + Actual_current_(A)______________________________________________________ (cpttf)_______________________ 8.9795E+04 ITV + Actual_current_/_critical_current_______________________________________ (iooic)_______________________ 7.1739E-01 OP + # Central Solenoid and PF Coils # + Central_solenoid_superconductor_material________________________________ (isumatoh)____________________ 1 + Maximum_field_at_Beginning_Of_Pulse_(T)_________________________________ (bmaxoh0)_____________________ 1.4050E+01 OP + Critical_superconductor_current_density_at_BOP_(A/m2)___________________ (jscoh_bop)___________________ 3.4921E+08 OP + Critical_strand_current_density_at_BOP_(A/m2)___________________________ (jstrandoh_bop)_______________ 1.0476E+08 OP + Allowable_overall_current_density_at_BOP_(A/m2)_________________________ (rjohc0)______________________ 3.5297E+07 OP + Actual_overall_current_density_at_BOP_(A/m2)____________________________ (cohbop)______________________ 1.9125E+07 OP + Maximum_field_at_End_Of_Flattop_(T)_____________________________________ (bmaxoh)______________________ 1.3920E+01 OP + Critical_superconductor_current_density_at_EOF_(A/m2)___________________ (jscoh_eof)___________________ 3.6101E+08 OP + Critical_strand_current_density_at_EOF_(A/m2)___________________________ (jstrandoh_eof)_______________ 1.0830E+08 OP + Allowable_overall_current_density_at_EOF_(A/m2)_________________________ (rjohc)_______________________ 3.6490E+07 OP + Actual_overall_current_density_at_EOF_(A/m2)____________________________ (coheof)______________________ 2.0264E+07 ITV + CS_inside_radius_(m)____________________________________________________ (bore)________________________ 1.9854E+00 ITV + CS_thickness_(m)________________________________________________________ (ohcth)_______________________ 5.7587E-01 ITV + Gap_between_central_solenoid_and_TF_coil_(m)____________________________ (gapoh)_______________________ 8.0000E-02 + CS_overall_cross-sectional_area_(m2)____________________________________ (areaoh)______________________ 9.1407E+00 OP + CS_conductor+void_cross-sectional_area_(m2)_____________________________ (awpoh)_______________________ 4.3996E+00 OP + ___CS_conductor_cross-sectional_area_(m2)_______________________________ (awpoh*(1-vfohc))_____________ 3.0797E+00 OP + ___CS_void_cross-sectional_area_(m2)____________________________________ (awpoh*vfohc)_________________ 1.3199E+00 OP + CS_steel_cross-sectional_area_(m2)______________________________________ (areaoh-awpoh)________________ 4.7411E+00 OP + CS_steel_area_fraction__________________________________________________ (oh_steel_frac)_______________ 5.1868E-01 ITV + Switch_for_CS_stress_calculation________________________________________ (i_cs_stress)_________________ 0 + Allowable_stress_in_CS_steel_(Pa)_______________________________________ (alstroh)_____________________ 7.5000E+08 + Hoop_stress_in_CS_steel_(Pa)____________________________________________ (sig_hoop)____________________ 6.7565E+08 OP + Axial_stress_in_CS_steel_(Pa)___________________________________________ (sig_axial)___________________ -7.6200E+08 OP + Maximum_shear_stress_in_CS_steel_for_the_Tresca_criterion_(Pa)__________ (s_tresca_oh)_________________ 6.7565E+08 OP + Axial_force_in_CS_(N)___________________________________________________ (axial_force)_________________ -1.6255E+09 OP + Residual_manufacturing_strain_in_CS_superconductor_material_____________ (tfcoil_variables.str_cs_con_r -5.0000E-03 + Copper_fraction_in_strand_______________________________________________ (fcuohsu)_____________________ 7.0000E-01 + Void_(coolant)_fraction_in_conductor____________________________________ (vfohc)_______________________ 3.0000E-01 + Helium_coolant_temperature_(K)__________________________________________ (tftmp)_______________________ 4.7500E+00 + CS_temperature_margin_(K)_______________________________________________ (tmargoh)_____________________ 1.5056E+00 OP + Minimum_permitted_temperature_margin_(K)________________________________ (tmargmin_cs)_________________ 1.5000E+00 + Residual_hoop_stress_in_CS_Steel_(Pa)___________________________________ (residual_sig_hoop)___________ 2.4000E+08 + Minimum_burn_time_(s)___________________________________________________ (tbrnmn)______________________ 7.2000E+03 + Initial_vertical_crack_size_(m)_________________________________________ (t_crack_vertical)____________ 8.9000E-04 + Initial_radial_crack_size_(m)___________________________________________ (t_crack_radial)______________ 2.6700E-03 + CS_turn_area_(m)________________________________________________________ (a_oh_turn)___________________ 1.9739E-03 + CS_turn_length_(m)______________________________________________________ (l_cond_cst)__________________ 7.6953E-02 + CS_turn_internal_cable_space_radius_(m)_________________________________ (r_in_cst)____________________ 7.4741E-03 + CS_turn_width_(m)_______________________________________________________ (d_cond_cst)__________________ 2.5651E-02 + CS_structural_vertical_thickness_(m)____________________________________ (t_structural_vertical)_______ 5.3515E-03 + CS_structural_radial_thickness_(m)______________________________________ (t_structural_radial)_________ 5.3515E-03 + Allowable_number_of_cycles_till_CS_fracture_____________________________ (n_cycle)_____________________ 1.3380E+02 OP + Minimum_number_of_cycles_required_till_CS_fracture______________________ (n_cycle_min)_________________ 2.0000E+04 OP + PF_coil_superconductor_material_________________________________________ (isumatpf)____________________ 3 + Copper_fraction_in_conductor____________________________________________ (fcupfsu)_____________________ 6.9000E-01 + Maximum_permissible_tensile_stress_(MPa)________________________________ (sigpfcalw)___________________ 5.0000E+02 + JxB_hoop_force_fraction_supported_by_case_______________________________ (sigpfcf)_____________________ 6.6600E-01 + PF_coil_0_radius_(m)____________________________________________________ (rpf[0]_______________________ 5.5667E+00 + PF_coil_0_vertical_position_(m)_________________________________________ (zpf[0])______________________ 9.3603E+00 + PF_coil_0_radial_thickness_(m)__________________________________________ (pfdr(0))_____________________ 1.2724E+00 + PF_coil_0_vertical_thickness_(m)________________________________________ (pfdz(0))_____________________ 1.2724E+00 + PF_coil_0_turns_________________________________________________________ (turns[0])____________________ 4.4523E+02 + PF_coil_0_current_(MA)__________________________________________________ (ric[0])______________________ 1.7809E+01 + PF_coil_0_field_(T)_____________________________________________________ (bpf[0])______________________ 6.2242E+00 + PF_coil_1_radius_(m)____________________________________________________ (rpf[1]_______________________ 5.5667E+00 + PF_coil_1_vertical_position_(m)_________________________________________ (zpf[1])______________________ -1.0594E+01 + PF_coil_1_radial_thickness_(m)__________________________________________ (pfdr(1))_____________________ 1.3648E+00 + PF_coil_1_vertical_thickness_(m)________________________________________ (pfdz(1))_____________________ -1.3648E+00 + PF_coil_1_turns_________________________________________________________ (turns[1])____________________ 5.1225E+02 + PF_coil_1_current_(MA)__________________________________________________ (ric[1])______________________ 2.0490E+01 + PF_coil_1_field_(T)_____________________________________________________ (bpf[1])______________________ 6.6949E+00 + PF_coil_2_radius_(m)____________________________________________________ (rpf[2]_______________________ 1.6731E+01 + PF_coil_2_vertical_position_(m)_________________________________________ (zpf[2])______________________ 2.6667E+00 + PF_coil_2_radial_thickness_(m)__________________________________________ (pfdr(2))_____________________ 1.1332E+00 + PF_coil_2_vertical_thickness_(m)________________________________________ (pfdz(2))_____________________ 1.1332E+00 + PF_coil_2_turns_________________________________________________________ (turns[2])____________________ 1.9262E+02 + PF_coil_2_current_(MA)__________________________________________________ (ric[2])______________________ -7.7049E+00 + PF_coil_2_field_(T)_____________________________________________________ (bpf[2])______________________ 2.6389E+00 + PF_coil_3_radius_(m)____________________________________________________ (rpf[3]_______________________ 1.6731E+01 + PF_coil_3_vertical_position_(m)_________________________________________ (zpf[3])______________________ -2.6667E+00 + PF_coil_3_radial_thickness_(m)__________________________________________ (pfdr(3))_____________________ 1.1332E+00 + PF_coil_3_vertical_thickness_(m)________________________________________ (pfdz(3))_____________________ -1.1332E+00 + PF_coil_3_turns_________________________________________________________ (turns[3])____________________ 1.9262E+02 + PF_coil_3_current_(MA)__________________________________________________ (ric[3])______________________ -7.7049E+00 + PF_coil_3_field_(T)_____________________________________________________ (bpf[3])______________________ 2.6389E+00 + PF_coil_4_radius_(m)____________________________________________________ (rpf[4]_______________________ 1.5209E+01 + PF_coil_4_vertical_position_(m)_________________________________________ (zpf[4])______________________ 7.4667E+00 + PF_coil_4_radial_thickness_(m)__________________________________________ (pfdr(4))_____________________ 8.0773E-01 + PF_coil_4_vertical_thickness_(m)________________________________________ (pfdz(4))_____________________ 8.0773E-01 + PF_coil_4_turns_________________________________________________________ (turns[4])____________________ 1.3048E+02 + PF_coil_4_current_(MA)__________________________________________________ (ric[4])______________________ -5.2194E+00 + PF_coil_4_field_(T)_____________________________________________________ (bpf[4])______________________ 2.5737E+00 + PF_coil_5_radius_(m)____________________________________________________ (rpf[5]_______________________ 1.5209E+01 + PF_coil_5_vertical_position_(m)_________________________________________ (zpf[5])______________________ -7.4667E+00 + PF_coil_5_radial_thickness_(m)__________________________________________ (pfdr(5))_____________________ 8.0773E-01 + PF_coil_5_vertical_thickness_(m)________________________________________ (pfdz(5))_____________________ -8.0773E-01 + PF_coil_5_turns_________________________________________________________ (turns[5])____________________ 1.3048E+02 + PF_coil_5_current_(MA)__________________________________________________ (ric[5])______________________ -5.2194E+00 + PF_coil_5_field_(T)_____________________________________________________ (bpf[5])______________________ 2.5737E+00 + Central_solenoid_radius_(m)_____________________________________________ (rpf[nohc-1])_________________ 2.2733E+00 + Central_solenoid_vertical_position_(m)__________________________________ (zpf[nohc-1])_________________ 0.0000E+00 + Central_solenoid_radial_thickness_(m)___________________________________ (ohdr)________________________ 5.7587E-01 + Central_solenoid_vertical_thickness_(m)_________________________________ (ohdz)________________________ 1.5873E+01 + Central_solenoid_turns__________________________________________________ (turns[nohc-1])_______________ 4.6307E+03 + Central_solenoid_current_(MA)___________________________________________ (ric[nohc-1])_________________ -1.8523E+02 + Central_solenoid_field_(T)______________________________________________ (bpf[nohc-1])_________________ 1.4050E+01 + Sum_of_squares_of_residuals_____________________________________________ (ssq0)________________________ 3.5204E-04 OP + Smoothing_parameter_____________________________________________________ (alfapf)______________________ 5.0000E-10 + # Volt Second Consumption # + Total_volt-second_consumption_by_coils_(Wb)_____________________________ (vstot)_______________________ -5.8000E+02 OP + # Waveforms # + Ratio_of_central_solenoid_current_at_beginning_of_Pulse_/_end_of_flat-to (fcohbop)_____________________ 9.4380E-01 ITV + Ratio_of_central_solenoid_current_at_beginning_of_Flat-top_/_end_of_flat (fcohbof)_____________________ -1.4036E-01 OP + # PF Circuit Waveform Data # + Number_of_PF_circuits_including_CS_and_plasma___________________________ (ncirt)_______________________ 8 + PF_Circuit_0_Time_point_0_(A)___________________________________________ (pfc0t0)______________________ 0.0000E+00 + PF_Circuit_0_Time_point_1_(A)___________________________________________ (pfc0t1)______________________ 1.3970E+07 + PF_Circuit_0_Time_point_2_(A)___________________________________________ (pfc0t2)______________________ 1.7809E+07 + PF_Circuit_0_Time_point_3_(A)___________________________________________ (pfc0t3)______________________ 1.7809E+07 + PF_Circuit_0_Time_point_4_(A)___________________________________________ (pfc0t4)______________________ 9.2927E+05 + PF_Circuit_0_Time_point_5_(A)___________________________________________ (pfc0t5)______________________ 0.0000E+00 + PF_Circuit_1_Time_point_0_(A)___________________________________________ (pfc1t0)______________________ 0.0000E+00 + PF_Circuit_1_Time_point_1_(A)___________________________________________ (pfc1t1)______________________ 1.8268E+07 + PF_Circuit_1_Time_point_2_(A)___________________________________________ (pfc1t2)______________________ 2.0490E+07 + PF_Circuit_1_Time_point_3_(A)___________________________________________ (pfc1t3)______________________ 2.0490E+07 + PF_Circuit_1_Time_point_4_(A)___________________________________________ (pfc1t4)______________________ -1.5820E+06 + PF_Circuit_1_Time_point_5_(A)___________________________________________ (pfc1t5)______________________ 0.0000E+00 + PF_Circuit_2_Time_point_0_(A)___________________________________________ (pfc2t0)______________________ -0.0000E+00 + PF_Circuit_2_Time_point_1_(A)___________________________________________ (pfc2t1)______________________ 4.9540E+05 + PF_Circuit_2_Time_point_2_(A)___________________________________________ (pfc2t2)______________________ -7.1063E+06 + PF_Circuit_2_Time_point_3_(A)___________________________________________ (pfc2t3)______________________ -7.1063E+06 + PF_Circuit_2_Time_point_4_(A)___________________________________________ (pfc2t4)______________________ -7.7049E+06 + PF_Circuit_2_Time_point_5_(A)___________________________________________ (pfc2t5)______________________ -0.0000E+00 + PF_Circuit_3_Time_point_0_(A)___________________________________________ (pfc3t0)______________________ -0.0000E+00 + PF_Circuit_3_Time_point_1_(A)___________________________________________ (pfc3t1)______________________ 4.9540E+05 + PF_Circuit_3_Time_point_2_(A)___________________________________________ (pfc3t2)______________________ -7.1063E+06 + PF_Circuit_3_Time_point_3_(A)___________________________________________ (pfc3t3)______________________ -7.1063E+06 + PF_Circuit_3_Time_point_4_(A)___________________________________________ (pfc3t4)______________________ -7.7049E+06 + PF_Circuit_3_Time_point_5_(A)___________________________________________ (pfc3t5)______________________ -0.0000E+00 + PF_Circuit_4_Time_point_0_(A)___________________________________________ (pfc4t0)______________________ -0.0000E+00 + PF_Circuit_4_Time_point_1_(A)___________________________________________ (pfc4t1)______________________ 3.2648E+05 + PF_Circuit_4_Time_point_2_(A)___________________________________________ (pfc4t2)______________________ -4.8249E+06 + PF_Circuit_4_Time_point_3_(A)___________________________________________ (pfc4t3)______________________ -4.8249E+06 + PF_Circuit_4_Time_point_4_(A)___________________________________________ (pfc4t4)______________________ -5.2194E+06 + PF_Circuit_4_Time_point_5_(A)___________________________________________ (pfc4t5)______________________ -0.0000E+00 + PF_Circuit_5_Time_point_0_(A)___________________________________________ (pfc5t0)______________________ -0.0000E+00 + PF_Circuit_5_Time_point_1_(A)___________________________________________ (pfc5t1)______________________ 3.2648E+05 + PF_Circuit_5_Time_point_2_(A)___________________________________________ (pfc5t2)______________________ -4.8249E+06 + PF_Circuit_5_Time_point_3_(A)___________________________________________ (pfc5t3)______________________ -4.8249E+06 + PF_Circuit_5_Time_point_4_(A)___________________________________________ (pfc5t4)______________________ -5.2194E+06 + PF_Circuit_5_Time_point_5_(A)___________________________________________ (pfc5t5)______________________ -0.0000E+00 + CS_Circuit_Time_point_0_(A)_____________________________________________ (cs_t0)_______________________ -0.0000E+00 + CS_Circuit_Time_point_1_(A)_____________________________________________ (cs_t1)_______________________ 1.7482E+08 + CS_Circuit_Time_point_2_(A)_____________________________________________ (cs_t2)_______________________ 2.5998E+07 + CS_Circuit_Time_point_3_(A)_____________________________________________ (cs_t3)_______________________ 2.5998E+07 + CS_Circuit_Time_point_4_(A)_____________________________________________ (cs_t4)_______________________ -1.8523E+08 + CS_Circuit_Time_point_5_(A)_____________________________________________ (cs_t5)_______________________ -0.0000E+00 + Plasma_Time_point_0_(A)_________________________________________________ (plasmat0)____________________ 0.0000E+00 + Plasma_Time_point_1_(A)_________________________________________________ (plasmat1)____________________ 0.0000E+00 + Plasma_Time_point_2_(A)_________________________________________________ (plasmat2)____________________ 1.6631E+07 + Plasma_Time_point_3_(A)_________________________________________________ (plasmat3)____________________ 1.6631E+07 + Plasma_Time_point_4_(A)_________________________________________________ (plasmat4)____________________ 1.6631E+07 + Plasma_Time_point_5_(A)_________________________________________________ (plasmat5)____________________ 0.0000E+00 + # Support Structure # + Outer_PF_coil_fence_mass_(kg)___________________________________________ (fncmass)_____________________ 2.2925E+05 OP + Intercoil_support_structure_mass_(kg)___________________________________ (aintmass)____________________ 4.3045E+06 OP + Mass_of_cooled_components_(kg)__________________________________________ (coldmass)____________________ 3.4369E+07 OP + Gravity_support_structure_mass_(kg)_____________________________________ (clgsmass)____________________ 1.2760E+06 OP + Torus_leg_support_mass_(kg)_____________________________________________ (gsm1)________________________ 8.5820E+04 OP + Ring_beam_mass_(kg)_____________________________________________________ (gsm2)________________________ 4.0087E+05 OP + Ring_legs_mass_(kg)_____________________________________________________ (gsm3)________________________ 6.8281E+05 OP + # PF Coil Inductances # + # Nuclear Heating Magnets Before Renormalisation # + Shield_line_density_(tonne/m2)__________________________________________ (x_shield)____________________ 4.0560E+00 + Blanket_line_density_(tonne/m2)_________________________________________ (x_blanket)___________________ 2.2911E+00 + Unit_nuclear_heating_in_TF_coil_(W/GW)__________________________________ (tfc_nuc_heating)_____________ 1.4866E+04 + Total_nuclear_heating_in_TF_coil_(MW)___________________________________ (ptfnuc.)_____________________ 2.4649E-02 + powfmw__________________________________________________________________ (powfmw.)_____________________ 1.6581E+03 + total_mass_of_the_TF_coils_(kg)_________________________________________ (whttf)_______________________ 1.1424E+07 + # Pumping for primary coolant (helium) # + Pressure_drop_in_FW_and_blanket_coolant_incl._hx_and_pipes_(Pa)_________ (dp_he)_______________________ 5.5000E+05 + Fraction_of_FW_and_blanket_thermal_power_required_for_pumping___________ (fpump)_______________________ 8.9463E-02 OP + Total_power_absorbed_by_FW_&_blanket_(MW)_______________________________ (p_plasma)____________________ 1.6528E+03 OP + Inlet_temperature_of_FW_&_blanket_coolant_pump_(K)______________________ (t_in_compressor)_____________ 5.5703E+02 OP + Coolant_pump_outlet/Inlet_temperature_of_FW_&_blanket_(K)_______________ (t_in_bb)_____________________ 5.7313E+02 + Outlet_temperature_of_FW_&_blanket_(K)__________________________________ (t_out_bb)____________________ 7.7313E+02 + Mechanical_pumping_power_for_FW_and_blanket_cooling_loop_including_heat_ (htpmw_fw_blkt)_______________ 1.6239E+02 OP + Mechanical_pumping_power_for_divertor_(MW)______________________________ (htpmw_div)___________________ 1.9859E+00 OP + Mechanical_pumping_power_for_shield_and_vacuum_vessel_(MW)______________ (htpmw_shld)__________________ 7.2342E-03 OP + # First wall and blanket : CCFE HCPB model # + Titanium_beryllide_fraction_____________________________________________ (fbltibe12)___________________ 3.7500E-01 + Lithium_orthosilicate_fraction__________________________________________ (fblli2sio4)__________________ 3.7500E-01 + Steel_fraction__________________________________________________________ (fblss_ccfe)__________________ 9.7050E-02 + Coolant_fraction________________________________________________________ (vfcblkt)_____________________ 5.2950E-02 + Purge_gas_fraction______________________________________________________ (vfpblkt)_____________________ 1.0000E-01 + First_Wall_Armour_Volume_(m3)___________________________________________ (fw_armour_vol)_______________ 5.8692E+00 + First_Wall_Volume_(m3)__________________________________________________ (volfw)_______________________ 1.9807E+01 + Blanket_Volume_(m3)_____________________________________________________ (volblkt)_____________________ 1.1849E+03 + Shield_Volume_(m3)______________________________________________________ (volshld)_____________________ 7.8520E+02 + Vacuum_vessel_volume_(m3)_______________________________________________ (vdewin)______________________ 1.0178E+03 + First_Wall_Armour_Mass_(kg)_____________________________________________ (fw_armour_mass)______________ 1.1298E+05 OP + First_Wall_Mass,_excluding_armour_(kg)__________________________________ (fwmass)______________________ 1.5449E+05 OP + Blanket_Mass_-_Total(kg)________________________________________________ (whtblkt)_____________________ 2.9676E+06 OP + ____Blanket_Mass_-_TiBe12_(kg)__________________________________________ (whtbltibe12)_________________ 1.0042E+06 OP + ____Blanket_Mass_-_Li4SiO4_(kg)_________________________________________ (whtblli4sio4)________________ 1.0664E+06 OP + ____Blanket_Mass_-_Steel_(kg)___________________________________________ (whtblss)_____________________ 8.9696E+05 OP + Total_mass_of_armour,_first_wall_and_blanket_(kg)_______________________ (armour_fw_bl_mass)___________ 3.2350E+06 OP + Shield_Mass_(kg)________________________________________________________ (whtshld)_____________________ 2.4498E+06 OP + Vacuum_vessel_mass_(kg)_________________________________________________ (vvmass)______________________ 7.9388E+06 OP + Total_nuclear_heating_in_TF+PF_coils_(CS_is_negligible)_(MW)____________ (ptfnuc)______________________ 2.5706E-02 OP + Total_nuclear_heating_in_FW_(MW)________________________________________ (pnucfw)______________________ 1.6697E+02 OP + Total_nuclear_heating_in_the_blanket_(including_emult)_(MW)_____________ (pnucblkt)____________________ 1.3203E+03 OP + Total_nuclear_heating_in_the_shield_(MW)________________________________ (pnucshld)____________________ 1.4468E+00 OP + Total_nuclear_heating_in_the_divertor_(MW)______________________________ (pnucdiv)_____________________ 1.5254E+02 OP + Blanket_exponential_factor______________________________________________ (exp_blanket)_________________ 9.9936E-01 OP + Shield:_first_exponential_______________________________________________ (exp_shield1)_________________ 1.9523E-03 OP + Shield:_second_exponential______________________________________________ (exp_shield2)_________________ 2.5427E-01 OP + Solid_angle_fraction_taken_by_on_divertor_______________________________ (fdiv)________________________ 1.1500E-01 + Switch_for_plant_secondary_cycle________________________________________ (secondary_cycle)_____________ 2 + First_wall_coolant_pressure_(Pa)________________________________________ (fwpressure)__________________ 1.5500E+07 + Blanket_coolant_pressure_(Pa)___________________________________________ (blpressure)__________________ 1.5500E+07 + Allowable_nominal_neutron_fluence_at_first_wall_(MW.year/m2)____________ (abktflnc)____________________ 5.0000E+00 + No_of_inboard_blanket_modules_poloidally________________________________ (nblktmodpi)__________________ 7 + No_of_inboard_blanket_modules_toroidally________________________________ (nblktmodti)__________________ 32 + No_of_outboard_blanket_modules_poloidally_______________________________ (nblktmodpo)__________________ 8 + No_of_outboard_blanket_modules_toroidally_______________________________ (nblktmodto)__________________ 48 + Isentropic_efficiency_of_first_wall_/_blanket_coolant_pumps_____________ (etaiso)______________________ 9.0000E-01 + First_wall_area_(m2)____________________________________________________ (fwarea)______________________ 1.6044E+03 OP + Cryostat_internal_radius_(m)____________________________________________ (rdewex)______________________ 1.7798E+01 OP + Cryostat_internal_half-height_(m)_______________________________________ (zdewex)______________________ 1.5338E+01 OP + Vertical_clearance_from_TF_coil_to_cryostat_(m)_________________________ (clh1)________________________ 5.6042E+00 OP + Divertor_area_(m2)______________________________________________________ (divsur)______________________ 1.4879E+02 OP + Divertor_mass_(kg)______________________________________________________ (divmas)______________________ 3.6453E+04 OP + # Superconducting TF Coil Power Conversion # + TF_coil_current_(kA)____________________________________________________ (itfka)_______________________ 8.9795E+01 OP + Number_of_TF_coils______________________________________________________ (ntfc)________________________ 1.6000E+01 + Voltage_across_a_TF_coil_during_quench_(kV)_____________________________ (vtfskv)______________________ 9.1863E+00 OP + TF_coil_charge_time_(hours)_____________________________________________ (tchghr)______________________ 4.0000E+00 + Total_inductance_of_TF_coils_(H)________________________________________ (ltfth)_______________________ 3.0166E+01 OP + Total_resistance_of_TF_coils_(ohm)______________________________________ (rcoils)______________________ 0.0000E+00 OP + TF_coil_charging_voltage_(V)____________________________________________ (tfcv)________________________ 2.9268E+02 + Number_of_DC_circuit_breakers___________________________________________ (ntfbkr)______________________ 1.6000E+01 + Number_of_dump_resistors________________________________________________ (ndumpr)______________________ 6.4000E+01 + Resistance_per_dump_resistor_(ohm)______________________________________ (r1dump)______________________ 1.0230E-01 OP + Dump_resistor_peak_power_(MW)___________________________________________ (r1ppmw)______________________ 2.0622E+02 OP + Energy_supplied_per_dump_resistor_(MJ)__________________________________ (r1emj)_______________________ 1.9002E+03 OP + TF_coil_L/R_time_constant_(s)___________________________________________ (ttfsec)______________________ 1.8429E+01 OP + Power_supply_voltage_(V)________________________________________________ (tfpsv)_______________________ 3.0731E+02 OP + Power_supply_current_(kA)_______________________________________________ (tfpska)______________________ 9.4285E+01 OP + DC_power_supply_rating_(kW)_____________________________________________ (tfckw)_______________________ 2.8975E+04 OP + AC_power_for_charging_(kW)______________________________________________ (tfackw)______________________ 3.2194E+04 OP + TF_coil_resistive_power_(MW)____________________________________________ (rpower)______________________ 9.3901E+00 OP + TF_coil_inductive_power_(MVA)___________________________________________ (xpower)______________________ 1.6891E+01 OP + Aluminium_bus_current_density_(kA/cm2)__________________________________ (djmka)_______________________ 1.2500E-01 + Aluminium_bus_cross-sectional_area_(cm2)________________________________ (albusa)______________________ 7.1836E+02 OP + Total_length_of_TF_coil_bussing_(m)_____________________________________ (tfbusl)______________________ 3.1931E+03 OP + Aluminium_bus_weight_(tonnes)___________________________________________ (albuswt)_____________________ 6.1932E+02 OP + Total_TF_coil_bus_resistance_(ohm)______________________________________ (rtfbus)______________________ 1.1646E-03 OP + TF_coil_bus_voltage_drop_(V)____________________________________________ (vtfbus)______________________ 1.0457E+02 OP + Dump_resistor_floor_area_(m2)___________________________________________ (drarea)______________________ 4.9234E+03 OP + TF_coil_power_conversion_floor_space_(m2)_______________________________ (tfcfsp)______________________ 1.8228E+03 OP + TF_coil_power_conv._building_volume_(m3)________________________________ (tfcbv)_______________________ 1.0937E+04 OP + TF_coil_AC_inductive_power_demand_(MW)__________________________________ (xpwrmw)______________________ 1.8768E+01 OP + Total_steady_state_AC_power_demand_(MW)_________________________________ (tfacpd)______________________ 1.0433E+01 OP + # PF Coils and Central Solenoid: Power and Energy # + Number_of_PF_coil_circuits______________________________________________ (pfckts)______________________ 1.2000E+01 + Sum_of_PF_power_supply_ratings_(MVA)____________________________________ (spsmva)______________________ 3.0327E+02 OP + Total_PF_coil_circuit_bus_length_(m)____________________________________ (spfbusl)_____________________ 2.4480E+03 OP + Total_PF_coil_bus_resistive_power_(kW)__________________________________ (pfbuspwr)____________________ 9.6485E+02 OP + Total_PF_coil_resistive_power_(kW)______________________________________ (srcktpm)_____________________ 9.6485E+02 OP + Maximum_PF_coil_voltage_(kV)____________________________________________ (vpfskv)______________________ 2.0000E+01 + Efficiency_of_transfer_of_PF_stored_energy_into_or_out_of_storage_______ (etapsu)______________________ 9.0000E-01 + Maximum_stored_energy_in_poloidal_field_(MJ)____________________________ (ensxpfm)_____________________ 2.8802E+04 OP + Peak_absolute_rate_of_change_of_stored_energy_in_poloidal_field_(MW)____ (peakpoloidalpower)___________ 9.9000E+03 OP + # Vacuum System # + First_wall_outgassing_rate_(Pa_m/s)_____________________________________ (rat)_________________________ 1.3000E-08 + Total_outgassing_load_(Pa_m3/s)_________________________________________ (ogas)________________________ 1.6691E-04 OP + Base_pressure_required_(Pa)_____________________________________________ (pbase)_______________________ 5.0000E-04 + Required_N2_pump_speed_(m3/s)___________________________________________ (s(1))________________________ 3.3381E-01 OP + N2_pump_speed_provided_(m3/s)___________________________________________ (snet(1))_____________________ 2.4683E+01 OP + Plasma_chamber_volume_(m3)______________________________________________ (volume)______________________ 2.2588E+03 OP + Chamber_pressure_after_burn_(Pa)________________________________________ (pend)________________________ 1.6698E-01 OP + Chamber_pressure_before_burn_(Pa)_______________________________________ (pstart)______________________ 1.6698E-03 + Allowable_pumping_time_switch___________________________________________ (dwell_pump)__________________ 0 + Dwell_time_between_burns_(s)____________________________________________ (tdwell.)_____________________ 1.8000E+03 + CS_ramp-up_time_burns_(s)_______________________________________________ (tramp.)______________________ 5.0000E+02 + Allowable_pumping_time_between_burns_(s)________________________________ (tpump)_______________________ 1.8000E+03 + Required_D-T_pump_speed_(m3/s)__________________________________________ (s(2))________________________ 5.7790E+00 OP + D-T_pump_speed_provided_(m3/s)__________________________________________ (snet(2))_____________________ 5.9881E+01 OP + Divertor_chamber_gas_pressure_(Pa)______________________________________ (prdiv)_______________________ 3.6000E-01 + Helium_gas_fraction_in_divertor_chamber_________________________________ (fhe)_________________________ 1.7054E-01 OP + Required_helium_pump_speed_(m3/s)_______________________________________ (s(3))________________________ 3.9700E+01 OP + Helium_pump_speed_provided_(m3/s)_______________________________________ (snet(3))_____________________ 3.9700E+01 OP + D-T_fuelling_rate_(kg/s)________________________________________________ (frate)_______________________ 2.8670E-05 OP + Required_D-T_pump_speed_(m3/s)__________________________________________ (s(4))________________________ 3.9700E+01 OP + D-T_pump_speed_provided_(m3/s)__________________________________________ (snet(4))_____________________ 5.9881E+01 OP + Number_of_large_pump_ducts______________________________________________ (nduct)_______________________ 16 + Passage_diameter,_divertor_to_ducts_(m)_________________________________ (d(imax))_____________________ 4.8991E-01 OP + Passage_length_(m)______________________________________________________ (l1)__________________________ 1.7160E+00 OP + Diameter_of_ducts_(m)___________________________________________________ (dout)________________________ 5.8790E-01 OP + Duct_length,_divertor_to_elbow_(m)______________________________________ (l2)__________________________ 4.8000E+00 OP + Duct_length,_elbow_to_pumps_(m)_________________________________________ (l3)__________________________ 2.0000E+00 + Number_of_pumps_________________________________________________________ (pumpn)_______________________ 3.2000E+01 OP + # Plant Buildings System # + Internal_volume_of_reactor_building_(m3)________________________________ (vrci)________________________ 9.9708E+05 + Dist_from_centre_of_torus_to_bldg_wall_(m)______________________________ (wrbi)________________________ 3.9531E+01 + Effective_floor_area_(m2)_______________________________________________ (efloor)______________________ 3.3810E+05 + Reactor_building_volume_(m3)____________________________________________ (rbv)_________________________ 1.1310E+06 + Reactor_maintenance_building_volume_(m3)________________________________ (rmbv)________________________ 3.9641E+05 + Warmshop_volume_(m3)____________________________________________________ (wsv)_________________________ 1.2531E+05 + Tritium_building_volume_(m3)____________________________________________ (triv)________________________ 4.0000E+04 + Electrical_building_volume_(m3)_________________________________________ (elev)________________________ 5.1937E+04 + Control_building_volume_(m3)____________________________________________ (conv)________________________ 6.0000E+04 + Cryogenics_building_volume_(m3)_________________________________________ (cryv)________________________ 2.4006E+04 + Administration_building_volume_(m3)_____________________________________ (admv)________________________ 1.0000E+05 + Shops_volume_(m3)_______________________________________________________ (shov)________________________ 1.0000E+05 + Total_volume_of_nuclear_buildings_(m3)__________________________________ (volnucb)_____________________ 1.5828E+06 + # Electric Power Requirements # + Facility_base_load_(MW)_________________________________________________ (basemw)______________________ 5.0000E+00 + Divertor_coil_power_supplies_(MW)_______________________________________ (bdvmw)_______________________ 0.0000E+00 + Cryoplant_electric_power_(MW)___________________________________________ (crymw)_______________________ 9.3948E+01 OP + Primary_coolant_pumps_(MW)______________________________________________ (htpmw..)_____________________ 1.8894E+02 OP + PF_coil_power_supplies_(MW)_____________________________________________ (ppfmw)_______________________ 8.5564E+01 OP + TF_coil_power_supplies_(MW)_____________________________________________ (ptfmw)_______________________ 1.0433E+01 OP + Plasma_heating_supplies_(MW)____________________________________________ (pheatingmw)__________________ 1.5426E+02 OP + Tritium_processing_(MW)_________________________________________________ (trithtmw..)__________________ 1.5000E+01 + Vacuum_pumps__(MW)______________________________________________________ (vachtmw..)___________________ 5.0000E-01 + Total_pulsed_power_(MW)_________________________________________________ (pacpmw)______________________ 6.0436E+02 OP + Total_base_power_required_at_all_times_(MW)_____________________________ (fcsht)_______________________ 5.5715E+01 OP + # Cryogenics # + Conduction_and_radiation_heat_loads_on_cryogenic_components_(MW)________ (qss/1.0d6)___________________ 1.4779E-02 OP + Nuclear_heating_of_cryogenic_components_(MW)____________________________ (qnuc/1.0d6)__________________ 1.3000E-02 OP + AC_losses_in_cryogenic_components_(MW)__________________________________ (qac/1.0d6)___________________ 8.4063E-02 OP + Resistive_losses_in_current_leads_(MW)__________________________________ (qcl/1.0d6)___________________ 1.9539E-02 OP + 45%_allowance_for_heat_loads_in_transfer_lines,_storage_tanks_etc_(MW)__ (qmisc/1.0d6)_________________ 5.9121E-02 OP + Sum_=_Total_heat_removal_at_cryogenic_temperatures_(tfcoil_variables.tmp (helpow_+_helpow_cryal/1.0d6)_ 1.9050E-01 OP + Temperature_of_cryogenic_superconducting_components_(K)_________________ (tmpcry)______________________ 4.5000E+00 + Temperature_of_cryogenic_aluminium_components_(K)_______________________ (tcoolin)_____________________ 3.1315E+02 + Efficiency_(figure_of_merit)_of_cryogenic_plant_is_13%_of_ideal_Carnot_v ______________________________ 2.0277E-03 OP + Efficiency_(figure_of_merit)_of_cryogenic_aluminium_plant_is_40%_of_idea ______________________________ -2.0203E+00 OP + Electric_power_for_cryogenic_plant_(MW)_________________________________ (crypmw)______________________ 9.3948E+01 OP + # Plant Power / Heat Transport Balance # + Neutron_power_multiplication_in_blanket_________________________________ (emult)_______________________ 1.2690E+00 + Divertor_area_fraction_of_whole_toroid_surface__________________________ (fdiv)________________________ 1.1500E-01 + H/CD_apparatus_+_diagnostics_area_fraction______________________________ (fhcd)________________________ 0.0000E+00 + First_wall_area_fraction________________________________________________ (1-fdiv-fhcd)_________________ 8.8500E-01 + Switch_for_pumping_of_primary_coolant___________________________________ (primary_pumping)_____________ 3 + Mechanical_pumping_power_for_FW_cooling_loop_including_heat_exchanger_(M (htpmw_fw)____________________ 0.0000E+00 OP + Mechanical_pumping_power_for_blanket_cooling_loop_including_heat_exchang (htpmw_blkt)__________________ 0.0000E+00 OP + Mechanical_pumping_power_for_FW_and_blanket_cooling_loop_including_heat_ (htpmw_fw_blkt)_______________ 1.6239E+02 OP + Mechanical_pumping_power_for_divertor_(MW)______________________________ (htpmw_div)___________________ 1.9859E+00 OP + Mechanical_pumping_power_for_shield_and_vacuum_vessel_(MW)______________ (htpmw_shld)__________________ 7.2342E-03 OP + Electrical_pumping_power_for_FW_and_blanket_(MW)________________________ (htpmwe_fw_blkt)______________ 1.8665E+02 OP + Electrical_pumping_power_for_shield_(MW)________________________________ (htpmwe_shld)_________________ 8.3151E-03 OP + Electrical_pumping_power_for_divertor_(MW)______________________________ (htpmwe_div)__________________ 2.2827E+00 OP + Total_electrical_pumping_power_for_primary_coolant_(MW)_________________ (htpmw)_______________________ 1.8894E+02 OP + Coolant_pump_power_/_non-pumping_thermal_power_in_shield________________ (fpumpshld)___________________ 5.0000E-03 + Coolant_pump_power_/_non-pumping_thermal_power_in_divertor______________ (fpumpdiv)____________________ 5.0000E-03 + Electrical_efficiency_of_heat_transport_coolant_pumps___________________ (etahtp)______________________ 8.7000E-01 + Thermal_to_electric_conversion_efficiency_of_the_power_conversion_cycle_ (etath)_______________________ 4.0000E-01 + Fraction_of_total_high-grade_thermal_power_to_divertor__________________ (pdivfraction)________________ 1.8015E-01 + Total_power_leaving_reactor_(across_vacuum_vessel_boundary)_(MW)________ ______________________________ 2.0534E+03 + Heat_removal_from_cryogenic_plant_(MW)__________________________________ (crypmw)______________________ 9.3948E+01 + Heat_removal_from_facilities_(MW)_______________________________________ (fachtmw)_____________________ 5.5715E+01 + Coolant_pumping_efficiency_losses_(MW)__________________________________ (htpsecmw)____________________ 2.4563E+01 + Heat_removal_from_injection_power_(MW)__________________________________ (pinjht)______________________ 7.7128E+01 + Heat_removal_from_tritium_plant_(MW)____________________________________ (trithtmw)____________________ 1.5000E+01 + Heat_removal_from_vacuum_pumps_(MW)_____________________________________ (vachtmw)_____________________ 5.0000E-01 + TF_coil_resistive_power_(MW)____________________________________________ (tfcmw)_______________________ 0.0000E+00 + Total_low-grade_thermal_power_(MW)______________________________________ (psechtmw)____________________ 2.7737E+02 + Total_High-grade_thermal_power_(MW)_____________________________________ (pthermmw)____________________ 2.2158E+03 + Number_of_primary_heat_exchangers_______________________________________ (nphx)________________________ 3 OP + Transport_power_from_scaling_law_(MW)___________________________________ (pscalingmw)__________________ 3.1571E+02 + Radiation_power_from_inside_"coreradius"_(MW)___________________________ (pcoreradmw.)_________________ 7.1766E+01 + Total_(MW)______________________________________________________________ ______________________________ 3.8748E+02 + Alpha_power_deposited_in_plasma_(MW)____________________________________ (falpha*palpmw)_______________ 3.1466E+02 + Power_from_charged_products_of_DD_and/or_D-He3_fusion_(MW)______________ (pchargemw.)__________________ 1.2956E+00 + Ohmic_heating_(MW)______________________________________________________ (pohmmw.)_____________________ 5.1235E-01 + Injected_power_deposited_in_plasma_(MW)_________________________________ (pinjmw)______________________ 7.7128E+01 + Total_(MW)______________________________________________________________ ______________________________ 3.9359E+02 + Fusion_power_(MW)_______________________________________________________ (powfmw)______________________ 1.6581E+03 + Power_from_energy_multiplication_in_blanket_and_shield_(MW)_____________ (emultmw)_____________________ 3.1557E+02 + Injected_power_(MW)_____________________________________________________ (pinjmw.)_____________________ 7.7128E+01 + Ohmic_power_(MW)________________________________________________________ (pohmmw.)_____________________ 5.1235E-01 + Power_deposited_in_primary_coolant_by_pump_(MW)_________________________ (htpmw_mech)__________________ 1.6438E+02 + Total_(MW)______________________________________________________________ ______________________________ 2.2157E+03 + Heat_extracted_from_first_wall_and_blanket_(MW)_________________________ (pthermfw_blkt)_______________ 1.8151E+03 + Heat_extracted_from_shield__(MW)________________________________________ (pthermshld)__________________ 1.4541E+00 + Heat_extracted_from_divertor_(MW)_______________________________________ (pthermdiv)___________________ 3.9917E+02 + Nuclear_and_photon_power_lost_to_H/CD_system_(MW)_______________________ (psechcd)_____________________ 0.0000E+00 + Nuclear_power_lost_to_TF_(MW)___________________________________________ (ptfnuc)______________________ 2.5706E-02 + Total_(MW)______________________________________________________________ ______________________________ 2.2158E+03 + Net_electric_power_output(MW)___________________________________________ (pnetelmw.)___________________ 3.6745E+02 + Required_Net_electric_power_output(MW)__________________________________ (pnetelin)____________________ 4.0000E+02 + Electric_power_for_heating_and_current_drive_(MW)_______________________ (pinjwp)______________________ 1.5426E+02 + Electric_power_for_primary_coolant_pumps_(MW)___________________________ (htpmw)_______________________ 1.8894E+02 + Electric_power_for_vacuum_pumps_(MW)____________________________________ (vachtmw)_____________________ 5.0000E-01 + Electric_power_for_tritium_plant_(MW)___________________________________ (trithtmw)____________________ 1.5000E+01 + Electric_power_for_cryoplant_(MW)_______________________________________ (crypmw)______________________ 9.3948E+01 + Electric_power_for_TF_coils_(MW)________________________________________ (tfacpd)______________________ 1.0433E+01 + Electric_power_for_PF_coils_(MW)________________________________________ (pfwpmw)______________________ 5.6927E-02 + All_other_internal_electric_power_requirements_(MW)_____________________ (fachtmw)_____________________ 5.5715E+01 + Total_(MW)______________________________________________________________ (tot_plant_power)_____________ 8.8631E+02 + Total_(MW)______________________________________________________________ ______________________________ 8.8631E+02 + Gross_electrical_output*_(MW)___________________________________________ (pgrossmw)____________________ 8.8631E+02 + Fusion_power_(MW)_______________________________________________________ (powfmw)______________________ 1.6581E+03 + Power_from_energy_multiplication_in_blanket_and_shield_(MW)_____________ (emultmw)_____________________ 3.1557E+02 + Total_(MW)______________________________________________________________ ______________________________ 1.9737E+03 + Net_electrical_output_(MW) _____________________________________________ (pnetelmw)____________________ 3.6745E+02 + Heat_rejected_by_main_power_conversion_circuit_(MW)_____________________ (rejected_main)_______________ 1.3295E+03 + Heat_rejected_by_other_cooling_circuits_(MW)____________________________ (psechtmw)____________________ 2.7737E+02 + Total_(MW)______________________________________________________________ ______________________________ 1.9743E+03 + Net_electric_power_/_total_nuclear_power_(%)____________________________ (pnetelmw/(powfmw+emultmw)____ 1.8618E+01 + Net_electric_power_/_total_fusion_power_(%)_____________________________ (pnetelmw/powfmw)_____________ 2.2161E+01 + Gross_electric_power*_/_high_grade_heat_(%)_____________________________ (etath)_______________________ 4.0000E+01 + Recirculating_power_fraction____________________________________________ (cirpowfr)____________________ 5.8541E-01 + # Water usage during plant operation (secondary cooling) # + Volume_used_in_cooling_tower_(m3/day)___________________________________ (waterusetower)_______________ 5.6522E+04 OP + Volume_used_in_recirculating_water_system_(m3/day)______________________ (wateruserecirc)______________ 1.8964E+04 OP + Volume_used_in_once-through_water_system_(m3/day)_______________________ (wateruseonethru)_____________ 1.8585E+06 OP + # Errors and Warnings # + # Errors and Warnings # + PROCESS_error_status_flag_______________________________________________ (error_status)________________ 2 + Final_error_identifier__________________________________________________ (error_id)____________________ 244 + # End of PROCESS Output # + # End of PROCESS Output # + # Copy of PROCESS Input Follows # +************************************************--------------------------------------------------* + + +*---------------Constraint Equations---------------* + +icc = 1 * Beta +icc = 2 * Global power balance +icc = 11 * Radial build +icc = 5 * Density upper limit +icc = 8 * Neutron wall load upper limit +icc = 9 * Fusion power upper limit +icc = 13 * Burn time lower limit +icc = 15 * LH power threshold limit +icc = 30 * Injection power upper limit +icc = 16 * Net electric power lower limit +icc = 24 * Beta upper limit +icc = 25 * Peak toroidal field upper limit +icc = 26 * Central solenoid EOF current density upper limit +icc = 27 * Central solenoid BOP current density upper limit +icc = 33 * I_op +icc = 34 * Dump voltage upper limit +icc = 35 * J_winding pack +icc = 36 * TF coil temperature margin lower limit +icc = 60 * Central solenoid temperature margin lower limit +icc = 62 * taup +icc = 65 * Dump time set by VV loads +icc = 72 * central solenoid shear stress limit +icc = 81 * Ne +icc = 68 * Psep +icc = 31 * TF coil case stress upper limit +icc = 32 * TF coil conduit stress upper limit + +*---------------Iteration Variables----------------* + +ixc = 2 * bt +ixc = 3 * rmajor +boundl(3) = 8.0 +boundu(3) = 9.0 +ixc = 4 * te +boundu(4) = 100.0 +ixc = 5 * beta +ixc = 6 * dene +ixc = 10 * hfact +boundu(10) = 1.2 +ixc = 13 * tfcth +boundl(13) = 0.7 +ixc = 14 * fwalld +ixc = 16 * ohcth +boundl(16) = 0.3 +ixc = 18 * q +boundl(18) = 3.0 +ixc = 21 * ftburn +ixc = 25 * fpnetel +ixc = 26 * ffuspow +ixc = 29 * bore +boundl(29) = 0.1 +ixc = 35 * fpeakb +ixc = 36 * fbetatry +ixc = 37 * coheof +ixc = 38 * fjohc +boundu(38) = 1.0 +ixc = 39 * fjohc0 +boundu(39) = 1.0 +ixc = 41 * fcohbop +ixc = 44 * fvsbrnni +ixc = 46 * fpinj +ixc = 48 * fstrcase +ixc = 49 * fstrcond +ixc = 50 * fiooic +boundu(50) = 1.0 +ixc = 51 * fvdump +ixc = 52 * vdalw +boundu(52) = 10.0 +ixc = 53 * fjprot +ixc = 54 * ftmargtf +ixc = 56 * tdmptf +ixc = 57 * thkcas +ixc = 58 * thwcndut +boundl(58) = 0.008 +ixc = 59 * fcutfsu +boundl(59) = 0.50 +boundu(59) = 0.94 +ixc = 60 * cpttf +boundl(60) = 65000.0 +boundu(60) = 90000.0 +ixc = 103 * flhthresh +boundu(103) = 10.0 +ixc = 106 * ftmargoh +ixc = 109 * ralpne +boundu(109) = 0.1 +ixc = 110 * ftaulimit +ixc = 113 * fmaxvvstress +ixc = 117 * fpsepbqar +ixc = 122 * oh_steel_frac +ixc = 123 * foh_stress +ixc = 135 * fimp(13) +ixc = 140 * dr_tf_wp +boundl(140) = 0.4 +ixc = 154 * fne0 + +*---------------Cs Fatigue Variables---------------* + + +*------------------- Costs 1990--------------------* + + +*------------------- Costs 2015--------------------* + + +*-----------------Blanket Library------------------* + + +*----------------------Build-----------------------* + + +*-----------------Build Variables------------------* + +blnkith = 0.7 * inboard blanket thickness (m); (calculated if `blktmodel>0`) (=0;0 if `iblnkith=0`) +blnkoth = 1.0 * outboard blanket thickness (m); calculated if `blktmodel>0` +bore = 1.9854 * central solenoid inboard radius (m) (`iteration variable 29`) +ddwex = 0.15 * cryostat thickness (m) +d_vv_in = 0.3 * vacuum vessel inboard thickness (TF coil / shield) (m) +d_vv_out = 0.3 * vacuum vessel outboard thickness (TF coil / shield) (m) +d_vv_top = 0.3 * vacuum vessel topside thickness (TF coil / shield) (m) (= d_vv_bot if double-null) +d_vv_bot = 0.3 * vacuum vessel underside thickness (TF coil / shield) (m) +gapds = 0.02 * gap between inboard vacuum vessel and thermal shield (m) (`iteration variable 61`) +ohcth = 0.57587 * Central solenoid thickness (m) (`iteration variable 16`) +scrapli = 0.25 * Gap between plasma and first wall; inboard side (m) (if `iscrp=1`) +scraplo = 0.25 * Gap between plasma and first wall; outboard side (m) (if `iscrp=1`) +shldith = 0.3 * inboard shield thickness (m) (`iteration variable 93`) +shldoth = 0.800 * outboard shield thickness (m) (`iteration variable 94`) +tfcth = 1.2 * inboard TF coil thickness; (centrepost for ST) (m) +thshield_ib = 0.050 * TF-VV thermal shield thickness; inboard (m) +thshield_ob = 0.050 * TF-VV thermal shield thickness; outboard (m) +thshield_vb = 0.050 * TF-VV thermal shield thickness; vertical build (m) +vvblgap = 0.02 * gap between vacuum vessel and blanket (m) + +*---------------Buildings Variables----------------* + + +*-----------------Ccfe Hcpb Module-----------------* + + +*---------------Const And Precisions---------------* + + +*--------------------Constants---------------------* + + +*---------------Constraint Variables---------------* + +bmxlim = 14.0 * maximum peak toroidal field (T) (`constraint equation 25`) +fbetatry = 0.5087 * f-value for beta limit (`constraint equation 24`; `iteration variable 36`) +fdene = 1.2 * f-value for density limit (`constraint equation 5`; `iteration variable 9`) +ffuspow = 0.54006 * f-value for maximum fusion power (`constraint equation 9`, `iteration variable 26`) +fiooic = 0.71737 * f-value for TF coil operating current / critical current ratio +fjohc = 0.55541 * f-value for central solenoid current at end-of-flattop +fjohc0 = 0.5419 * f-value for central solenoid current at beginning of pulse +fjprot = 0.99639 * f-value for TF coil winding pack current density +flhthresh = 1.6735 * f-value for L-H power threshold (`constraint equation 15`, `iteration variable 103`) +foh_stress = 0.90092 * f-value for Tresca yield criterion in Central Solenoid +fpeakb = 0.86988 * f-value for maximum toroidal field (`constraint equation 25`, `iteration variable 35`) +fpinj = 0.40071 * f-value for injection power (`constraint equation 30`, `iteration variable 46`) +fpnetel = 1.0 * f-value for net electric power (`constraint equation 16`, `iteration variable 25`) +fpsepbqar = 1.0 * f-value for maximum Psep*Bt/qAR limit (`constraint equation 68`, `iteration variable 117`) +fstrcase = 0.9967 * f-value for maximum TF coil case Tresca yield criterion +fstrcond = 0.85185 * f-value for maxiumum TF coil conduit Tresca yield criterion +fmaxvvstress = 0.42966 * f-value for maximum permitted stress of the VV +ftburn = 0.9994 * f-value for minimum burn time (`constraint equation 13`, `iteration variable 21`) +ftmargoh = 0.99653 * f-value for central solenoid temperature margin +ftmargtf = 0.99673 * f-value for TF coil temperature margin (`constraint equation 36`, `iteration variable 54`) +fvdump = 0.95837 * f-value for dump voltage (`constraint equation 34`; `iteration variable 51`) +fwalld = 0.50758 * f-value for maximum wall load (`constraint equation 8`; `iteration variable 14`) +pnetelin = 400.0 * required net electric power (MW) (`constraint equation 16`) +powfmax = 3000 * maximum fusion power (MW) (`constraint equation 9`) +psepbqarmax = 10.0 * maximum ratio of Psep*Bt/qAR (MWT/m) (`constraint equation 68`) +tbrnmn = 7200.0 * minimum burn time (s) (KE - no longer itv;; see issue #706) +walalw = 2.0 * allowable neutron wall-load (MW/m2) (`constraint equation 8`) +taulimit = 5.0 * Lower limit on taup/taueff the ratio of alpha particle to energy confinement +ftaulimit = 0.7193 * f-value for lower limit on taup/taueff the ratio of alpha particle to energy + +*-------------------Constraints--------------------* + + +*------------------Cost Variables------------------* + +cfactr = 0.80 * Total plant availability fraction; input if `iavail=0` +cost_model = 0 * Switch for cost model; +iavail = 0 * Switch for plant availability model; +output_costs = 1 * Switch for costs output; + +*----------------------Costs-----------------------* + + +*-------------Current Drive Variables--------------* + +bscfmax = 0.95 * maximum fraction of plasma current from bootstrap; if `bscfmax < 0`; +etaech = 0.5 * ECH wall plug to injector efficiency +gamma_ecrh = 0.30 * User input ECRH gamma (1;0e20 A/(W m^2)) +iefrf = 10 * Switch for current drive efficiency model; +pheat = 75.0 * heating power not used for current drive (MW) (`iteration variable 11`) +pinjalw = 200.0 * maximum allowable value for injected power (MW) (`constraint equation 30`) + +*-------------------Dcll Module--------------------* + + +*------------Define Iteration Variables------------* + + +*----------------Divertor Variables----------------* + +divfix = 0.62 * divertor structure vertical thickness (m) + +*------------------Error Handling------------------* + + +*-------------------Final Module-------------------* + + +*-------------------Fson Library-------------------* + + +*-------------------Fson Path M--------------------* + + +*------------------Fson String M-------------------* + + +*-------------------Fson Value M-------------------* + + +*----------------Function Evaluator----------------* + + +*--------------------Fw Module---------------------* + + +*-------------------Fwbs Module--------------------* + + +*------------------Fwbs Variables------------------* + +inuclear = 1 * switch for nuclear heating in the coils; +qnuc = 1.3e4 * nuclear heating in the coils (W) (`inuclear=1`) +primary_pumping = 3 * Switch for pumping power for primary coolant (mechanical power only and peak first wall +secondary_cycle = 2 * Switch for power conversion cycle; +vfshld = 0.60 * coolant void fraction in shield +etaiso = 0.9 * isentropic efficiency of FW and blanket coolant pumps +etahtp = 0.87 * electrical efficiency of primary coolant pumps + +*-----------------Global Variables-----------------* + +runtitle = generic large tokamak * short descriptive title for the run + +*-------------Heat Transport Variables-------------* + +etath = 0.4 * thermal to electric conversion efficiency if `secondary_cycle=2`; otherwise calculated; +ipowerflow = 0 * switch for power flow model; +iprimshld = 1 * Switch for shield thermal power destiny; + +*--------------------Ife Module--------------------* + + +*------------------Ife Variables-------------------* + + +*------------Impurity Radiation Module-------------* + +coreradius = 0.75 * coreradius /0;6/ ; normalised radius defining the 'core' region +coreradiationfraction = 0.6 * coreradiationfraction /1;0/ ; fraction of radiation from 'core' region that is subtracted from the loss power +fimp(1) = 0.9 +fimp(2) = 0.1 +fimp(3) = 0.0 +fimp(4) = 0.0 +fimp(5) = 0.0 +fimp(6) = 0.0 +fimp(7) = 0.0 +fimp(8) = 0.0 +fimp(9) = 0.0 +fimp(10) = 0.0 +fimp(11) = 0.0 +fimp(12) = 0.0 +fimp(13) = 0.00038 +fimp(14) = 5e-06 + +*-------------------Init Module--------------------* + + +*-------------------Main Module--------------------* + + +*------------------Maths Library-------------------* + + +*--------------Neoclassics Constants---------------* + + +*----------------Neoclassics Module----------------* + + +*---------------------Numerics---------------------* + +minmax = 1 * +epsvmc = 1e-7 * epsvmc /1;0e-6/ ; error tolerance for VMCON + +*----------------Pf Power Variables----------------* + + +*------------------Pfcoil Module-------------------* + + +*-----------------Pfcoil Variables-----------------* + +alstroh = 7.5d8 * allowable hoop stress in Central Solenoid structural material (Pa) +coheof = 20264000.0 * Central solenoid overall current density at end of flat-top (A/m2) (`iteration variable 37`) (`sweep variable 62`) +cptdin = 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4 * peak current per turn input for PF coil i (A) +fcohbop = 0.9438 * ratio of central solenoid overall current density at beginning of pulse / end of flat-top +fcuohsu = 0.70 * copper fraction of strand in central solenoid +ipfloc = 2,2,3,3 * Switch for location of PF coil group i; +isumatoh = 1 * switch for superconductor material in central solenoid; +isumatpf = 3 * switch for superconductor material in PF coils; +ncls = 1,1,2,2 * number of PF coils in group j +ngrp = 4 * number of groups of PF coils; Symmetric coil pairs should all be in the same group +ohhghf = 0.9 * Central solenoid height / TF coil internal height +oh_steel_frac = 0.51868 * central solenoid steel fraction (`iteration variable 122`) +rjconpf = 1.1d7, 1.1d7, 6.d6, 6.d6, 8.d6, 8.0d6, 8.0d6, 8.0d6 * average winding pack current density of PF coil i (A/m2) at time of peak +rpf2 = -1.825 * offset (m) of radial position of `ipfloc=2` PF coils from being at +sigpfcf = 0.666 * fraction of JxB hoop force supported by steel case for superconducting PF coils (`ipfres=0`) +zref(1) = 3.6 +zref(2) = 1.2 +zref(3) = 1.0 +zref(4) = 2.8 +zref(5) = 1.0 +zref(6) = 1.0 +zref(7) = 1.0 +zref(8) = 1.0 +zref(9) = 1.0 +zref(10) = 1.0 + +*-------------Physics Functions Module-------------* + + +*------------------Physics Module------------------* + + +*----------------Physics Variables-----------------* + +alphan = 1.00 * density profile index +alphat = 1.45 * temperature profile index +aspect = 3.0 * aspect ratio (`iteration variable 1`) +beta = 0.033648 * total plasma beta (`iteration variable 5`) (calculated if stellarator) +bt = 5.294 * toroidal field on axis (T) (`iteration variable 2`) +dene = 8.0667e+19 * electron density (/m3) (`iteration variable 6`) +dnbeta = 3.0 * Troyon-like coefficient for beta scaling calculated +fgwsep = 0.5 * fraction of Greenwald density to set as separatrix density; If `<0`; separatrix +fkzohm = 1.02 * Zohm elongation scaling adjustment factor (`ishape=2; 3`) +fne0 = 0.59638 * f-value for the constraint ne(0) > ne(ped) (`constraint equation 81`) +fvsbrnni = 0.43358 * fraction of the plasma current produced by non-inductive means (`iteration variable 44`) +gamma = 0.3 * Ejima coefficient for resistive startup V-s formula +hfact = 1.1886 * H factor on energy confinement times; radiation corrected (`iteration variable 10`); +ibss = 4 * switch for bootstrap current scaling +iculbl = 1 * switch for beta limit scaling (`constraint equation 24`) +icurr = 4 * switch for plasma current scaling to use +idensl = 7 * switch for density limit to enforce (`constraint equation 5`) +ifalphap = 1 * switch for fast alpha pressure calculation +iinvqd = 1 * switch for inverse quadrature in L-mode scaling laws 5 and 9; +ipedestal = 1 * switch for pedestal profiles; +neped = 0.5e20 * electron density of pedestal [m-3] (`ipedestal==1) +nesep = 0.2e20 * electron density at separatrix [m-3] (`ipedestal==1) +plasma_res_factor = 0.7 * plasma resistivity pre-factor +rhopedn = 0.94 * r/a of density pedestal (`ipedestal==1`) +rhopedt = 0.94 * r/a of temperature pedestal (`ipedestal==1`) +tbeta = 2.0 * temperature profile index beta (`ipedestal==1) +teped = 5.5 * electron temperature of pedestal (keV) (`ipedestal==1; ieped=0; calculated for ieped=1`) +tesep = 0.1 * electron temperature at separatrix (keV) (`ipedestal==1`) calculated if reinke +iprofile = 1 * switch for current profile consistency; +isc = 34 * switch for energy confinement time scaling law (see description in `tauscl`) +ishape = 0 * switch for plasma cross-sectional shape calculation; +kappa = 1.85 * plasma separatrix elongation (calculated if `ishape = 1-5; 7 or 9-10`) +q = 3.5961 * safety factor 'near' plasma edge (`iteration variable 18`) equal to q95 +q0 = 1.0 * safety factor on axis +ralpne = 0.083954 * thermal alpha density/electron density (`iteration variable 109`) +rmajor = 8.0 * plasma major radius (m) (`iteration variable 3`) +i_single_null = 1 * switch for single null / double null plasma; +ssync = 0.6 * synchrotron wall reflectivity factor +te = 12.489 * volume averaged electron temperature (keV) (`iteration variable 4`) +triang = 0.5 * plasma separatrix triangularity (calculated if `ishape = 1; 3-5 or 7`) + +*----------------------Power-----------------------* + + +*------------Primary Pumping Variables-------------* + + +*------------------Process Input-------------------* + + +*------------------Process Output------------------* + + +*-----------------Profiles Module------------------* + + +*-----------------Pulse Variables------------------* + +lpulse = 1 * Switch for reactor model; + +*-----------------Rebco Variables------------------* + + +*------------------Reinke Module-------------------* + + +*-----------------Reinke Variables-----------------* + + +*---------------Resistive Materials----------------* + + +*-------------------Scan Module--------------------* + + +*-----------------Sctfcoil Module------------------* + + +*----------------Startup Variables-----------------* + + +*------------Stellarator Configuration-------------* + + +*----------------Stellarator Module----------------* + + +*--------------Stellarator Variables---------------* + + +*---------------Structure Variables----------------* + + +*-----------------Tfcoil Variables-----------------* + +sig_tf_case_max = 7.5e8 * Allowable maximum shear stress (Tresca criterion) in TF coil case (Pa) +sig_tf_wp_max = 7.5e8 * Allowable maximum shear stress (Tresca criterion) in TF coil conduit (Pa) +casthi = 0.06 * inboard TF coil case plasma side thickness (m) (calculated for stellarators) +casths = 0.05 * inboard TF coil sidewall case thickness (m) (calculated for stellarators) +cpttf = 89795.0 * TF coil current per turn (A); (calculated for stellarators) (calculated for +dhecoil = 0.01 * diameter of central helium channel in TF winding (m) +fcutfsu = 0.84212 * copper fraction of cable conductor (TF coils) +i_tf_sc_mat = 1 * Switch for superconductor material in TF coils; +ripmax = 0.6 * aximum allowable toroidal field ripple amplitude at plasma edge (%) +tdmptf = 18.429 * fast discharge time for TF coil in event of quench (s) (`iteration variable 56`) +n_tf = 16 * Number of TF coils (default = 50 for stellarators); Number of TF coils outer legs for ST +tftmp = 4.75 * peak helium coolant temperature in TF coils and PF coils (K) +thkcas = 0.28216 * inboard TF coil case outer (non-plasma side) thickness (m) (`iteration variable 57`) +dr_tf_wp = 0.50416 * radial thickness of winding pack (m) (`iteration variable 140`) (issue #514) +thwcndut = 0.0080099 * TF coil conduit case thickness (m) (`iteration variable 58`) +tinstf = 0.008 * Thickness of the ground insulation layer surrounding (m) +tmargmin_cs = 1.5 * minimum allowable temperature margin ; CS (K) +tmargmin = 1.5 * minimum allowable temperature margin ; TFC AND CS (K) +vdalw = 9.5837 * max voltage across TF coil during quench (kV) (`iteration variable 52`) +vftf = 0.3 * coolant fraction of TFC 'cable' (`i_tf_sup=1`); or of TFC leg (`i_tf_ssup=0`) + +*-----------------Times Variables------------------* + +pulsetimings = 0 * Switch for pulse timings (if lpulse=1); +tdwell = 1800.0 * time between pulses in a pulsed reactor (s) (`iteration variable 17`) +tramp = 500.0 * initial PF coil charge time (s); if pulsed; = tohs + +*--------------------Utilities---------------------* + + +*-----------------Vacuum Variables-----------------* + + +*--------------Water Usage Variables---------------* + +****************************** +* Modifications for reliability analysis: overwrites any previous values +****************************** +* Once through only +ioptimz = -2 * no optimisation +neqns = 3 * distinguish between equality and inequality constraints \ No newline at end of file diff --git a/ra/metrics/rel_threshold/rel_threshold.ipynb b/ra/metrics/rel_threshold/rel_threshold.ipynb new file mode 100644 index 0000000..9aef02f --- /dev/null +++ b/ra/metrics/rel_threshold/rel_threshold.ipynb @@ -0,0 +1,76 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Solution requirement violation severity value as a threshold\n", + "\n", + "Process produces solutions with non-zero requirement violation severity $s$, i.e. some inequality constraints are violated at a converged solution. This is possibly due to tolerances on the contraint violations, and is a problem for reliability analysis as it means that the initial solution has $s > 0$, i.e. it is not feasible. This could be fixed by modifying Process to only converge when the inequality constraints are truly satisfied and $s = 0$.\n", + "\n", + "However, in the meantime, a workaroud might be to work out the RMS constraints at the solution point, then use this as a threshold for reliability in reliability analyses: are the sample points more or less severely violated than the original solution?\n", + "\n", + "So far, severity:\n", + "$$s = \\sqrt{\\frac{1}{N}\\sum_{i=1}^{N}c_i^2},$$\n", + "i.e. the RMS of violated inequality constraints. $s > 0$ at the solution point. Therefore the solution is infeasible, and a reliability analysis around that point is likely to give a reliability $R = 0$, where $R = F_s(0 \\mid \\theta)$.\n", + "\n", + "Therefore use the solution severity $s$ as a threshold severity, which can be subtracted from sample severities to normalise them. The solution severity $s$ is calculated below." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from infeas.decoder import MfileDecoder" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Severity threshold s = 0.060444372057375594\n" + ] + } + ], + "source": [ + "# Hijack decoder to work out RMS constraints\n", + "mfile_path = \"large_tokamak_sol_MFILE.DAT\"\n", + "mfile_decoder = MfileDecoder(\n", + " target_filename=mfile_path, output_columns=[\"rms_vio_constr_res\"]\n", + ")\n", + "raw_data = mfile_decoder._get_raw_data(mfile_path)\n", + "processed_data = mfile_decoder._process_raw_data(raw_data)\n", + "severity_thresh = processed_data[\"rms_vio_constr_res\"]\n", + "print(f\"Severity threshold s = {severity_thresh}\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "easyVVUQ-process", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/ra/rms_cons/README.md b/ra/rms_cons/README.md new file mode 100644 index 0000000..0459c19 --- /dev/null +++ b/ra/rms_cons/README.md @@ -0,0 +1,3 @@ +# Local reliability analysis + +Run a local reliability analysis, for comparing with Dakota's cheaper "inner" methods. The function measuring severity of requirement violation is the RMS of violated inequality constraint residuals. \ No newline at end of file diff --git a/ra/rms_cons/large_tokamak_sol_IN_DAT.template b/ra/rms_cons/large_tokamak_sol_IN_DAT.template new file mode 100644 index 0000000..0465db5 --- /dev/null +++ b/ra/rms_cons/large_tokamak_sol_IN_DAT.template @@ -0,0 +1,487 @@ + +*--------------------------------------------------* + + +*---------------Constraint Equations---------------* + +icc = 1 * Beta +icc = 2 * Global power balance +icc = 11 * Radial build +icc = 5 * Density upper limit +icc = 8 * Neutron wall load upper limit +icc = 9 * Fusion power upper limit +icc = 13 * Burn time lower limit +icc = 15 * LH power threshold limit +icc = 30 * Injection power upper limit +icc = 16 * Net electric power lower limit +icc = 24 * Beta upper limit +icc = 25 * Peak toroidal field upper limit +icc = 26 * Central solenoid EOF current density upper limit +icc = 27 * Central solenoid BOP current density upper limit +icc = 33 * I_op +icc = 34 * Dump voltage upper limit +icc = 35 * J_winding pack +icc = 36 * TF coil temperature margin lower limit +icc = 60 * Central solenoid temperature margin lower limit +icc = 62 * taup +icc = 65 * Dump time set by VV loads +icc = 72 * central solenoid shear stress limit +icc = 81 * Ne +icc = 68 * Psep +icc = 31 * TF coil case stress upper limit +icc = 32 * TF coil conduit stress upper limit + +*---------------Iteration Variables----------------* + +ixc = 2 * bt +ixc = 3 * rmajor +boundl(3) = 8.0 +boundu(3) = 9.0 +ixc = 4 * te +boundu(4) = 100.0 +ixc = 5 * beta +ixc = 6 * dene +ixc = 10 * hfact +boundu(10) = 1.2 +ixc = 13 * tfcth +boundl(13) = 0.7 +ixc = 14 * fwalld +ixc = 16 * ohcth +boundl(16) = 0.3 +ixc = 18 * q +boundl(18) = 3.0 +ixc = 21 * ftburn +ixc = 25 * fpnetel +ixc = 26 * ffuspow +ixc = 29 * bore +boundl(29) = 0.1 +ixc = 35 * fpeakb +ixc = 36 * fbetatry +ixc = 37 * coheof +ixc = 38 * fjohc +boundu(38) = 1.0 +ixc = 39 * fjohc0 +boundu(39) = 1.0 +ixc = 41 * fcohbop +ixc = 44 * fvsbrnni +ixc = 46 * fpinj +ixc = 48 * fstrcase +ixc = 49 * fstrcond +ixc = 50 * fiooic +boundu(50) = 1.0 +ixc = 51 * fvdump +ixc = 52 * vdalw +boundu(52) = 10.0 +ixc = 53 * fjprot +ixc = 54 * ftmargtf +ixc = 56 * tdmptf +ixc = 57 * thkcas +ixc = 58 * thwcndut +boundl(58) = 0.008 +ixc = 59 * fcutfsu +boundl(59) = 0.50 +boundu(59) = 0.94 +ixc = 60 * cpttf +boundl(60) = 65000.0 +boundu(60) = 90000.0 +ixc = 103 * flhthresh +boundu(103) = 10.0 +ixc = 106 * ftmargoh +ixc = 109 * ralpne +boundu(109) = 0.1 +ixc = 110 * ftaulimit +ixc = 113 * fmaxvvstress +ixc = 117 * fpsepbqar +ixc = 122 * oh_steel_frac +ixc = 123 * foh_stress +ixc = 135 * fimp(13) +ixc = 140 * dr_tf_wp +boundl(140) = 0.4 +ixc = 154 * fne0 + +*---------------Cs Fatigue Variables---------------* + + +*------------------- Costs 1990--------------------* + + +*------------------- Costs 2015--------------------* + + +*-----------------Blanket Library------------------* + + +*----------------------Build-----------------------* + + +*-----------------Build Variables------------------* + +blnkith = 0.7 * inboard blanket thickness (m); (calculated if `blktmodel>0`) (=0;0 if `iblnkith=0`) +blnkoth = 1.0 * outboard blanket thickness (m); calculated if `blktmodel>0` +bore = 1.9854 * central solenoid inboard radius (m) (`iteration variable 29`) +ddwex = 0.15 * cryostat thickness (m) +d_vv_in = 0.3 * vacuum vessel inboard thickness (TF coil / shield) (m) +d_vv_out = 0.3 * vacuum vessel outboard thickness (TF coil / shield) (m) +d_vv_top = 0.3 * vacuum vessel topside thickness (TF coil / shield) (m) (= d_vv_bot if double-null) +d_vv_bot = 0.3 * vacuum vessel underside thickness (TF coil / shield) (m) +gapds = 0.02 * gap between inboard vacuum vessel and thermal shield (m) (`iteration variable 61`) +ohcth = 0.57587 * Central solenoid thickness (m) (`iteration variable 16`) +scrapli = 0.25 * Gap between plasma and first wall; inboard side (m) (if `iscrp=1`) +scraplo = 0.25 * Gap between plasma and first wall; outboard side (m) (if `iscrp=1`) +shldith = 0.3 * inboard shield thickness (m) (`iteration variable 93`) +shldoth = 0.800 * outboard shield thickness (m) (`iteration variable 94`) +tfcth = 1.2 * inboard TF coil thickness; (centrepost for ST) (m) +thshield_ib = 0.050 * TF-VV thermal shield thickness; inboard (m) +thshield_ob = 0.050 * TF-VV thermal shield thickness; outboard (m) +thshield_vb = 0.050 * TF-VV thermal shield thickness; vertical build (m) +vvblgap = 0.02 * gap between vacuum vessel and blanket (m) + +*---------------Buildings Variables----------------* + + +*-----------------Ccfe Hcpb Module-----------------* + + +*---------------Const And Precisions---------------* + + +*--------------------Constants---------------------* + + +*---------------Constraint Variables---------------* + +bmxlim = 14.0 * maximum peak toroidal field (T) (`constraint equation 25`) +fbetatry = 0.5087 * f-value for beta limit (`constraint equation 24`; `iteration variable 36`) +fdene = 1.2 * f-value for density limit (`constraint equation 5`; `iteration variable 9`) +ffuspow = 0.54006 * f-value for maximum fusion power (`constraint equation 9`, `iteration variable 26`) +fiooic = 0.71737 * f-value for TF coil operating current / critical current ratio +fjohc = 0.55541 * f-value for central solenoid current at end-of-flattop +fjohc0 = 0.5419 * f-value for central solenoid current at beginning of pulse +fjprot = 0.99639 * f-value for TF coil winding pack current density +flhthresh = 1.6735 * f-value for L-H power threshold (`constraint equation 15`, `iteration variable 103`) +foh_stress = 0.90092 * f-value for Tresca yield criterion in Central Solenoid +fpeakb = 0.86988 * f-value for maximum toroidal field (`constraint equation 25`, `iteration variable 35`) +fpinj = 0.40071 * f-value for injection power (`constraint equation 30`, `iteration variable 46`) +fpnetel = 1.0 * f-value for net electric power (`constraint equation 16`, `iteration variable 25`) +fpsepbqar = 1.0 * f-value for maximum Psep*Bt/qAR limit (`constraint equation 68`, `iteration variable 117`) +fstrcase = 0.9967 * f-value for maximum TF coil case Tresca yield criterion +fstrcond = 0.85185 * f-value for maxiumum TF coil conduit Tresca yield criterion +fmaxvvstress = 0.42966 * f-value for maximum permitted stress of the VV +ftburn = 0.9994 * f-value for minimum burn time (`constraint equation 13`, `iteration variable 21`) +ftmargoh = 0.99653 * f-value for central solenoid temperature margin +ftmargtf = 0.99673 * f-value for TF coil temperature margin (`constraint equation 36`, `iteration variable 54`) +fvdump = 0.95837 * f-value for dump voltage (`constraint equation 34`; `iteration variable 51`) +fwalld = 0.50758 * f-value for maximum wall load (`constraint equation 8`; `iteration variable 14`) +pnetelin = 400.0 * required net electric power (MW) (`constraint equation 16`) +powfmax = 3000 * maximum fusion power (MW) (`constraint equation 9`) +psepbqarmax = 10.0 * maximum ratio of Psep*Bt/qAR (MWT/m) (`constraint equation 68`) +tbrnmn = 7200.0 * minimum burn time (s) (KE - no longer itv;; see issue #706) +walalw = 2.0 * allowable neutron wall-load (MW/m2) (`constraint equation 8`) +taulimit = 5.0 * Lower limit on taup/taueff the ratio of alpha particle to energy confinement +ftaulimit = 0.7193 * f-value for lower limit on taup/taueff the ratio of alpha particle to energy + +*-------------------Constraints--------------------* + + +*------------------Cost Variables------------------* + +cfactr = 0.80 * Total plant availability fraction; input if `iavail=0` +cost_model = 0 * Switch for cost model; +iavail = 0 * Switch for plant availability model; +output_costs = 1 * Switch for costs output; + +*----------------------Costs-----------------------* + + +*-------------Current Drive Variables--------------* + +bscfmax = 0.95 * maximum fraction of plasma current from bootstrap; if `bscfmax < 0`; +etaech = 0.5 * ECH wall plug to injector efficiency +gamma_ecrh = 0.30 * User input ECRH gamma (1;0e20 A/(W m^2)) +iefrf = 10 * Switch for current drive efficiency model; +pheat = 75.0 * heating power not used for current drive (MW) (`iteration variable 11`) +pinjalw = 200.0 * maximum allowable value for injected power (MW) (`constraint equation 30`) + +*-------------------Dcll Module--------------------* + + +*------------Define Iteration Variables------------* + + +*----------------Divertor Variables----------------* + +divfix = 0.62 * divertor structure vertical thickness (m) + +*------------------Error Handling------------------* + + +*-------------------Final Module-------------------* + + +*-------------------Fson Library-------------------* + + +*-------------------Fson Path M--------------------* + + +*------------------Fson String M-------------------* + + +*-------------------Fson Value M-------------------* + + +*----------------Function Evaluator----------------* + + +*--------------------Fw Module---------------------* + + +*-------------------Fwbs Module--------------------* + + +*------------------Fwbs Variables------------------* + +inuclear = 1 * switch for nuclear heating in the coils; +qnuc = 1.3e4 * nuclear heating in the coils (W) (`inuclear=1`) +primary_pumping = 3 * Switch for pumping power for primary coolant (mechanical power only and peak first wall +secondary_cycle = 2 * Switch for power conversion cycle; +vfshld = 0.60 * coolant void fraction in shield +etaiso = 0.9 * isentropic efficiency of FW and blanket coolant pumps +etahtp = 0.87 * electrical efficiency of primary coolant pumps + +*-----------------Global Variables-----------------* + +runtitle = generic large tokamak * short descriptive title for the run + +*-------------Heat Transport Variables-------------* + +etath = 0.4 * thermal to electric conversion efficiency if `secondary_cycle=2`; otherwise calculated; +ipowerflow = 0 * switch for power flow model; +iprimshld = 1 * Switch for shield thermal power destiny; + +*--------------------Ife Module--------------------* + + +*------------------Ife Variables-------------------* + + +*------------Impurity Radiation Module-------------* + +coreradius = 0.75 * coreradius /0;6/ ; normalised radius defining the 'core' region +coreradiationfraction = 0.6 * coreradiationfraction /1;0/ ; fraction of radiation from 'core' region that is subtracted from the loss power +fimp(1) = 0.9 +fimp(2) = 0.1 +fimp(3) = 0.0 +fimp(4) = 0.0 +fimp(5) = 0.0 +fimp(6) = 0.0 +fimp(7) = 0.0 +fimp(8) = 0.0 +fimp(9) = 0.0 +fimp(10) = 0.0 +fimp(11) = 0.0 +fimp(12) = 0.0 +fimp(13) = 0.00038 +fimp(14) = 5e-06 + +*-------------------Init Module--------------------* + + +*-------------------Main Module--------------------* + + +*------------------Maths Library-------------------* + + +*--------------Neoclassics Constants---------------* + + +*----------------Neoclassics Module----------------* + + +*---------------------Numerics---------------------* + +minmax = 1 * +epsvmc = 1e-7 * epsvmc /1;0e-6/ ; error tolerance for VMCON + +*----------------Pf Power Variables----------------* + + +*------------------Pfcoil Module-------------------* + + +*-----------------Pfcoil Variables-----------------* + +alstroh = 7.5d8 * allowable hoop stress in Central Solenoid structural material (Pa) +coheof = 20264000.0 * Central solenoid overall current density at end of flat-top (A/m2) (`iteration variable 37`) (`sweep variable 62`) +cptdin = 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4, 4.0d4 * peak current per turn input for PF coil i (A) +fcohbop = 0.9438 * ratio of central solenoid overall current density at beginning of pulse / end of flat-top +fcuohsu = 0.70 * copper fraction of strand in central solenoid +ipfloc = 2,2,3,3 * Switch for location of PF coil group i; +isumatoh = 1 * switch for superconductor material in central solenoid; +isumatpf = 3 * switch for superconductor material in PF coils; +ncls = 1,1,2,2 * number of PF coils in group j +ngrp = 4 * number of groups of PF coils; Symmetric coil pairs should all be in the same group +ohhghf = 0.9 * Central solenoid height / TF coil internal height +oh_steel_frac = 0.51868 * central solenoid steel fraction (`iteration variable 122`) +rjconpf = 1.1d7, 1.1d7, 6.d6, 6.d6, 8.d6, 8.0d6, 8.0d6, 8.0d6 * average winding pack current density of PF coil i (A/m2) at time of peak +rpf2 = -1.825 * offset (m) of radial position of `ipfloc=2` PF coils from being at +sigpfcf = 0.666 * fraction of JxB hoop force supported by steel case for superconducting PF coils (`ipfres=0`) +zref(1) = 3.6 +zref(2) = 1.2 +zref(3) = 1.0 +zref(4) = 2.8 +zref(5) = 1.0 +zref(6) = 1.0 +zref(7) = 1.0 +zref(8) = 1.0 +zref(9) = 1.0 +zref(10) = 1.0 + +*-------------Physics Functions Module-------------* + + +*------------------Physics Module------------------* + + +*----------------Physics Variables-----------------* + +alphan = 1.00 * density profile index +alphat = 1.45 * temperature profile index +aspect = 3.0 * aspect ratio (`iteration variable 1`) +beta = 0.033648 * total plasma beta (`iteration variable 5`) (calculated if stellarator) +bt = 5.294 * toroidal field on axis (T) (`iteration variable 2`) +dene = 8.0667e+19 * electron density (/m3) (`iteration variable 6`) +dnbeta = 3.0 * Troyon-like coefficient for beta scaling calculated +fgwsep = 0.5 * fraction of Greenwald density to set as separatrix density; If `<0`; separatrix +fkzohm = 1.02 * Zohm elongation scaling adjustment factor (`ishape=2; 3`) +fne0 = 0.59638 * f-value for the constraint ne(0) > ne(ped) (`constraint equation 81`) +fvsbrnni = 0.43358 * fraction of the plasma current produced by non-inductive means (`iteration variable 44`) +gamma = 0.3 * Ejima coefficient for resistive startup V-s formula +hfact = 1.1886 * H factor on energy confinement times; radiation corrected (`iteration variable 10`); +ibss = 4 * switch for bootstrap current scaling +iculbl = 1 * switch for beta limit scaling (`constraint equation 24`) +icurr = 4 * switch for plasma current scaling to use +idensl = 7 * switch for density limit to enforce (`constraint equation 5`) +ifalphap = 1 * switch for fast alpha pressure calculation +iinvqd = 1 * switch for inverse quadrature in L-mode scaling laws 5 and 9; +ipedestal = 1 * switch for pedestal profiles; +neped = 0.5e20 * electron density of pedestal [m-3] (`ipedestal==1) +nesep = 0.2e20 * electron density at separatrix [m-3] (`ipedestal==1) +plasma_res_factor = 0.7 * plasma resistivity pre-factor +rhopedn = 0.94 * r/a of density pedestal (`ipedestal==1`) +rhopedt = 0.94 * r/a of temperature pedestal (`ipedestal==1`) +tbeta = 2.0 * temperature profile index beta (`ipedestal==1) +teped = 5.5 * electron temperature of pedestal (keV) (`ipedestal==1; ieped=0; calculated for ieped=1`) +tesep = 0.1 * electron temperature at separatrix (keV) (`ipedestal==1`) calculated if reinke +iprofile = 1 * switch for current profile consistency; +isc = 34 * switch for energy confinement time scaling law (see description in `tauscl`) +ishape = 0 * switch for plasma cross-sectional shape calculation; +kappa = 1.85 * plasma separatrix elongation (calculated if `ishape = 1-5; 7 or 9-10`) +q = 3.5961 * safety factor 'near' plasma edge (`iteration variable 18`) equal to q95 +q0 = 1.0 * safety factor on axis +ralpne = 0.083954 * thermal alpha density/electron density (`iteration variable 109`) +rmajor = 8.0 * plasma major radius (m) (`iteration variable 3`) +i_single_null = 1 * switch for single null / double null plasma; +ssync = 0.6 * synchrotron wall reflectivity factor +te = 12.489 * volume averaged electron temperature (keV) (`iteration variable 4`) +triang = 0.5 * plasma separatrix triangularity (calculated if `ishape = 1; 3-5 or 7`) + +*----------------------Power-----------------------* + + +*------------Primary Pumping Variables-------------* + + +*------------------Process Input-------------------* + + +*------------------Process Output------------------* + + +*-----------------Profiles Module------------------* + + +*-----------------Pulse Variables------------------* + +lpulse = 1 * Switch for reactor model; + +*-----------------Rebco Variables------------------* + + +*------------------Reinke Module-------------------* + + +*-----------------Reinke Variables-----------------* + + +*---------------Resistive Materials----------------* + + +*-------------------Scan Module--------------------* + + +*-----------------Sctfcoil Module------------------* + + +*----------------Startup Variables-----------------* + + +*------------Stellarator Configuration-------------* + + +*----------------Stellarator Module----------------* + + +*--------------Stellarator Variables---------------* + + +*---------------Structure Variables----------------* + + +*-----------------Tfcoil Variables-----------------* + +sig_tf_case_max = 7.5e8 * Allowable maximum shear stress (Tresca criterion) in TF coil case (Pa) +sig_tf_wp_max = 7.5e8 * Allowable maximum shear stress (Tresca criterion) in TF coil conduit (Pa) +casthi = 0.06 * inboard TF coil case plasma side thickness (m) (calculated for stellarators) +casths = 0.05 * inboard TF coil sidewall case thickness (m) (calculated for stellarators) +cpttf = 89795.0 * TF coil current per turn (A); (calculated for stellarators) (calculated for +dhecoil = 0.01 * diameter of central helium channel in TF winding (m) +fcutfsu = 0.84212 * copper fraction of cable conductor (TF coils) +i_tf_sc_mat = 1 * Switch for superconductor material in TF coils; +ripmax = 0.6 * aximum allowable toroidal field ripple amplitude at plasma edge (%) +tdmptf = 18.429 * fast discharge time for TF coil in event of quench (s) (`iteration variable 56`) +n_tf = 16 * Number of TF coils (default = 50 for stellarators); Number of TF coils outer legs for ST +tftmp = 4.75 * peak helium coolant temperature in TF coils and PF coils (K) +thkcas = 0.28216 * inboard TF coil case outer (non-plasma side) thickness (m) (`iteration variable 57`) +dr_tf_wp = 0.50416 * radial thickness of winding pack (m) (`iteration variable 140`) (issue #514) +thwcndut = 0.0080099 * TF coil conduit case thickness (m) (`iteration variable 58`) +tinstf = 0.008 * Thickness of the ground insulation layer surrounding (m) +tmargmin_cs = 1.5 * minimum allowable temperature margin ; CS (K) +tmargmin = 1.5 * minimum allowable temperature margin ; TFC AND CS (K) +vdalw = 9.5837 * max voltage across TF coil during quench (kV) (`iteration variable 52`) +vftf = 0.3 * coolant fraction of TFC 'cable' (`i_tf_sup=1`); or of TFC leg (`i_tf_ssup=0`) + +*-----------------Times Variables------------------* + +pulsetimings = 0 * Switch for pulse timings (if lpulse=1); +tdwell = 1800.0 * time between pulses in a pulsed reactor (s) (`iteration variable 17`) +tramp = 500.0 * initial PF coil charge time (s); if pulsed; = tohs + +*--------------------Utilities---------------------* + + +*-----------------Vacuum Variables-----------------* + + +*--------------Water Usage Variables---------------* + +****************************** +* Modifications for reliability analysis: overwrites any previous values +****************************** +* Once through only +ioptimz = -2 * no optimisation + +fimp(14) = $fimp_14 * W impurity fraction +psepbqarmax = $psepbqarmax * divertor protection limit +triang = $triang * triangularity diff --git a/ra/rms_cons/ra_analysis.ipynb b/ra/rms_cons/ra_analysis.ipynb new file mode 100644 index 0000000..d33c452 --- /dev/null +++ b/ra/rms_cons/ra_analysis.ipynb @@ -0,0 +1,165 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Analysis: reliability analysis using RMS violated inequality constraints" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "import numpy as np\n", + "import pandas as pd\n", + "from infeas import analyse\n", + "import easyvvuq as uq" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Reading in campaign database.\n", + "Campaign read in. Number of samples = 5\n", + "Reading in campaign database.\n", + "Campaign read in. Number of samples = 25\n", + "Reading in campaign database.\n", + "Campaign read in. Number of samples = 125\n", + "Reading in campaign database.\n", + "Campaign read in. Number of samples = 125\n", + "Reading in campaign database.\n", + "Campaign read in. Number of samples = 625\n" + ] + } + ], + "source": [ + "# Read in all campaigns to dict containing campaign object and samples for each\n", + "campaign_names = [\"1p\", \"2p\", \"3p_only\", \"3p_bad\", \"3p_mc\"]\n", + "# Beware campaign name bug: string pattern must match only one campaign\n", + "campaigns = {}\n", + "for campaign_name in campaign_names:\n", + " campaigns[campaign_name] = {}\n", + " # TODO Do we actually ever need samples? Can get back from campaign later anyway\n", + " campaigns[campaign_name][\"campaign\"], campaigns[campaign_name][\"samples\"] = (\n", + " analyse.get_campaign(campaign_name=campaign_name)\n", + " )" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Analysis\n", + "\n", + "### Distribution of violated constraint residuals" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(0.0, 0.24240714428785018)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjcAAAHHCAYAAABDUnkqAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/bCgiHAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB/NklEQVR4nO3deViUZdsG8HMGGBhANpFFRUBFRdzXcDcxxDK1XEoTNLVNy1JL6XXJrLQs09dcynIttfTV9MtyCcV9V1zR1MSVzRWFYZu5vz+QB4YZYFhn4fwdB4fP/twzDzLX3Ne9yIQQAkREREQWQm7sAhARERGVJwY3REREZFEY3BAREZFFYXBDREREFoXBDREREVkUBjdERERkURjcEBERkUVhcENEREQWhcENERERWRQGN2QxPvnkE8hkskq5V7du3dCtWzdpPTo6GjKZDBs2bKiU+w8fPhx+fn6Vcq+CEhMTMWDAAFSvXh0ymQzz5s0zSjnMSVxcHGQyGVasWGHsohBVCQxuyCStWLECMplM+rGzs0PNmjURGhqK//73v3j8+HG53OfOnTv45JNPEBMTUy7XK0+mWrYPPvgA27dvR2RkJFavXo1evXoZu0hkov7880988sknxi4GVUEyzi1FpmjFihUYMWIEPv30U/j7+yMrKwsJCQmIjo7Gzp07UadOHWzZsgXNmjWTzsnOzkZ2djbs7OwMvs/x48fRtm1bLF++HMOHDzf4vMzMTACAQqEAkFNz0717d6xfvx4DBgww+DqlLVtWVhY0Gg1sbW3L5V4l4eXlhZCQEPz888+Vfm9zJYRARkYGbGxsYGVlZeziVJqxY8di4cKF4McMVTZrYxeAqChhYWFo06aNtB4ZGYldu3bhhRdewIsvvojY2FgolUoAgLW1NaytK/ZXOi0tDfb29lJQYyw2NjZGu3dSUhJcXFzK7Xrp6elQKBSQyw2rSM7OzoZGozH6MyiJ3NpHKlxZnqsQAunp6dLfAiKmpcjsPPvss5g6dSquX7+uVXugr83Nzp070alTJ7i4uMDR0RENGzbExx9/DCCntqVt27YAgBEjRkgpsNx2Ed26dUOTJk1w4sQJdOnSBfb29tK5Bdvc5FKr1fj444/h5eUFBwcHvPjii7h586bWMX5+fnprifJfs7iy6Wtzk5qaigkTJsDHxwe2trZo2LAhvv76a51vzTKZDGPHjsXvv/+OJk2awNbWFkFBQdi2bZv+N/yp3FShEAILFy6UypTr33//xcCBA+Hm5gZ7e3s888wz2Lp1q9Y1ctsmrVu3DlOmTEGtWrVgb2+PlJQUvffMbavy9ddfY968eahXrx5sbW1x4cIF6Xn/888/eO211+Ds7IwaNWpg6tSpEELg5s2b6Nu3L5ycnODl5YVvvvlG5/oLFixAUFAQ7O3t4erqijZt2mDNmjVFvg+5srKy4ObmhhEjRujsS0lJgZ2dHSZOnKj1Ogq2udm1axc6d+4MBwcHuLi4oG/fvoiNjTXo/vlpNBrMnz8fTZs2hZ2dHWrUqIFevXrh+PHj0jHZ2dmYOXOm9B76+fnh448/RkZGhta1/Pz88MILL2D//v1o164d7OzsULduXaxatUrn9c+YMQMBAQGws7ND9erV0alTJ+zcuRNAzu/owoULAUArxZz//dD3XA2RW8bt27ejTZs2UCqV+P777wEADx8+xPvvvy/9P6hfvz6+/PJLaDQarWusW7cOrVu3RrVq1eDk5ISmTZti/vz5JXjXyZSx5obM0rBhw/Dxxx9jx44dGD16tN5jzp8/jxdeeAHNmjXDp59+CltbW1y5cgUHDhwAAAQGBuLTTz/FtGnT8MYbb6Bz584AgA4dOkjXuHfvHsLCwvDKK6/gtddeg6enZ5Hl+vzzzyGTyTBp0iQkJSVh3rx5CAkJQUxMTIm+VRpStvyEEHjxxRexe/dujBw5Ei1atMD27dvx4Ycf4vbt2/j222+1jt+/fz82btyId955B9WqVcN///tfvPzyy7hx4waqV6+u9x5dunTB6tWrMWzYMPTs2RPh4eHSvsTERHTo0AFpaWl47733UL16daxcuRIvvvgiNmzYgP79+2tda+bMmVAoFJg4cSIyMjKK/ba+fPlypKen44033oCtrS3c3NykfYMHD0ZgYCBmz56NrVu34rPPPoObmxu+//57PPvss/jyyy/xyy+/YOLEiWjbti26dOkCAFi6dCnee+89DBgwAOPGjUN6ejrOnDmDI0eOYMiQIUWWB8ipPevfvz82btyI77//Xus1/P7778jIyMArr7xS6Pl///03wsLCULduXXzyySdQqVRYsGABOnbsiJMnT5aowfjIkSOxYsUKhIWFYdSoUcjOzsa+fftw+PBhqeZz1KhRWLlyJQYMGIAJEybgyJEjmDVrFmJjY7Fp0yat6125cgUDBgzAyJEjERERgWXLlmH48OFo3bo1goKCAOR8mZg1axZGjRqFdu3aISUlBcePH8fJkyfRs2dPvPnmm7hz5w527tyJ1atX6y13Uc+1OJcuXcKrr76KN998E6NHj0bDhg2RlpaGrl274vbt23jzzTdRp04dHDx4EJGRkYiPj5cav+/cuROvvvoqevTogS+//BIAEBsbiwMHDmDcuHEGl4FMmCAyQcuXLxcAxLFjxwo9xtnZWbRs2VJanz59usj/K/3tt98KACI5ObnQaxw7dkwAEMuXL9fZ17VrVwFALFmyRO++rl27Suu7d+8WAEStWrVESkqKtP23334TAMT8+fOlbb6+viIiIqLYaxZVtoiICOHr6yut//777wKA+Oyzz7SOGzBggJDJZOLKlSvSNgBCoVBobTt9+rQAIBYsWKBzr4IAiDFjxmhte//99wUAsW/fPmnb48ePhb+/v/Dz8xNqtVoIkfc+1a1bV6SlpRV7r2vXrgkAwsnJSSQlJWnty33eb7zxhrQtOztb1K5dW8hkMjF79mxp+4MHD4RSqdR63/v27SuCgoKKLUNRtm/fLgCI//u//9Pa3rt3b1G3bl2d15H/WbZo0UJ4eHiIe/fuSdtOnz4t5HK5CA8PN7gMu3btEgDEe++9p7NPo9EIIYSIiYkRAMSoUaO09k+cOFEAELt27ZK2+fr6CgBi79690rakpCRha2srJkyYIG1r3ry5eP7554ss25gxY4S+j5minqshcsu4bds2re0zZ84UDg4O4p9//tHaPnnyZGFlZSVu3LghhBBi3LhxwsnJSWRnZ5f43mQemJYis+Xo6Fhkr6ncdiGbN2/WqZI2lK2trd60Q2HCw8NRrVo1aX3AgAHw9vbGn3/+War7G+rPP/+ElZUV3nvvPa3tEyZMgBACf/31l9b2kJAQ1KtXT1pv1qwZnJyc8O+//5b6/u3atUOnTp2kbY6OjnjjjTcQFxenk26IiIgoUU3Wyy+/jBo1aujdN2rUKGnZysoKbdq0gRACI0eOlLa7uLigYcOGWq/PxcUFt27dwrFjxwwuR0HPPvss3N3d8euvv0rbHjx4gJ07d2Lw4MGFnhcfH4+YmBgMHz5cq7aiWbNm6NmzZ4l+X/73v/9BJpNh+vTpOvty00C51xs/frzW/gkTJgCATvqwcePGUm0hANSoUUPv+3f+/HlcvnzZ4LIWVNRzLY6/vz9CQ0O1tq1fvx6dO3eGq6sr7t69K/2EhIRArVZj7969UtlTU1OlFBpZHgY3ZLaePHmiFUgUNHjwYHTs2BGjRo2Cp6cnXnnlFfz2228lCnRq1apVogaOAQEBWusymQz169dHXFycwdcojevXr6NmzZo670dgYKC0P786deroXMPV1RUPHjwo9f0bNmyos72w+/v7+5fo+kUdX/C1ODs7w87ODu7u7jrb87++SZMmwdHREe3atUNAQADGjBkjpSwNZW1tjZdffhmbN2+W2q5s3LgRWVlZRQY3ue9HYe/Z3bt3kZqaalAZrl69ipo1axaZ0rl+/Trkcjnq16+vtd3LywsuLi6l+v349NNP8fDhQzRo0ABNmzbFhx9+iDNnzhhU5lwl/T0o7tzLly9j27ZtqFGjhtZPSEgIgJzG8ADwzjvvoEGDBggLC0Pt2rXx+uuvF9vmjMwLgxsyS7du3cKjR490/ljnp1QqsXfvXvz9998YNmwYzpw5g8GDB6Nnz55Qq9UG3aciel8UNtCgoWUqD4V1RxaV1GW3pO9rUcfrey2GvL7AwEBcunQJ69atQ6dOnfC///0PnTp10lsDUpRXXnkFjx8/lmrHfvvtNzRq1AjNmzcv0XUqg6GDXBry/nXp0gVXr17FsmXL0KRJE/z4449o1aoVfvzxR4PLU5b/X/rO1Wg06NmzJ3bu3Kn35+WXXwYAeHh4ICYmBlu2bJHaqoWFhSEiIqLU5SHTwuCGzFJuA8WC1dIFyeVy9OjRA3PnzsWFCxfw+eefY9euXdi9ezcAw//YG6pgFb0QAleuXNFqHOrq6oqHDx/qnFvw23NJyubr64s7d+7opOkuXrwo7a9Ivr6+uHTpks72yrp/aTk4OGDw4MFYvnw5bty4geeffx6ff/450tPTDb5Gly5d4O3tjV9//RV3797Frl27iqy1AfLej8LeM3d3dzg4OBh0/3r16uHOnTu4f/9+kffTaDQ6v5+JiYl4+PBhqZ9Pbm+xtWvX4ubNm2jWrJnWoH2VNWJ4rnr16uHJkycICQnR+5O/RkqhUKBPnz5YtGgRrl69ijfffBOrVq3ClStXKrXMVDEY3JDZ2bVrF2bOnAl/f38MHTq00OP0/bFv0aIFAEgphNwPEH3BRmmsWrVKK8DYsGED4uPjERYWJm2rV68eDh8+LA0ECAB//PGHTpfxkpStd+/eUKvV+O6777S2f/vtt5DJZFr3rwi9e/fG0aNHcejQIWlbamoqfvjhB/j5+aFx48YVev/SuHfvnta6QqFA48aNIYRAVlaWwdeRy+UYMGAA/u///g+rV69GdnZ2scGNt7c3WrRogZUrV2o933PnzmHHjh3o3bu3wfd/+eWXIYTAjBkzdPbl1rTkXq/gVBlz584FADz//PMG3y9XwffP0dER9evX1+paXt7/v4ozaNAgHDp0CNu3b9fZ9/DhQ2RnZwPQLbtcLpcGBC3YNZ7ME7uCk0n766+/cPHiRWRnZyMxMRG7du3Czp074evriy1bthQ5MNqnn36KvXv34vnnn4evry+SkpKwaNEi1K5dW2r4Wq9ePbi4uGDJkiWoVq0aHBwc0L59+1K3BXBzc0OnTp0wYsQIJCYmYt68eahfv75Wd/VRo0Zhw4YN6NWrFwYNGoSrV6/i559/1mrgW9Ky9enTB927d8d//vMfxMXFoXnz5tixYwc2b96M999/X+fa5W3y5MlYu3YtwsLC8N5778HNzQ0rV67EtWvX8L///c/gAfoq03PPPQcvLy907NgRnp6eiI2NxXfffYfnn3++yLZc+gwePBgLFizA9OnT0bRpU6mtUVHmzJmDsLAwBAcHY+TIkVJXcGdn5xJNWdC9e3cMGzYM//3vf3H58mX06tULGo0G+/btQ/fu3TF27Fg0b94cERER+OGHH/Dw4UN07doVR48excqVK9GvXz907969RK8XyGl03K1bN7Ru3Rpubm44fvw4NmzYgLFjx0rHtG7dGgDw3nvvITQ0FFZWVkV2jy+rDz/8EFu2bMELL7wgdV1PTU3F2bNnsWHDBsTFxcHd3R2jRo3C/fv38eyzz6J27dq4fv06FixYgBYtWhj07MgMGK2fFlERcruC5/4oFArh5eUlevbsKebPn6/V3TpXwa7gUVFRom/fvqJmzZpCoVCImjVrildffVWnm+jmzZtF48aNhbW1tVZ33a5duxbaVbiwruBr164VkZGRwsPDQyiVSvH888+L69ev65z/zTffiFq1aglbW1vRsWNHcfz4cZ1rFlW2gl3Bhcjpev3BBx+ImjVrChsbGxEQECDmzJkjdQfOBT1duYUovIt6QYWdf/XqVTFgwADh4uIi7OzsRLt27cQff/yhdUzu+7R+/fpi7yNEXpfhOXPm6OzLfd4Fu/pHREQIBwcHneMLPs/vv/9edOnSRVSvXl3Y2tqKevXqiQ8//FA8evTIoLLlp9FohI+Pj97u+PlfR8Fu/X///bfo2LGjUCqVwsnJSfTp00dcuHChxPfPzs4Wc+bMEY0aNRIKhULUqFFDhIWFiRMnTkjHZGVliRkzZgh/f39hY2MjfHx8RGRkpEhPT9e6lq+vr94u3gV/Pz/77DPRrl074eLiIpRKpWjUqJH4/PPPRWZmpla53n33XVGjRg0hk8mk/59FPVdDFFZGIXL+H0RGRor69esLhUIh3N3dRYcOHcTXX38tlW3Dhg3iueeeEx4eHkKhUIg6deqIN998U8THx5eqPGR6OLcUERERWRTTqysmIiIiKgO2uSEiKkCtViM5ObnIYxwdHeHo6GjRZahsycnJRQ6JoFAoSjRFA1VdTEsRERUQFxdXbKPy6dOnl6jhrzmWobL5+fnpDImQX9euXREdHV15BSKzZdSam71792LOnDk4ceIE4uPjsWnTJvTr16/Ic6KjozF+/HicP38ePj4+mDJlit4ZlomISsvLy6vYofnr1q1r8WWobL/88gtUKlWh+11dXSuxNGTOjBrcpKamonnz5nj99dfx0ksvFXv8tWvX8Pzzz+Ott97CL7/8gqioKIwaNQre3t7FDuZGRGQoOzs7acj+qlyGytaxY0djF4EshMmkpWQyWbE1N5MmTcLWrVtx7tw5adsrr7yChw8fcl4QIiIiAmBmDYoPHTqk800mNDQU77//fqHnZGRkaI04qdFocP/+fVSvXr3ShwYnIiKi0hFC4PHjx6hZs2axA4OaVXCTkJAAT09PrW2enp5ISUmBSqXSO5HarFmz9A5LTkRERObn5s2bqF27dpHHmFVwUxqRkZEYP368tP7o0SPUqVMHN2/ehJOTkxFLRkREJiEzFfimIQAg7d0LaDcnZ460o//pAXtF4R+TQgiosgtvAJ0rPTsdvTflzO+1a+Au2NvYG1Ss+KsP8X8LTht0bC7ves4AAKcaSnQe1AByefllKIQQEEU0+M5Pk56Oqz2fAwAE7NsLub1hr7koKSkp8PHxMWh6FLMKbry8vJCYmKi1LTExEU5OTnprbQDA1tYWtra2OtudnJwY3BAREZBpBdjmBAHWTk6Q2+Z8EDs5ORUa3AghEP5XOGKSYwy6hZXSKu+aT4Mb1ZNM3Dh/H0Kj3fRVCIFdqy4CAJSKnMlHFcrCP64zVdnoOKA+GrTzgr2TwqDylJQQAteHDIXq1CmDz3G0ynvN5RHc5DKkSYlZBTfBwcH4888/tbbt3LkTwcHBRioRERFVRapslcGBTS6fzABsnXseMuR8OCdeSzHovLYv+KPdC6WbzLe8CJWqRIFNLmWrVpAVUvlQkYwa3Dx58gRXrlyR1q9du4aYmBi4ubmhTp06iIyMxO3bt7Fq1SoAwFtvvYXvvvsOH330EV5//XXs2rULv/32G7Zu3Wqsl0BERFXc7oG7obTW/gAXQuDHD/ZpbbPWKJCExzrn2znawMO3YCZBwL12NbTo6QOlY8XUxpRIvo7VAQf2Q25gwCJTKo3Seceowc3x48fRvXt3aT23bUxERARWrFiB+Ph43LhxQ9rv7++PrVu34oMPPsD8+fNRu3Zt/PjjjxzjhoiIKpxGrcG/MXeRlpKBj+PHStt/nngMNhrd5g82yNkWOroJrKz1f8A7uNiiRp1qJt17VwiBuNeGSetypbJc00wVwajBTbdu3VDUMDsrVqzQe86pUlSNlZRarUZWVlaF34cMY2NjA6un+VsiosqUlanGjh/PI+7M3Zx1eQaut/8XAFA9tRasNYXXrNQJckP91h6VUs6KIlQqZMTGAgBsAwONkmYqKbNqc1MZhBBISEjAw4cPjV0UKsDFxQVeXl4m/Q2HiMxbWpZKe1lmhR/e35Oz4enQKtnyTOmYD6xnQtlGieYhdeDkbqdzPTsHmwotb2mVqOdTvuP8fl5tFn+DGdwUkBvYeHh4wN7e3iweoqUTQiAtLQ1JSUkAAG9vbyOXiIgsSWpKBhyeLodtDAXwOQCg229dIZNnAe0LP7fniCCDu3abitL0fJKYyWcig5t81Gq1FNhUr17d2MWhfHK7+iclJcHDw4MpKiIqN79MO4I3SpE5aunRUqchsTkwt55PpcHgJp/cNjb2Jt5QqqrKfS5ZWVkMboiozNJSMnFgw+VC237OFD/AVshhY2uN1mG+OikmpbVxegKVhRBCK81kDj2fSoPBjR7m8vCqGj4XIiovZ6NvYe+6fwAAVjL9wU3oay2KHKHY3OhLR5lDz6fSsJynRkRElI9GI3Dn8kNkpmVrbc9QZUuBDQDY18irCa7vEoDkSith5SqYjjKnNFNJMbghIiKzl5WpRtqjDFw8lICEfx9BJgNuxt6HtSxD7/G5w86EjgqCk2868F3O+oJnv0ObY8crqdSVrMBAfFZubhZbI87gxkLs3bsXc+bMwYkTJxAfH49NmzahX79+xi4WEVGFUmdrcHL7dRz9v2sF9gi85PYxvBUXi77A/1VY0UyKvoH4LDWwAaRe+2TuUlNT0bx5cyxcuNDYRSEiqnAPE9MQezAeS8ZGawU2NrY5KaYeQ3yLD2wK+MfRDUqla7mW01SY40B8ZcGaGwsRFhaGsLCwQvf7+flh5MiRuHDhArZs2QIXFxd8/PHHGDNmTCWWkojIcMf/vIa4s/d0ahiEEHonnew/sRVq1nfJWclMBXblLKa9fxbQMxaNKluFsI29AAB/vbQNAdVqQZWtKdfXYDLypaTMZSC+smBwUwwhBFRZaqPcW2ljVa6/gHPmzMHHH3+MGTNmYPv27Rg3bhwaNGiAnj17lts9iIjKKv7KQ+z++SIeJKQVe2zNABfUDHBB+xfram0XQiD3r2e3TWFQyQtJVDzdrrSvDplcDsDygpuCKSlzGYivLBjcFEOVpUbjaduNcu8Ln4aWazfEjh07YvLkyQCABg0a4MCBA/j2228Z3BCRSXiYmIa1M49Ak63dNfu5kUGwstENTtxrO8LJXX96RZWdDkM7OJvrYHyGqmopKYDBTZUSHByssz5v3jzjFIaIqiwhBO7dTkV2phrqLA32rPsHcisZ7t16onVc8xAftOhRB46uujNuF3VtVbYKqmyVFNz89dI2KO0LH3XeHAfjy2XIHFHmODdUWTG4KYbSxgoXPg012r2JiMydWq3BjXP3cPVUzggylw4nFHl8w/Ze6P5aI721NUURQiD8r3DEJMdAqdHg6NPtSmul2c3/ZIhSzRFVBQIbgMFNsWQymcWMUHn48GGd9cDAQCOVhoiqgrgzd7F10ZlC9zu520GjEajhUw1Nu9aGs6cSTtVLlzZRZasQkxyjs11prTtbtyUo6RxRljxoX0GW8alNePLkCa5cuSKtX7t2DTExMXBzc0OdOnUAAAcOHMBXX32Ffv36YefOnVi/fj22bt1qrCITkQW6fv4eolbGQvG0S/ajZO2USetevrC1t4FCaYWAtp5Q2JXPx1BuOirXXy9tA75tAsAyp24pzRxR5jQ3VFkxuLEQx48fR/fu3aX18ePHAwAiIiKwYsUKAMCECRNw/PhxzJgxA05OTpg7dy5CQ42TciMiy6DRCJzacR1J1x8jU5WNWxcfAAAKtgJp3csX7V6sC7m8/D9c86ejcll0A+EqNEdUaTG4sRDdunUrdGbbXE5OTvjtt98qqUREZOmyMtT4Ydwevfs6vFQfXvWcAQC29tZw83aosHIUTEfl9H6yzFQUULXmiCotBjdERFRiQgidwKbLKw0gkwG1GrrC1avigpmiRA+KhpudG2RZxY+RYwksfY6o0mJwQ0REJXL5eCJ2/HheWvfwrYaBkW2NUhYhBCK2RUjr5tytuzQsfY6o0mJwU0XExcUZuwhEZOayM9VYPukAMlXZWtsHTG5jpBLlpKQu3s+ZQ6qRWyOLbmtDhmNwQ0REhcrOVOPGhfs4+L8rOj2f2vXxR9NutSu05kBoNFCp7he6X5WtglKTM2XCymcX56WjMqtGWor0Y3BDRER6Jd94jN++OKaz3dbeGsO/7AjrCh5oVGg0uDy3Lho8eVDoMfaANFgf5tSr0PKQ+WBwQ0REekWtitVa92/ujk4DAwqdz6m8qVT3iwxsDOLzjN4ZwcmyMbghIiIAQHpqFn6asA+yp2PRCE3O8BK1GrrgxXEtK2SMGkPdH3sUdsqi5oey058es7G3mCkHcueR0hQzlxQxuCEiMmtqtQb3bj2B0Bh+TtL1FJyNvqUzd9PdmzkTV+YGNblChgcZNbABADtlddg7uBu1DMZUqnmkqjAGN0REZmzJmOhyv6aHnxN6v90UQE77mopuW0PF0zePFAfvKxyDGyIiM7Xvt3+01qtVN3xU3qx0NVr09IG7TzWt7XYONvDwrcaxU0xNvhHoc+eRqkpzRZUUgxsLMWvWLGzcuBEXL16EUqlEhw4d8OWXX6Jhw4bGLhoRlaPM9GwkX38MAeDMrlvS9ncWd7eoDzohBN7YORo/G7sgJkAIgbjXhknrnEeqeAxuLMSePXswZswYtG3bFtnZ2fj444/x3HPP4cKFC3BwMM4w6ERUvu5cfoBN3+i2uRgwqY1FBTZAzvg1/zzIq5my5LmiiiNUKmTE5vRcsw0MZCrKAAxuLMS2bdu01lesWAEPDw+cOHECXbp0AQDIZDIsWrQIW7ZsQXR0NLy9vfHVV19hwIABxigyEZXAkwfpWoGNja0VHN3s4OFbDZ7+TkYsWfkTQkCVrd0jyNKCt4Jye0Lpk793lN/Pqy3+vSgPDG6KIwRgrAnYytCF8dGjRwAANzc3re1Tp07F7NmzMX/+fKxevRqvvPIKzp49i8DAwDIXl4jKhxACh3+/ivP77sBakdOYN/VhhrT/2fBGCOxQ01jFq1BCCIT/FY6Y5BhUlfqJEvWEYmBjEAY3xclKA74w0h+Rj+8AipKnlDQaDd5//3107NgRTZo00do3cOBAjBo1CgAwc+ZM7Ny5EwsWLMCiRYvKpchEZJjM9GxkpGnP0XRu723cvfkEt/95AHVWTt/ugscEda5psYENkJOOikmOMXYxKpW+nlD6sHeU4RjcWKAxY8bg3Llz2L9/v86+4OBgnfWYmJhKKhkRAcCtSw+w+VvDxit5fkwzODjbAgBsHazhVN28P9z0pZzyy7/vr5e2Ad82KfRYi6GnJ5Q+7B1lOAY3xbGxz6lBMda9S2js2LH4448/sHfvXtSuXbsCCkVEJaXO1mBl5AFo1DkfYvlrY6ys5TrHdh/WCFbWcvg2qQ47B5tKLWtFyp9yMkRVmOGbPaEqBoOb4shkpUoNVTYhBN59911s2rQJ0dHR8Pf313vc4cOHER4errXesmXLyiomUZUihMCjJBXWzjwCTbbQ2d9taEMEda5lhJJVrtyZvVXZKlxKPGlQW5pmNZpDWZJhl82USEtjT6gKwODGQowZMwZr1qzB5s2bUa1aNSQkJAAAnJ2docz3n2X9+vVo06YNOnXqhF9++QVHjx7FTz/9ZKxiE1m06DWXcGGfds3vkE/aA8gZLE9ZTWGMYlWq/DN7a83gXZzrt4DjWyuwZMZXsNaGPaHKD4MbC7F48WIAQLdu3bS2L1++HMOHD5fWZ8yYgXXr1uGdd96Bt7c31q5di8aNG1diSYks24OEVMRffYQzu27h3u0n0nYbWysM/7IjFHZV688uZ/YunM74NUxHlZuq9b/MggmhW+WtT82aNbFjx44KLg1R1aPRCNy7/QS/fX5MZ99rM4PhXIPphtyZvQudwbswFjSzd2FYa1O+GNwQEZWC0AhohMDDhDSc3XMb5/fe1tpfq6Er7Bys0eWVhrB3svz0kyGq+szeRWJgU64Y3BARldCdKw+x6euThe5v0qUWug7hvG5ExsLgpgoxNHVFRHmEELh6MhkHNlyGjW3OaMEPEnRHLfdv7o66LWqgQXsvyOVV81u4vjFsVNkqsCVJIfg3ucIwuCEiykedpUF2llpa/+2LY0i5m6732BY966BNmC+sbOSwtrGqrCKapMLGsFFqNIb3kKpCCvaUovLF4IaIqrz0J1m4dCQByTce49KRhEKPax3mC5/AnPna7BxtUL2mY2UV0eQZMm1CVZ7ZuyDO9F2xGNwQUZWzf8NlXDmeBNnTwYGf3M8o+gQAb8zvKqWlKE9uKip/Oip6UHTe6MKZacCcegAsf2bvEsmXkmJPqfLH4IaIqgwhBPb9ehlno2/p3a+ws0L9Np5o3Kkm3H3yamXkchk/fPQoNBVlrYR97rg0bFeiQyclxd+tcsfghoiqjIKBTf+JrWBtk1N9o1Baw8WDTV9LQl8qqqVHyyoxJ1RZMCVV8RjcEJFF27v2Ei4fTwIApKdmSdtfmdoO1WuxzUxJFOwNpS8VpbTmzNUlwZRUxWBwQ5XGz88P77//Pt5//31jF4WqiKwMNc7uua2z/aWJrRjYlFBxM3prpaLIcAxsKgSDGwuxePFiLF68GHFxcQCAoKAgTJs2DWFhYcYtGFEle5Schgv77yAzXY1z+QKbQR+3hZWNHPZOCtg52BixhOapqN5QTEWRqWFwYyFq166N2bNnIyAgAEIIrFy5En379sWpU6cQFBRk7OIRVYqDG6/g1I4bOtvrtfJAjTrVjFAiy1AwHaXVG0oIKIWALEt3YEMAOb2lqhghBIRKVeh+TRH7qHwwuLEQffr00Vr//PPPsXjxYhw+fBhBQUGQyWRYtGgRtmzZgujoaHh7e+Orr77CgAEDDLr+2bNnMW7cOBw6dAj29vZ4+eWXMXfuXDg65lTtDx8+HA8fPkSnTp3wzTffIDMzE6+88grmzZsHGxvdb8mvv/46kpKS8Mcff0jbsrKyUKtWLcyaNQsjR44sw7tBVY3QCGz/8RyunkyWttUMcIFXXWf4BLqidiM3I5bOvOlLR0kpKCGAZaHAzSPGK6CJEULg+pChUJ06ZeyiVGkMboqhbzjxylLahnlqtRrr169HamoqgoODpe1Tp07F7NmzMX/+fKxevRqvvPIKzp49i8DAwCKvl5qaitDQUAQHB+PYsWNISkrCqFGjMHbsWKxYsUI6bvfu3fD29sbu3btx5coVDB48GC1atMDo0aN1rjlq1Ch06dIF8fHx8Pb2BgD88ccfSEtLw+DBg0v8mqlqEkLgzuWH+H2u9gcJGwuXn4LpKK0UVFaa4YGNzzM5s3tbOKFSGRzYKFu1Yk+pCsLgphiqbBXar2lvlHsfGXKkRA30zp49i+DgYKSnp8PR0RGbNm1C48aNpf0DBw7EqFGjAAAzZ87Ezp07sWDBAixatKjI665Zswbp6elYtWoVHBwcAADfffcd+vTpgy+//BKenp4AAFdXV3z33XewsrJCo0aN8PzzzyMqKkpvcNOhQwc0bNgQq1evxkcffQQAWL58OQYOHCjVBhEVFHf2Lh7fy5kKIel6Ci4e0h1NOGJWRzi62lZ20cxeYV/kCqaj3Ozc9H/pmngFUBTx98rGvmo0ns03rk/Agf2QFxG8yJTsWVZRGNxYkIYNGyImJgaPHj3Chg0bEBERgT179kgBTv5anNz1mJiYYq8bGxuL5s2bS4ENAHTs2BEajQaXLl2SgpugoCBYWeWN4Ort7Y2zZ88Wet1Ro0bhhx9+wEcffYTExET89ddf2LVrV0leMlUR2Zlq/DhhH9RZmkKPCe5fDy1CfCC3kldiySxDcT2hchVZm6ywBxQO+vdVEQUH55MrlZDbW35tlSlicFMMpbUSR4YYJ59c0t4HCoUC9evXBwC0bt0ax44dw/z58/H9999XRPF0FGxbI5PJoNEU/mEUHh6OyZMn49ChQzh48CD8/f3RuXPnii4mmaFtS89pBTb1WnkAyKkIaNKlFrzqOcPKmkFNaRkyLxR7RBWPg/OZDgY3xZDJZGY7doNGo0FGRt6cOYcPH0Z4eLjWesuWLYu9TmBgIFasWIHU1FSp9ubAgQOQy+Vo2LBhqctXvXp19OvXD8uXL8ehQ4cwYsSIUl+LLE92phr/HE3E1ZNJuHHhvrT9zf92hbWCczyVhqGpJ31BDAfnK5oQQqsXFAfnMy4GNxYiMjISYWFhqFOnDh4/fow1a9YgOjoa27dvl45Zv3492rRpg06dOuGXX37B0aNH8dNPPxV77aFDh2L69OmIiIjAJ598guTkZLz77rsYNmyYlJIqrVGjRuGFF16AWq1GREREma5FluHcnls4tjUOaSmZOvv6T2zFwKaUSpJ6MtcvdMait4cUAxujYnBjIZKSkhAeHo74+Hg4OzujWbNm2L59O3r27CkdM2PGDKxbtw7vvPMOvL29sXbtWq0Gx4Wxt7fH9u3bMW7cOLRt21arK3hZhYSEwNvbG0FBQahZs2aZr0fmSQiRE8wIYM/af3T2B3WuiRYhdeDiyQ/d0mLqqeIU7CHFXlDGx+DGQhhSA1OzZk3s2LGjVNdv2rRpkY1983cJzzVv3jyt9dzRk/NLTU3FgwcPOK5NFffHd6dx4/x9rW3PjQyCq7c9qtdyZPW+HiUdpoKpp8oRcGA/rNwK6VFGlYbBDRmFRqPB3bt38c0338DFxQUvvviisYtElUyjEbjzzwMc/zMOt/95qLWvdiNXBLQtW8rTkhmaYioMU08VR87u3SaBwQ3hiy++wBdffKF3X+fOnfHXX3+V+z1v3LgBf39/1K5dGytWrIC1NX8Vq5L01CycjrqJ43/GaW1/a0E3WNmw11NxDEkxFYapJ6oK+IlSRYh8A0sV9NZbb2HQoEF69ykrKG/s5+dXZJnIct299RjrZx2HRp33/L3rOyPszaYMbPIpKu1kSIqpMEw9VQD+LTM5Rg9uFi5ciDlz5iAhIQHNmzfHggUL0K5du0KPnzdvHhYvXowbN27A3d0dAwYMwKxZs2BnZ1eJpbYsbm5ucHPj3DtUMbIy1Lh+7h7UWWpEr/0H2RlqaZ/SSYEe4YHwbVLdiCU0PSVJOzHFZFwFB+4j02DU4ObXX3/F+PHjsWTJErRv3x7z5s1DaGgoLl26BA8PD53j16xZg8mTJ2PZsmXo0KED/vnnHwwfPhwymaxceu4QUfnSqDX4Ydwevfvav1gXbXr7VW6BzIShaSemmIyPA/eZJqMGN3PnzsXo0aOlwduWLFmCrVu3YtmyZZg8ebLO8QcPHkTHjh0xZMgQADmpjVdffRVHjnBGWqJyJwSQlZaTHili2gN90p9k4eye2zgTfRN4mgERADwb2MPB1RbNuvvA3kmBuw8Sy7/cFiA9Ox122Tnj+Wx6cTPsrPXXTCut7aBKfVyZRdOWmQaIp/N4ZaoBZBuvLOUkLVNd/EFPceA+02W04CYzMxMnTpxAZGSktE0ulyMkJASHDh3Se06HDh3w888/4+jRo2jXrh3+/fdf/Pnnnxg2rPAqwYyMDK1RelNSUsrvRRBZKiGAZaEQN45gQOZ0nBClHInaucB6YlrOz8UHZS6i5fscANDpm3NGLkdxluf889k+4xajknHgPtNmtODm7t27UKvVOiPcenp64uLFi3rPGTJkCO7evYtOnTpBCIHs7Gy89dZb+Pjjjwu9z6xZszBjxoxyLTuRxctKA24egQq2pQ9siMxYG19XKG0KHw2bA/eZNqM3KC6J6OhofPHFF1i0aBHat2+PK1euYNy4cZg5cyamTp2q95zIyEiMHz9eWk9JSYGPj09lFZnIYhz/qAPsi5j6YPuP53HrUs5AfF2HNESdRm5QKK0hhMCD9Ifov6UvgKLTLKRNaW1nHmkOG6XF1VoobawMfu85cJ/pMVpw4+7uDisrKyQmaufcExMT4eXlpfecqVOnYtiwYRg1ahSAnFFzU1NT8cYbb+A///kP5HLdbqS2trawtbUt/xdQhcTFxcHf3x+nTp1CixYtyvXaw4cPx8OHD/H777+X63Wp/Nk7VoO9ovA/GXcuqiCHEo6utmjWOWd2eq1eP09PdXOpwd49ZFE4cJ/pMdqgEgqFAq1bt0ZUVJS0TaPRICoqCsHBwXrPSUtL0wlgrKxyvklW9TFTFi9ejGbNmsHJyQlOTk4IDg6ukMH3iAoSQmDHj3ntQl76sLW0XLDXD3v3EFFlMGpaavz48YiIiECbNm3Qrl07zJs3D6mpqVLvqfDwcNSqVQuzZs0CAPTp0wdz585Fy5YtpbTU1KlT0adPHynIqapq166N2bNnIyAgAEIIrFy5En379sWpU6cQFBRk7OKRBYvZeROXjydJ6w4uOTWlBQehix4UDTc7Vt0TUcUz6nCggwcPxtdff41p06ahRYsWiImJwbZt26RGxjdu3EB8fLx0/JQpUzBhwgRMmTIFjRs3xsiRIxEaGorvv//eWC/BZPTp0we9e/dGQEAAGjRogM8//xyOjo44fPgwAEAmk2Hx4sUICwuDUqlE3bp1sWHDhhLd4+LFi+jQoQPs7OzQpEkT7NmTN36JWq3GyJEj4e/vD6VSiYYNG2L+/Pla56vVaowfPx4uLi6oXr06Pvrooypf42YJDm68Ii2//nUnyOUyKR3V7bdu0j6OjEtElcXoDYrHjh2LsWPH6t0XHR2ttW5tbY3p06dj+vTplVCyHEIICJXhM++WJ1kp87hqtRrr169HamqqVopv6tSpmD17NubPn4/Vq1fjlVdewdmzZxEYGGjQdT/88EPMmzcPjRs3xty5c9GnTx9cu3YN1atXh0ajQe3atbF+/XpUr14dBw8exBtvvAFvb29paodvvvkGK1aswLJlyxAYGIhvvvkGmzZtwrPPPlvi10jGl/owA9vzpaM6DQyA0lEBgOkoIjIuowc3pk6oVLjUqnXxB1aAhidPQGZveMPLs2fPIjg4GOnp6XB0dMSmTZvQuHFjaf/AgQOlxtgzZ87Ezp07sWDBAixatMig648dOxYvv/wygJw2Ptu2bcNPP/2Ejz76CDY2Nlpd7v39/XHo0CH89ttvUnAzb948REZG4qWXXgKQM2jj9u3bDX59ZBru3X6Co/93Df/GJEvbBAT8g12RlpUGQHfuI6ajyBwV9eVWY6QvvWQYBjcWpGHDhoiJicGjR4+wYcMGREREYM+ePVKAU7ChdnBwMGJiYgy+fv7zra2t0aZNG8Q+HXYcyJknbNmyZbhx4wZUKhUyMzOl3lWPHj1CfHw82rdvr3MNpqbMh0YjsG7mUa1tbrUd8EeLBfh+/ft6z2E6isyR3kH6yGwwuCmGTKlEw5MnjHbvklAoFKhfP6cLbuvWrXHs2DHMnz+/UtokrVu3DhMnTsQ333yD4OBgVKtWDXPmzOHUGBbk+rl72PXDeWndw7caug9rBHtPK3yx5rTec5iOInNVcJC+wnDwPtPE4KYYMpmsRKkhU6LRaLSmnjh8+DDCw8O11lu2bGnw9Q4fPowuXboAALKzs3HixAmpvdSBAwfQoUMHvPPOO9LxV69elZadnZ3h7e2NI0eO6FyjVatWpXuBVKm2/XAOCuTVwLz4fkvYKq2lVBSQk4LKH8yw1oYsQcCB/ZAXEsCUtm0kVSwGNxYiMjISYWFhqFOnDh4/fow1a9YgOjpaq03L+vXr0aZNG3Tq1Am//PILjh49ip9++sngeyxcuBABAQEIDAzEt99+iwcPHuD1118HAAQEBGDVqlXYvn07/P39sXr1ahw7dgz+/v7S+ePGjZO6qzdq1Ahz587Fw4cPy+09oMrxTL+6aBXqC5ksp1dUxLYIaZ/SWskB+sjiyJVKyM30S25VxeDGQiQlJSE8PBzx8fFwdnZGs2bNsH37dvTs2VM6ZsaMGVi3bh3eeecdeHt7Y+3atVoNjosze/ZszJ49GzExMahfvz62bNkCd3d3AMCbb76JU6dOYfDgwZDJZHj11VfxzjvvaA0kOGHCBMTHxyMiIgJyuRyvv/46+vfvj0ePHpXfG0EV6rlRQQhokzcfnCpbhYv3c+aCa+TWiCkoIjIJMlHFWnOmpKTA2dkZjx49gpOTk9a+9PR0XLt2Df7+/rCzs6y5b2QyGTZt2oR+/foZuyilZsnPxyiEyJkgU5/MNODr+kgTtmickTPr87iHdvhgSY98pwvcT78vjWVzZMgR1tqQxdCkpuJS6zYAcnqusubG+Ir6/C6INTdEVZEQwLJQ4KbhDb6bPZs34azWnFFEFkYIgbjXhhm7GFQGRh2hmEzDF198AUdHR70/YWFhxi4eVYSsNIMCm3vyvLRli5C84IaD9JElEyoVMp4Oc2EbGMjeUGaINTdVRFHZx7feeksaaK8gJf9TW76JVwCFbpV7dpYaGyYcBVxyetwpHW30ns5B+siS+f28mr/bZojBDcHNzQ1ubm7GLgYZi8IeUDhobUq5q8LqKUcA6P5R19dDin/8yWLxd9ssMS1FRFqEEFg95VCh+9lDiohMHYMbIpIIIXDj/H1pvWE7T619aVlpWvNGrey1krU2ZHmqVidii8S0FBFJbl64jz++y5tKoeuQhsAn1wEAo3eMxtn7xpmKhKiysKeUZWDNDRFJ/m9BXmDTaVAAZPK8Wpkzd89oHcseUmSJ2FPKMrDmhogAaPeoC+pSC82f9UFaZrbOcbnzR7EhMVk69pQyXwxuiAgAcOyPa9JymzBfAPqHEOD8UVRlMLAxW0xLWYjFixejWbNmcHJygpOTE4KDg7XmdSIqiupJJo5tjZPWHV1zprdQZadrHcdUFBGZA9bcWIjatWtLM24LIbBy5Ur07dsXp06dQlBQkLGLRybu4sEEafnlSa0B5NTapOfrGbXtpW2o5VSD1fRk2dhTyiKw5sZC9OnTB71790ZAQAAaNGiAzz//HI6Ojjh8+DCAnIkzFy9ejLCwMCiVStStWxcbNmww6NpxcXGQyWT47bff0LlzZyiVSrRt2xb//PMPjh07hjZt2khTNSQnJ2udu2zZMgQFBcHW1hbe3t4YO3Zsub92Kpt7d1JxcOMVAIC9swJe/s7S3FG9NvaSjrNjGxuycOwpZTkY3BRDCIGsDLVRfko7Ybtarca6deuQmpqK4OBgafvUqVPx8ssv4/Tp0xg6dCheeeUVxD7tFWCI6dOnY8qUKTh58iSsra0xZMgQfPTRR5g/fz727duHK1euYNq0adLxixcvxpgxY/DGG2/g7Nmz2LJlC+rXr1+q10QV5/Dmq9Jyq9CctjYF544CAKU1Z2Iny8aeUpaDaaliZGdq8MO4PUa59xvzu8LG1srg48+ePYvg4GCkp6fD0dERmzZtQuPGeRMfDhw4EKNGjQIAzJw5Ezt37sSCBQuwaNEig64/ceJEhIaGAgDGjRuHV199FVFRUejYsSMAYOTIkVixYoV0/GeffYYJEyZg3Lhx0ra2bdsa/Hqocty++ACAHWo1dEHzfDN/F8RaG7J4+b5QsqeUeWPNjQVp2LAhYmJicOTIEbz99tuIiIjAhQsXpP35a3Fy10tSc9OsWTNp2dMzZ+Tapk2bam1LSkoCACQlJeHOnTvo0aNHqV4LVZ7cP+cte/oatRxExqSTkmJgY9ZYc1MMa4Ucb8zvarR7l4RCoZDSPq1bt8axY8cwf/58fP/99+VSHhubvFmhc7/RFNym0WgAcDZxc+Rd39nYRSAyGqakLAtrboohk8lgY2tllJ+yVolqNBpkZGRI67mNi/OvBwYGlukehalWrRr8/PwQFRVVIden8qew43cdqnqEENCkpUGjyusZyJSU+eNfMwsRGRmJsLAw1KlTB48fP8aaNWsQHR2N7du3S8esX78ebdq0QadOnfDLL7/g6NGj+OmnnyqsTJ988gneeusteHh4ICwsDI8fP8aBAwfw7rvvVtg9qXQ6DmBDb6p6hBC4PmQoVKdOae9gYGP2GNxYiKSkJISHhyM+Ph7Ozs5o1qwZtm/fjp49e0rHzJgxA+vWrcM777wDb29vrF27VqvBcXmLiIhAeno6vv32W0ycOBHu7u4YMGBAhd2PDJepyobi6bJXXSe0CKlj1PIQGYNQqXQCG2WrVkxJWQAGNxbCkBqYmjVrYseOHSW+tp+fn0639G7duulsGz58OIYPH6617c0338Sbb75Z4ntSxcrMUEvBzYvvtTBmUYgqlRAC4mkKKn8qKuDAfsiVSsiUHM/JEjC4IaqCjmz+F7n92PiHnKqKQtNQAORKJeT2nDPNUrBBMeGLL76Ao6Oj3p+wsDBjF4/KmUYjcOVkks52IQTSstKQlpUGVb5pF4gshUhL0xvYMBVleVhzU0UUNdrxW2+9hUGDBundxy7dluferSc623KnWyg4KjGRpSg4jk1uGgoAU1EWiMENwc3NDW5ubsYuBlWSa6eTdbbpm24BAJrXaI4DlyqhUEQVrOA4NlZubgxoLBiDG6IqRp2t0VoXQkClTpfWowdFQ2md841WaGwQtL/kjdCJTBnHsbF8DG70yB1ll0wLn0vZCSFwcvsNWOf7uz56x2gcuX9OWldaK2Fvk9OwMi0zu7KLSFTxGNhYPAY3+SgUCsjlcty5cwc1atSAQqFgdG8ChBDIzMxEcnIy5HI5FApF8SeRXvFXHulsO3P3DCDP6VvQ0qOlVGtDRGSuGNzkI5fL4e/vj/j4eNy5c8fYxaEC7O3tUadOHcjl7ORXYkIAWWk4s+MSrGXpsJGl6xwSPSgabnZsh0CWRwihNaYNWT4GNwUoFArUqVMH2dnZUKvVxi4OPWVlZQVra2t+8JaGEMCyUODmEfQCAE/9hymt2WOELE9RY9uQ5WJwo4dMJoONjY3WjNdEZisrDbh5RO+uk7a2UMlkaOTWiOkoskgFp1jgmDZVA4MboipkWdJyNOhYF8/0q4tMZCJifTdAJsPKXitZa0OWKd8YXwEH9rMLeBXB4IaoCskSdug4pDkAIOKPQew1Qhat4MB9cg7WV2WwZSaRhYs7e1dart3IFTKZDKpsFS7evwgATEmRxSo4cB/TUVUHgxsiC3ft7D1pucsrDXT2MyVFlqhgDykO3Fe1MLghsnDXYvKmW6jmamfEkhBVjtweUpc7dsrbyMCmSmFwQ2TBnjxIR1YGhzSgqoU9pIgNiokslFqtwcrIg1pTLRBVNewhVTWx5obIQi0ZE613uxACEdsiKrcwREbCHlJVE4MbIgu0+5eLhe5jTykisnQMbogs0IV9eXOjjZrbWVoWQkCVndeDhD2lyCLlG7iPqia2uSGyMPFXHkrL/Se2gpVV3neY0TtG48j9c0YoFVHlKDhwH1VNrLkhsjDRay5Jy+61HbX2nbl7Rlpu6dGSKSmyOBy4jwDW3BBZFiHg4iaQEp+OBm09oZBnAJlpOodFD4qGmx17kJD5E0JA5BusjwP3EcDghshyCAGxLBRhd48AngBuAPhC/6FKa/YgIfOXO1hf/jFttPB3vMpiWorIUmSlQXbzSKG71bXbQsU/9mRBCg7Wlx8H7qvaWHNDZAFuxt7Hv8euo+vT9WVJyzFi7nOQyfOCmQwAWPuMMYpHVO4Kzh0VcGA/5PmCGRnHt6nSGNwQmTl1lgZ/LjoDZKehq2fOtldmdofMTrsxMbJ0294QmSN96Si5Ugm5vb0RS0WmhGkpIjMXeyge2VkarW321RRGKg1RxePcUVQc1twQmTGhEdiTr+s3UVXDuaNIH9bcEJkpIQS2/DdGWu/zbnPjFYbISDh3FOnDmhsiM3T93D388d1prW0167sYpzBERCaGNTdEZqhgYPPazKJ7QRWcU4rIrHHuKCoGa26IzMy1M3el5Wbda6N937pQ2FkDmal6jxdCIPyvcMQkx1RSCYkqDueOIkMwuCEyMxcPxkvLnQc3KPZ4VbZKK7DhnFJkzjh3FBmCwQ2RmUm6kQIAqNfKo8Tnck4pMnv5UlKcO4oKY/Q2NwsXLoSfnx/s7OzQvn17HD16tMjjHz58iDFjxsDb2xu2trZo0KAB/vzzz0oqLZHxpD/JwqqPD+LJ/QwAgIdftWLPEUIgYluEtM45pcic6aSk+LtMhTBqzc2vv/6K8ePHY8mSJWjfvj3mzZuH0NBQXLp0CR4eut9KMzMz0bNnT3h4eGDDhg2oVasWrl+/DhcXl8ovPFEl+2niPq31gDaexZ6jylbh4v2LAIBGbo2YjiKzxpQUGcqowc3cuXMxevRojBgxAgCwZMkSbN26FcuWLcPkyZN1jl+2bBnu37+PgwcPwsbGBgDg5+dXmUUmqhRCCKiy1NK6RiOQiZzqeBtbK7w28xlY2VkjLTM776SMbEDY5ixnqgFkIy1LDaHJ+b+y+NllWtc0RFpmyY4nqixMSVFRZEIYp09dZmYm7O3tsWHDBvTr10/aHhERgYcPH2Lz5s065/Tu3Rtubm6wt7fH5s2bUaNGDQwZMgSTJk2ClZWV3vtkZGQgIyNDWk9JSYGPjw8ePXoEJyencn9dRGUlhMCAJYdw4voDYxdFy4VPQ2GvYDM9Mh5NWhoutWoNAGh48gTnkqpiUlJS4OzsbNDnt9Ha3Ny9exdqtRqentpV656enkhISNB7zr///osNGzZArVbjzz//xNSpU/HNN9/gs88+K/Q+s2bNgrOzs/Tj4+NTrq+DqLypstQmF9i08XWF0kb/FwgiIlNjVl/DNBoNPDw88MMPP8DKygqtW7fG7du3MWfOHEyfPl3vOZGRkRg/fry0nltzQ2QOjk8JgdJGjh/G7c3ZIAPenN9V98DMNGBO/ZzliZcBWwekZanQ7becY6MH7YG9TenbJyhtrJgCIOPj4H1kIKMFN+7u7rCyskJiYqLW9sTERHh5eek9x9vbGzY2NlopqMDAQCQkJCAzMxMKhe5MyLa2trC1tS3fwhNVEnuFFW6fuQcFcgKLQZFtC0kNWQGyp+lXW2tAYQ3IrCCTZ0nXsbcxq+8yRFo4eB+VhNHSUgqFAq1bt0ZUVJS0TaPRICoqCsHBwXrP6dixI65cuQKNRiNt++eff+Dt7a03sCEyd6rHWdjx43lpvUad4rt/E1ki9pSikjDqODfjx4/H0qVLsXLlSsTGxuLtt99Gamqq1HsqPDwckZGR0vFvv/027t+/j3HjxuGff/7B1q1b8cUXX2DMmDHGeglEFWrVfw5Ky8+NCjJiSYiMjIP3UQkYtZ568ODBSE5OxrRp05CQkIAWLVpg27ZtUiPjGzduQC7Pi798fHywfft2fPDBB2jWrBlq1aqFcePGYdKkScZ6CUSVwquuk0Hj2uQqOHgfkTnj4H1UUkZPwo8dOxZjx47Vuy86OlpnW3BwMA4fPlzBpSIyLS9NbF2i4zl4H1kSpqSopIwe3BCRtoJDT3UaGACZ3PBvqkIIqNTp0vrKXitZhU9mRwgBoVIBADRP/wWYkiLDMLghMiHpqVn4YcJewCVvW/02JZsgc/SO0Thy/1z5FoyoEgkhcH3IUKhOndLdycCGDMDghsiE/DRBe/6o0d92hoOyZD0Bz9w9Azxtq9bSoyVTUmR2hEqlN7BRtmrFlBQZhMENkYl4lKzS2Sa3Kn2HxuhB0XCzc2MVPpkVIYRWGirgwH7InwY0MiVntSfDMLghMgFH/+9fHNsaV67XVFrzg4DMi750lFyp5BxSVGIMboiMSJ2lwbKP9iNTlTe7dzVXO0CkF3FW8dhDisxRwXQU01BUWgxuiIxEna3BknejtbZ1H9YI3k3c8NmsKP0nCQFkpeluz9Texh5SZJby9RQMOLAfVm5Mq1LpMLghMpIDG65orb/x366wUVghLTNb/wlCAMtCgZtHKqF0RJWr4EB9cravoTJgcENkJGejb0nL7yzuXvwf8qy0YgObk7a28K0eyJQUmR0O1EflicENkRE8vp/XpibszaYl/4Y68QqgyGtkmZalQrffukIlk+FI2Cp+4yWzxoH6qKwY3BBVsuwsNVZ9nDchpn8L95JfRGEPKBzy1mUyqORGnQeXqPwwsKEy4l9Dokr29/JYabluyxr8hkpEVM4Y3BBVItXjTFw9mSSt9xrdxIilITINBQfuIyorpqWIKlH81UfS8uAp7Uo0IWZhhBCI2BZR5usQGUOR80gRlRJrbogq0V9LzgIAatSpBvfajuVyTVW2ChfvXwTAwfvI/HDgPqoIrLkhqiTpqVnSspN7+fzxFkJAlZ1Xnc/B+8icceA+Ki8MbogqybYfzknLIcMDy3w9IQTC/wpHTHJMma9FZAo4cB+VF6aliCqBEAK3Lz0AALh42sNaYVXma6qyVVqBTUuPlkxJERGhhMFNeHg4Hj9+LK2fPn0aWVlZRZxBRACQkK8hcZ93m5f79aMHRTMlRUT0VImCm19++QWqfN31OnfujJs3b5Z7oYgsiepJJjZ+fVJar+ZmV+ZrFuwhpbRmdT4RUa4SBTci34yt+taJSJsQAssm7pfWW4T4lEv3b1V2OntIEREVgg2KiSqI0Agc+F/ezN81A1zQ4eX6pbyYADLT9O5iOorMkRACQqXi4H1UIUoc3Fy4cAEJCQkAcn45L168iCdPnmgd06xZs/IpHZEZO7HtOk5H5aVt+09oVboLCQEsC9WaEfyNnaPLWjwio+HAfVTRShzc9OjRQysd9cILLwAAZDIZhBCQyWRQq9XlV0IiM6TO1uDIln+l9ZcmljKwAYCsNK3ARl27LU4/vAzIZExJkVkqOHAfwMH7qHyVKLi5du1aRZWDyKJcPp4oLXceHADv+i7lc+GJV5ChsAfWPgOAKSkyfwEH9ueMb8MxbqgclSi48fX1rahyEFkMIQSiVuTN/N20W+3yu7jCHuAHAFkQuVIJub29sYtBFqZUDYovX76MzZs3Iy4uDjKZDP7+/ujXrx/q1q1b3uUjMjt3b+W1QQvuX69cv40KIaBSp5fb9YiMgj1tqYKVOLiZNWsWpk2bBo1GAw8PDwghkJycjMmTJ+OLL77AxIkTK6KcRGbh4uF4rVqblj3rlOv1R+8YjSP3zxV/IJGJEkIg7rVhxi4GWbgSjXOze/duTJkyBf/5z39w9+5dxMfHIyEhQQpuJk+ejL1791ZUWYlMWlaGWiuwad3Lt1zGtMnvzN0z0jKnWyBzJFQqZMTm/D+xDQxkI2KqECWquVmyZAlGjRqFTz75RGu7m5sbPv30UyQkJGDx4sXo0qVLeZaRyCysnnpIWg4Z0RgN23tV2L2iB0XDzY6zJ5Ppyx3PJlf+cW38fl7N32GqECUKbo4ePYrVq1cXun/YsGEIDw8vc6GIzEmGKhu/fnYUqpRMaVtFBjYAp1sg81DseDb8HaYKUqK0VGJiIvz8/Ard7+/vLw3wR1RV/Pb5UTy+l9fId+Q3nY1YGiLToW88m1wc14YqUolqbtLT06FQKArdb2Njg8zMzEL3E1ma2IN3kHI3X2DzdWfYOdgYsUREpil3PJtcHNeGKlKJe0v9+OOPcHR01Lvv8ePHZS4QkblIvJaCXasuSuuvzQyGnSMDGyJ9OJ4NVaYSBTd16tTB0qVLiz2GyNLdvfUEG748Lq2/OK4FnGuwip2IyBSUKLiJi4uroGIQmY/M9JwGxLmC+9eDT6BbxdxMiJy5pYjMEQfrIyMpUYPiXbt2oXHjxkhJSdHZ9+jRIwQFBWHfvn3lVjgiU7Ri0gFp2a+ZO1qFVuC0JKv6Al/Xr7jrE1UQDtZHxlSi4GbevHkYPXo0nJycdPY5OzvjzTffxNy5c8utcESmRAiBc3tvIysjb9b7Z8MbVexNb+Wlvk7a2kIlk3HwPjILHKyPjKlEaanTp0/jyy+/LHT/c889h6+//rrMhSIyRbtWxuLi4byhDkbN7Qxb+8ppQNy1Ti3cl8sRPXgPB+8jkyeE4GB9ZFQlCm4SExNhY1P4H3Nra2skJyeXuVBEpih/YNPrzSaVFtgAgEomA2QyDt5HJk/vwH38naVKVqK0VK1atXDuXOGT9p05cwbe3t5lLhSRqYm/8lBaDh3dBPVaehivMEQmrODAfRysj4yhRMFN7969MXXqVKSnp+vsU6lUmD59Ol544YVyKxyRqTgTfUta9m1S3YglITIfAQf2w/eXn1nbSJWuRGmpKVOmYOPGjWjQoAHGjh2Lhg0bAgAuXryIhQsXQq1W4z//+U+FFJTIWE7vuokrx5MAALUausLG1srIJSIyD3KOQkxGUqLgxtPTEwcPHsTbb7+NyMhIiKdjGMhkMoSGhmLhwoXw9PSskIISGcv+3y5Ly8261zZiSYiIyBAlnn7B19cXf/75Jx48eIArV65ACIGAgAC4urpWRPmIjOrenSfScthbTeHf3N2IpSEiIkOUOLjJ5erqirZt25ZnWYhMyrUzd/HnojPSun9zd1axExGZgRI1KCaqKoQQWoHNM/3qGj2waeTWiIP3EREZoNQ1N0SWbNHbu6Xl7sMaoXHHmkYsTY6VvVYaPcAiIjIHDG6I8slMz8ayifuldblchsBgjt1ERGROGNwQ5bP0/b1a628v6m6kkmhr4NqAKSkiIgMxuCF6Kiszb0JMK2s5Rn3bufILIQRERqrO5h96LmVKikyaEAJCpdKaU4rIWBjcED2Vcjfvj/Lob7vAyqaS29sLAbEsFLIbMQCWV+69icpA73xSREbE3lJET+348by0XOmBDQBkpUF284jO5n8c3aBUulV+eYgMVHA+KYBzSpFxseaGCMDfyy/g/h3ddJCxpb1/FgHONSCT83sImYeAA/tzpl3g1AtkRAxuqMo7ueM6Lh1JkNaHfRZsxNJos3eozsCGzIpcqYTc3t7YxaAqjn81qUpTqzU4tPGqtD54Sjs4ubMqnYjInLHmhqq0LfNipOVB/2kL99qOxisMkZnI7RmViz2kyNQwuKEqSwiBO5cfSus1fKoZrzDIKQ9bKJCpY88oMgdMS1GVdWbXLWl56IxnjFiSHKrsdGMXgahY+npG5WIPKTIVrLmhKmv/+svSsosnG0ASlVRuz6hc7CFFpoLBDVVJqseZ0nLvd5oZsSRE5os9o8hUMS1FVdL18/ekZf9m7kYsCRERlTcGN1QlRa2INXYRiIiogphEcLNw4UL4+fnBzs4O7du3x9GjRw06b926dZDJZOjXr1/FFpAsyrXTydLys+GNjFiSPEIIvLFztLGLQURkEYwe3Pz6668YP348pk+fjpMnT6J58+YIDQ1FUlJSkefFxcVh4sSJ6NzZCDM3k1m7dztvmoXADjWNWJI8qmwV/nnwj7GLQURkEYzeoHju3LkYPXo0RowYAQBYsmQJtm7dimXLlmHy5Ml6z1Gr1Rg6dChmzJiBffv24eHDh5VYYjJ1QgiostSF7v/nbDIyIdCgrSfSMrPLejMgq/QDmAkhoMpOR3p2OmzV1kgTtkiDbdnKRFSRhDB2CYiKZdTgJjMzEydOnEBkZKS0TS6XIyQkBIcOHSr0vE8//RQeHh4YOXIk9u3bV+Q9MjIykJGRIa2npKSUveBksoQQGLDkEE5cf1D0gS4ALl8Hpl2vjGIZ6As0NnYRiIoghEDca8OMXQyiYhk1LXX37l2o1Wp4enpqbff09ERCQoLec/bv34+ffvoJS5cuNeges2bNgrOzs/Tj4+NT5nKT6VJlqYsPbMxEG19XKG2sjF0MIolQqZARm9MY3zYwkAP2kckyelqqJB4/foxhw4Zh6dKlcHc3rPtuZGQkxo8fL62npKQwwKkijk8Jgb0iLzhYGXkQ6alZAIDg/vXQrHvtst0gMw2YUz9nedwZQFGy8T7SslQI2xgKANj04mbYWdtBaW0HmcIekMmgtLHigGhkMoQQWnNI+f28mr+fZLKMGty4u7vDysoKiYmJWtsTExPh5eWlc/zVq1cRFxeHPn36SNs0Gg0AwNraGpcuXUK9evW0zrG1tYWtLdswVEX2CivYK3J+xf+NSYYmNRuKp7M3PRPqVw53sAJkT1OejtUAhUPJTs+yRrp1TtsgN5casLfhYGhkmvTOJ8XAhkyYUdNSCoUCrVu3RlRUlLRNo9EgKioKwcHBOsc3atQIZ8+eRUxMjPTz4osvonv37oiJiWGNDBXq8rG8APrN/3Y1YkmIzE/B+aQ4hxSZOqOnpcaPH4+IiAi0adMG7dq1w7x585Camir1ngoPD0etWrUwa9Ys2NnZoUmTJlrnu7i4AIDOdqL84q8+AgA07+EDa4Vx27Hk9JBSQZVd+l5WRMYScGA/rNzcmJIik2b04Gbw4MFITk7GtGnTkJCQgBYtWmDbtm1SI+MbN25ALjf6cDxk5lIf5qSPHF2Nm6IUQiD8r3DEJMcYtRxEpSXn5JhkBowe3ADA2LFjMXbsWL37oqOjizx3xYoV5V8gsij5J8l09S5hu5hypspW6QQ2LT1aQmnNKn4iovJiEsENUUW6dCRvWIHaDVyNVo7cdFSu6EHRUForobTmN2EycRy4j8wMgxuyeLntbZTVbGBlY5wUp750lNJayR5SZPI4cB+ZIzZmIYuWmZ6Nf0/lTJRZw6ea0cpRMB3FVBSZCw7cR+aINTdk0Xatuigttwz1NWJJ8kQPioabHXubkOnjwH1krhjckGXL11agdkPjtbfJj21syBxw4D4yZ0xLkUW7GpOTkuo2tKGRS0JkXjhwH5kz1tyQZXtacVPmgfuEALLStLdlpuk/VudUwQH7yKxx4D4yNwxuyGJlpGVJy55+TqW/kBDAslDg5pFSnMpB+8j8ceA+MjdMS5HFunHunrTs4lmGLtdZaUUHNj7PAIV06WYvKSKiyseaG7JYV552AS9XE68AigKBjI293oaW+gbtYy8pMnVCCAiVSquXFJG5YXBDFuvG+ftQQIZqbnbld1GFPaAofgqHwgbtY2BDpkxvDykiM8S0FFm80NGVP2M801Fkjgr2kALYS4rME2tuyKJ1G9oQnv5laExcDpiOIrORb1yogAP7cxoSszExmSEGN2TRGnesWen3FEIgYluEtM50FJmDgnNIyZVKyO059xmZJ6alyGI5uthCJq/8oEKVrcLF+znTPjRya8R0FJkFziFFloTBDVkUjSavWt0nyK3S71+wh9TKXitZa0PmIV9KinNIkbljWoosyoV9d6Tl5j18KvXeHLCPzFXBlBTnkCJzx+CGLMqB/10BXHKWnd0rvlo9f00Ne0iRuRJpaUxJkUVhcEMWIzM9u1LvV1RNDXtIkbkoWGvDlBRZAra5IYuxdeGZSr1fwZqaXC09WjKwIbOh05CYPaTIArDmhiyC0AjcufywDBfQM+t3LgNm/44eFC2loNj1m8wKGxKTBWJwQxbhn6MJpT+5DLN+51JaK2FfyOSZRKaKDYnJUjEtRRbhYXIZJvkrbtbvXEXM/k1kjji2DVkq1tyQ2Ut/koXjW+MAAL5NqgO3bpf+Yvpm/c6Vb/bvguPZEJklpqTIQjG4IbP36+dHpWXfILeyBTcGzPrN8WzIEjAlRZaMaSkye08eZAAA5FYyBFbCXFIcz4YsAVNSZMlYc0NmLe7sXWn5xXEtKv3+HM+GLAFTUmRpWHNDZi3/2DZe9Zwr/H6c8ZssEn+HycIwuCGzlanKG5G429CGsLKq+F9nzvhNRGT6mJYis7Vz2XlpObCDd4XeK7d3FGf8JiIyfQxuyCylpWQi7uw9aV1egbU27B1FRGRemJYis/T3igvS8tAZz1TovfTNIcUeUkREpos1N2R2zu25hZsX7gPI6f7t4ll5owbnziHFhsRk9vIN4EdkaRjckNnZs/Yfabmia2309Y7iHFJk7nQG8COyMExLkVm5e+uJtBz8Uj04uVdsaoi9o8gScQA/snSsuSGzcmTLv9Jy0261S3ayEDmTZBaUqWebHuwdRZZACAGNKq/XHwfwI0vE4IbMRso9FeLO5IxIrFBaw0ZhZfjJQgDLQg2b/ZvIQgkhcH3IUKhOncrbyMCGLBDTUmQ2TkfdlJY7vly/ZCdnpRUf2Pg8kzPzN5GFEiqVVmCjbNWKKSmySKy5IbNxZtctAICNrRUCO5Zh0L6JV3Jm/y7Ixp7fYsmy5eshFXBgP6zcOC8aWSYGN2QWHt9Pl5abPVu7bH+QFfaAwqEcSkVkPgr2kJIrOZwBWS6mpcgsHNp4RVpu+7y/EUtCZJ7YQ4qqEtbckFlIuvEYAODhWw1W1uUfk+fOHVWQvm1E5kIIAfG0ZxR7SFFVwuCGTJ7QCDxKyvnDXK+1R/lfn3NHkQXS2zMqFwMbsnBMS5HJi1oVKy3Xa1n+wY2+uaMK4lxSZG4K9ozKxR5SVBWw5oZM3vVzebN/O9eo2D/KuXNHFcS5pMicFByoL+DAfsifBjQyNiSmKoDBDZk88bT7aqeBARV+L84dReZOXzpKrlRCbs/fa6o6mJYik5eRmg0A8PBzMnJJiEwfB+ojYs0NmTiRb9AxeycbI5aEyExwoD4i1tyQactKV0vLymqKcr++EAIR2yLK/bpExsCB+ohyMLghk/bkQYa0bGNbgokyDaTKVuHi/YsAgEZujdgjiswaB+ojysG0FJm0lHs5PT4cXW1L/g00Mw2AVb7lHEIIqLJy1vMP0rey10p+yyWLwYH6qCpjcEMmLfnpyMSpjzJLfvKc+oAsQ2fz6B2jceT+ubIWjci0MbChKoxpKTJpV08mAQDsncqnvY26dlscuXdWZzsH6SMishysuSGTdu92KgCgVkOX0l1g4pWcWcCRk456qE4H1ncHoD1gHwfpI4uQr6cUUVXG4IZM1tE/rknLLXvWKd1FFPaAwkHv/FEcsI8sScGeUkRVGdNSZLKun70rLbvXrlamaxWcP4ppKLI07ClFlIc1N2Sykq7nNCZu/6J/ma4jhNDqFRU9KBpudhzYjCxMvpQUe0pRVcfghkxS/vFtvOq5lPo6haWj+IefLIlOSoq/31TFMS1FJkn1OK/rd60GLqW/TnY601Fk8ZiSItLGmhsySffjU6XlstSyMB1FVQ1TUkSsuSETldtTysaubFMuhG3sJS0zHUVVAn/HiRjckGlKe5TT5sbRxbZcrsd0FBFR1cG0FJmc9NQsZGdqAABtevuV6Vp/vbQNSvvqrLUhy8bB+4i0mETNzcKFC+Hn5wc7Ozu0b98eR48eLfTYpUuXonPnznB1dYWrqytCQkKKPJ7Mz5HN/0rL/s1rlOhcUeCPfO5AfQxsyFJx8D4iXUYPbn799VeMHz8e06dPx8mTJ9G8eXOEhoYiKSlJ7/HR0dF49dVXsXv3bhw6dAg+Pj547rnncPv27UouOVUEIQTO7c15lo6utrCxLVmbG1V2uta60tqu3MpGZIrYU4pIl0wU/Kpbydq3b4+2bdviu+++AwBoNBr4+Pjg3XffxeTJk4s9X61Ww9XVFd999x3Cw8OLPT4lJQXOzs549OgRnJycylx+SySEgCpLXdQBQJaq8P1lcPlEEvauuwQAePG9FqjhU/jIxDmD82kHMw9Uaej53wsAgAu2I2D/n2uAwqFCykpkTEIICJUKGpUKlzt2AgA0PHEccgf+vpNlKsnnt1Hb3GRmZuLEiROIjIyUtsnlcoSEhODQoUMGXSMtLQ1ZWVlwc3PTuz8jIwMZGXkDwqWkpJSt0BZOCIEBSw7hxPUHxiuEc84/36yMMV4ZiEyYEALXhwyF6tQp7R1MvxIBMHJa6u7du1Cr1fD09NTa7unpiYSEBIOuMWnSJNSsWRMhISF698+aNQvOzs7Sj4+PT5nLbclUWWrjBjblpI3sEux8WgKcGJMskFCpdAIbZatWTEkRPWXWvaVmz56NdevWITo6GnZ2+ttWREZGYvz48dJ6SkoKAxwDHZ8SAntFgTYvmWnAnPo5y+PO5My6XU5ObLuOmKgbAIDhszvCyko79s6fhkrPTkf/LX0BAJte3Ay7Am1r3JRdILf9gN9kyWLkpqEAQKPKSwsHHNgPuVIJmZI9AolyGTW4cXd3h5WVFRITE7W2JyYmwsvLq8hzv/76a8yePRt///03mjVrVuhxtra2sLUtn7FSqhp7hRXsFQV/RawA2dM0n2O1cm3PcubvZMiR882zmrOL1j59c0Tl/va6udSAPWtoyIIVmoYCIFcqIbfn7z9RfkZNSykUCrRu3RpRUVHSNo1Gg6ioKAQHBxd63ldffYWZM2di27ZtaNOmTWUUlSrYg4S86RYad6qps1+VrdIObJ7i4HxUFehLQwFMRREVxuhpqfHjxyMiIgJt2rRBu3btMG/ePKSmpmLEiBEAgPDwcNSqVQuzZs0CAHz55ZeYNm0a1qxZAz8/P6ltjqOjIxwdHY32OqhsNs45KS13GdzgaQoqr+q94BxRuQENB+ejKiFfp9bcNBQApqKICmH04Gbw4MFITk7GtGnTkJCQgBYtWmDbtm1SI+MbN25ALs+rYFq8eDEyMzMxYMAAretMnz4dn3zySWUWncrJtTN3kZ6aBQDwru8MubVMNwWVT+7AfERVQcFB+piGIiqe0YMbABg7dizGjh2rd190dLTWelxcXMUXiCrVn4vOSMt93m1RaAoKYBqKqh4O0kdUciYR3FDVlZmeLS0H96+HLHlGoSkogGkoqtr8fl7N338iAzC4IaMRQmDp+3tzliHwrXoKYtbEaB3DFBRRPgxsiAxi9LmlqOpKinssLTvXUeikopiCIiKi0mDNDRlN3Lm70nL/Ca3w1bqc5dxUFFNQRERUGgxuyGhuXrgPAPCq6wy5PC+IYSqKiIjKgmkpMprEazmTmDq4KIxcEiIisiSsuaHiCQFkpeUsZ6aVyyVze0kJCDR8toZWDykiyiffAH5EZBgGN1Q0IYBlocDNI+V62UuHEyAg8HvQfHx/4Fq5XpvIUhQcwI+IDMO0FBUtK01/YOPzDFDKdjGZ6dnYu+4fZMszkeikHdiwhxRRHg7gR1Q6rLkhw028AiieBjQ29qUec+PMrps629hDikiPfCkpDuBHZDgGN2Q4hT2gcCjzZY5suZaTkmoyX9rGHlJE2nRSUgxsiAzGtBRVOgGBdOsnuOdwGwDQyK0RU1FE+QghoL5/nykpolJizQ1Vqpux9/B70HyttjYre61kdTvRU0IIXB8yFKpTp6RtTEkRlQxrbqhS/bUyRiuwYQNiIm1CpdIKbJStWkFmz5QtUUmw5oYqjRACKU+eSOvRg6LhZufGb6REhQg4sB9Wbvw/QlRSDG6oUggh8MqmIbjQ9py0jT2jiIomV/L/CFFpMC1FlUKVrcKFx3mBTcsaTEcREVHFYM0NVbqZ+AF9w57hN1Ii5NRqClXe9CMaFaciISorBjdU4YQQeHXTUGm9Zee6DGyIoL9nFBGVHdNSVOFU2Sr8q7oCAKieWgt1/D2MXCIi01CwZ1R+ylatOLYNUSmx5oYKl5kGIKPMl7l96YG0/JZqGmttiJBTa5M/BRVwYD/k+YIZGRsTE5UagxvSlm8uG8ypD8jKHtxsXXQGaJ+z3CO8cZmvR2Tu9KWj5Eol5BzPhqhcMC1F2rIKacxYylnA/41J1lp3cFGUplREFkXvQH1MQRGVG9bcUOHGnQEcq+Usl3IW8JPbr5dzoYgsQL4aUg7UR1T+GNxQ4cphFvCEa4/we7P5xR9IVEUUnO2bA/URlT+mpajC3Ln8ANnyTM7+TZSPUKk42zdRBWNwQxVm/4bLyJZnSuuc/ZsIWikpzvZNVDGYlqIKIYTAaq8vEVfzH2MXhchkFExJlaYdGxEVjzU3VCFU2SrEyfMCm5YenEuKiCkposrBmhsqd0II3Ll1V1r/td3/IbCRL6vfifJhSoqo4jC4oXIlhMCwv8JxOjlG2uZX34N/xIkK4v8JogrDtBSVK1W2SiuwqStjDykiIqpcDG6oXGmyNdJyxLHP8Puw31hrQ5Qr//QmRFRhGNxQuVr32TFp2c7ajoEN0VM6PaWIqMIwuKFyc/j3q3jyIF1af/H9lkYsDZFpYU8posrDBsWkrRTV5kII3LpxF4d3/KM1aJ97LcfyLBmRWRJCQKhU0KjyJqVlTymiisXghvIIAazuB2BiCU4RGPS/V3Ex9TzQvsJKRmSWhBC4PmSo1gzgANhTiqiCMS1FebLSgMTzees2xVebq7JVOYFNARy0jygnFVUwsFG2asWUFFEFY80NFa6Qb5dCCKiyc6rYHz56LG2f57YKwb0aAgCU1pzpmKqm3DQUAK1UVMCB/TkzgHMWcKIKx+CGSkQIgfC/whGTbyybXE3b+8Hexr7yC0VkIgpNQwGQK5WQ2/P/B1FlYFqKSkSVrdIb2NRMq4caNVwqvTxEpkRfGgpgKoqosrHmhkpt94Dd+PnDnHFthkZ2ZFU7VWlCCL1pKABMRRFVMgY3VGo/f3gMNhpbAICLp4ORS0NkPPrSUUxDERkP01JUZk7udrBRWBm7GERGUzAdxTQUkXGx5oaKlb93VO6/uaxs5HhtZrAxikVkOvINfhlwYD+s3NyYhiIyIgY3VKSiekcBgKefE/+IU5VWcM4oOdvXEBkd01JUpMJ6R3ml+MNao0BAW8/KLxSRCeGcUUSmhzU3ZLDoQdFQWivxvzkn8OhGJmSQoUmXWsYuFlGlyj9IHwDOGUVkghjckMGU1krY29gj5UYWZJCh5XN1jF0kokpV1CB9ADhnFJGJYFqKSuTSkQRpuX5rDyOWhKjyFTZIH8AeUkSmhDU3VCJ/L78gLdeoU82IJSGqPLmpqMIG6QM4UB+RKWFwQwbTaDTSctchDfmHnKqEwlJRHKSPyHQxLUUGS/w3RVpu3KmmEUtCVHn0paKYgiIybay5IYP934LTsEHOdAtyOWttyHLl7xGlLxXFFBSRaWNwQ4USQmD49gid7WxITJasqB5RTEURmQempahQqux0XLx/EQBQPbUWrDUKAEDP1xsbs1hEFaqwHlFMRRGZD9bcUKHS880j1e/cOMggQ4sQH8itGBOTBSswT1RujyimoojMB4MbKlSvjb0gyxfHuPs4ouOAAOMViKiC6ZsnimkoIvPDr+BUrNx5pAZMbmPsohBVKM4TRWQZWHNDhXrj2ufQ3AWsNQo07+4DK6ajyEwVnA+qMJwnisgyMLghicjX1gAAMu4K2GvsABnQOszPOIUiKqNi54MqDAMbIrPF4IYkqux0rXUrjQJtn/dDow7esHdSGKlURGVT1HxQhWHPKCLzZhLBzcKFCzFnzhwkJCSgefPmWLBgAdq1a1fo8evXr8fUqVMRFxeHgIAAfPnll+jdu3cllrhqkEGGts/7Q8YB+8gMFJZ6Kmo+qMKwZxSReTN6cPPrr79i/PjxWLJkCdq3b4958+YhNDQUly5dgoeH7mBxBw8exKuvvopZs2bhhRdewJo1a9CvXz+cPHkSTZo0McIrsBxCCOT/c95/fCsGNmQWDE09sfcTUdVg9Baic+fOxejRozFixAg0btwYS5Ysgb29PZYtW6b3+Pnz56NXr1748MMPERgYiJkzZ6JVq1b47rvvKrnklkWjEVj+0X6tbe4+DkYqDVHJGJJ6YqqJqOowas1NZmYmTpw4gcjISGmbXC5HSEgIDh06pPecQ4cOYfz48VrbQkND8fvvv1dkUS3e7UsPdLZxsD4yR4WlnphqIqo6jBrc3L17F2q1Gp6enlrbPT09cfHiRb3nJCQk6D0+ISFB7/EZGRnIyMiQ1h89egQASElJ0Xt8VZUcfw+qzDSkZGigyUgDkPMeZSuMnrkkKpYmLQ1P1GoAwJOsLMhtbHQPevy4kktFROUp93O7YM9efSz+k2vWrFmYMWOGznYfHx8jlMb0fQQAGAQA8J5nxIIQlZa3t7FLQEQV6PHjx3B2di7yGKMGN+7u7rCyskJiYqLW9sTERHh5eek9x8vLq0THR0ZGaqWxHj58CF9fX9y4caPYN4cqV0pKCnx8fHDz5k04OTkZuzj0FJ+LaeJzMV18NhVDCIHHjx+jZs2axR5r1OBGoVCgdevWiIqKQr9+/QAAGo0GUVFRGDt2rN5zgoODERUVhffff1/atnPnTgQHB+s93tbWFra2tjrbnZ2d+UtnopycnPhsTBCfi2niczFdfDblz9BKCaOnpcaPH4+IiAi0adMG7dq1w7x585CamooRI0YAAMLDw1GrVi3MmjULADBu3Dh07doV33zzDZ5//nmsW7cOx48fxw8//GDMl0FEREQmwujBzeDBg5GcnIxp06YhISEBLVq0wLZt26RGwzdu3IBcntdrp0OHDlizZg2mTJmCjz/+GAEBAfj99985xg0REREBMIHgBgDGjh1baBoqOjpaZ9vAgQMxcODAUt3L1tYW06dP15uqIuPiszFNfC6mic/FdPHZGJ9MGNKnioiIiMhMcJQ2IiIisigMboiIiMiiMLghIiIii8LghoiIiCyKRQQ3CxcuhJ+fH+zs7NC+fXscPXq0yOPXr1+PRo0awc7ODk2bNsWff/6ptV8IgWnTpsHb2xtKpRIhISG4fPlyRb4Ei1Tez2X48OGQyWRaP7169arIl2CRSvJczp8/j5dffhl+fn6QyWSYN29ema9JhSvvZ/PJJ5/o/J9p1KhRBb4Cy1SS57J06VJ07twZrq6ucHV1RUhIiM7x/IypBMLMrVu3TigUCrFs2TJx/vx5MXr0aOHi4iISExP1Hn/gwAFhZWUlvvrqK3HhwgUxZcoUYWNjI86ePSsdM3v2bOHs7Cx+//13cfr0afHiiy8Kf39/oVKpKutlmb2KeC4RERGiV69eIj4+Xvq5f/9+Zb0ki1DS53L06FExceJEsXbtWuHl5SW+/fbbMl+T9KuIZzN9+nQRFBSk9X8mOTm5gl+JZSnpcxkyZIhYuHChOHXqlIiNjRXDhw8Xzs7O4tatW9Ix/IypeGYf3LRr106MGTNGWler1aJmzZpi1qxZeo8fNGiQeP7557W2tW/fXrz55ptCCCE0Go3w8vISc+bMkfY/fPhQ2NrairVr11bAK7BM5f1chMgJbvr27Vsh5a0qSvpc8vP19dX7AVqWa1Keing206dPF82bNy/HUlY9Zf39zs7OFtWqVRMrV64UQvAzprKYdVoqMzMTJ06cQEhIiLRNLpcjJCQEhw4d0nvOoUOHtI4HgNDQUOn4a9euISEhQesYZ2dntG/fvtBrkraKeC65oqOj4eHhgYYNG+Ltt9/GvXv3yv8FWKjSPBdjXLMqqsj38fLly6hZsybq1q2LoUOH4saNG2UtbpVRHs8lLS0NWVlZcHNzA8DPmMpi1sHN3bt3oVarpakacnl6eiIhIUHvOQkJCUUen/tvSa5J2iriuQBAr169sGrVKkRFReHLL7/Enj17EBYWBrVaXf4vwgKV5rkY45pVUUW9j+3bt8eKFSuwbds2LF68GNeuXUPnzp3x+PHjsha5SiiP5zJp0iTUrFlTCmb4GVM5TGL6BSJDvPLKK9Jy06ZN0axZM9SrVw/R0dHo0aOHEUtGZJrCwsKk5WbNmqF9+/bw9fXFb7/9hpEjRxqxZFXD7NmzsW7dOkRHR8POzs7YxalSzLrmxt3dHVZWVkhMTNTanpiYCC8vL73neHl5FXl87r8luSZpq4jnok/dunXh7u6OK1eulL3QVUBpnosxrlkVVdb76OLiggYNGvD/jIHK8ly+/vprzJ49Gzt27ECzZs2k7fyMqRxmHdwoFAq0bt0aUVFR0jaNRoOoqCgEBwfrPSc4OFjreADYuXOndLy/vz+8vLy0jklJScGRI0cKvSZpq4jnos+tW7dw7949eHt7l0/BLVxpnosxrlkVVdb7+OTJE1y9epX/ZwxU2ufy1VdfYebMmdi2bRvatGmjtY+fMZXE2C2ay2rdunXC1tZWrFixQly4cEG88cYbwsXFRSQkJAghhBg2bJiYPHmydPyBAweEtbW1+Prrr0VsbKyYPn263q7gLi4uYvPmzeLMmTOib9++7KZXQuX9XB4/fiwmTpwoDh06JK5duyb+/vtv0apVKxEQECDS09ON8hrNUUmfS0ZGhjh16pQ4deqU8Pb2FhMnThSnTp0Sly9fNviaZJiKeDYTJkwQ0dHR4tq1a+LAgQMiJCREuLu7i6SkpEp/feaqpM9l9uzZQqFQiA0bNmh1wX/8+LHWMfyMqVhmH9wIIcSCBQtEnTp1hEKhEO3atROHDx+W9nXt2lVERERoHf/bb7+JBg0aCIVCIYKCgsTWrVu19ms0GjF16lTh6ekpbG1tRY8ePcSlS5cq46VYlPJ8LmlpaeK5554TNWrUEDY2NsLX11eMHj2aH6ClUJLncu3aNQFA56dr164GX5MMV97PZvDgwcLb21soFApRq1YtMXjwYHHlypVKfEWWoSTPxdfXV+9zmT59unQMP2MqnkwIIYxQYURERERUIcy6zQ0RERFRQQxuiIiIyKIwuCEiIiKLwuCGiIiILAqDGyIiIrIoDG6IiIjIojC4ISIiIovC4IbIxPzwww/w8fGBXC7HvHnzSnUNPz+/Ep37ySefoEWLFqW6V3mQyWT4/fffjXb/ylbS52NM0dHRkMlkePjwYaHHrFixAi4uLuV637i4OMhkMsTExJTrdalqYHBDFm/48OGQyWSQyWSwsbGBv78/PvroI6Snp2sdl3vM4cOHtbZnZGSgevXqkMlkiI6Olrbv2bMHzz77LNzc3GBvb4+AgABEREQgMzOz1GVNSUnB2LFjMWnSJNy+fRtvvPFGqa5z7NixUp9rqKoUkHTr1g3vv/9+uV2vpM/HkACjonTo0AHx8fFwdnau9HsTlRaDG6oSevXqhfj4ePz777/49ttv8f3332P69Ok6x/n4+GD58uVa2zZt2gRHR0etbRcuXECvXr3Qpk0b7N27F2fPnsWCBQugUCigVqtLXc4bN24gKysLzz//PLy9vWFvb1+q69SoUaPU51LpCCGQnZ1t0LGV9XzUajU0Gk2ZrqFQKODl5QWZTFZOpSKqeAxuqEqwtbWFl5cXfHx80K9fP4SEhGDnzp06x0VERGDdunVQqVTStmXLliEiIkLruB07dsDLywtfffUVmjRpgnr16qFXr15YunQplEploeW4ceMG+vbtC0dHRzg5OWHQoEFITEwEkFO137RpUwBA3bp1IZPJEBcXp3ONDh06YNKkSVrbkpOTYWNjg7179wLQTXsUdV99jh07hp49e8Ld3R3Ozs7o2rUrTp48Ke338/MDAPTv3x8ymUxaB4DNmzejVatWsLOzQ926dTFjxgytD/3Lly+jS5cusLOzQ+PGjfU+h4I0Gg2++uor1K9fH7a2tqhTpw4+//xzaf/Zs2fx7LPPQqlUonr16njjjTfw5MkTaf/w4cPRr18/fP311/D29kb16tUxZswYZGVlSccsWrQIAQEBsLOzg6enJwYMGCCdu2fPHsyfP1+q3YuLi5NqU/766y+0bt0atra22L9/P65evYq+ffvC09MTjo6OaNu2Lf7++2+t11Pw+chkMvz444/o37+/VAu4ZcsWADnpme7duwMAXF1dIZPJMHz4cL3vU256aMuWLWjcuDFsbW1x48YNZGRkYOLEiahVqxYcHBzQvn17rVrI69evo0+fPnB1dYWDgwOCgoLw559/AtBfa7RixQrUqVMH9vb26N+/P+7du6dVjtz3O7/3338f3bp1k9a3bduGTp06wcXFBdWrV8cLL7yAq1ev6n1dAPDgwQMMHToUNWrUgFKpREBAgM4XEaJcDG6oyjl37hwOHjwIhUKhs69169bw8/PD//73PwA5QcHevXsxbNgwreO8vLwQHx8vBROG0Gg06Nu3L+7fv489e/Zg586d+PfffzF48GAAwODBg6UPwaNHjyI+Ph4+Pj461xk6dCjWrVuH/NPC/frrr6hZsyY6d+5c4vvq8/jxY0RERGD//v04fPgwAgIC0Lt3bzx+/BhATvADAMuXL0d8fLy0vm/fPoSHh2PcuHG4cOECvv/+e6xYsUIKRDQaDV566SUoFAocOXIES5Ys0QnU9ImMjMTs2bMxdepUXLhwAWvWrIGnpycAIDU1FaGhoXB1dcWxY8ewfv16/P333xg7dqzWNXbv3o2rV69i9+7dWLlyJVasWIEVK1YAAI4fP4733nsPn376KS5duoRt27ahS5cuAID58+cjODgYo0ePRnx8vM5zmTx5MmbPno3Y2Fg0a9YMT548Qe/evREVFYVTp06hV69e6NOnD27cuFHka5wxYwYGDRqEM2fOoHfv3hg6dCju378PHx8f6ffx0qVLiI+Px/z58wu9TlpaGr788kv8+OOPOH/+PDw8PDB27FgcOnQI69atw5kzZzBw4ED06tULly9fBgCMGTMGGRkZUi3kl19+qVNbmevIkSMYOXIkxo4di5iYGHTv3h2fffZZka9Nn9TUVIwfPx7Hjx9HVFQU5HI5+vfvX2hNU+6z/+uvvxAbG4vFixfD3d29xPelKsK483YSVbyIiAhhZWUlHBwchK2trQAg5HK52LBhg9ZxAMSmTZvEvHnzRPfu3YUQQsyYMUP0799fPHjwQAAQu3fvFkIIkZ2dLYYPHy4ACC8vL9GvXz+xYMEC8ejRo0LLsWPHDmFlZSVu3LghbTt//rwAII4ePSqEEOLUqVMCgLh27Vqh10lKShLW1tZi79690rbg4GAxadIkad3X11d8++23Bt93+vTponnz5oXeU61Wi2rVqon/+7//03m/8uvRo4f44osvtLatXr1aeHt7CyGE2L59u7C2tha3b9+W9v/11196r5UrJSVF2NraiqVLl+rd/8MPPwhXV1fx5MkTadvWrVuFXC6XZo2PiIgQvr6+Ijs7Wzpm4MCBYvDgwUIIIf73v/8JJycnkZKSovceXbt2FePGjdPatnv3bgFA/P7773rPyS8oKEgsWLBAWs//fITIeS+nTJkirT958kQAEH/99ZfWvR48eFDkfZYvXy4AiJiYGGnb9evXhZWVldZ7LkTOs4qMjBRCCNG0aVPxySef6L1mwXu/+uqronfv3lrHDB48WDg7O0vrERERom/fvlrHjBs3Tmc2+fySk5MFAHH27FkhRN6s56dOnRJCCNGnTx8xYsSIQs8nyo81N1QldO/eHTExMThy5AgiIiIwYsQIvPzyy3qPfe2113Do0CH8+++/WLFiBV5//XWdY6ysrLB8+XLcunULX331FWrVqoUvvvgCQUFBiI+P13vd2NhY+Pj4aH3rb9y4MVxcXBAbG2vwa6lRowaee+45/PLLLwCAa9eu4dChQxg6dGi53TcxMRGjR49GQEAAnJ2d4eTkhCdPnhRb+3D69Gl8+umncHR0lH5yazzS0tKkstSsWVM6Jzg4uMhrxsbGIiMjAz169Ch0f/PmzeHg4CBt69ixIzQaDS5duiRtCwoKgpWVlbTu7e2NpKQkAEDPnj3h6+uLunXrYtiwYfjll1+QlpZWZLlytWnTRmv9yZMnmDhxIgIDA+Hi4gJHR0fExsYW+941a9ZMWnZwcICTk5NUvpJQKBRa1zp79izUajUaNGig9Vz27NkjpYHee+89fPbZZ+jYsSOmT5+OM2fOFHr92NhYtG/fXmtbcc9Qn8uXL+PVV19F3bp14eTkJKU2C3uf3n77baxbtw4tWrTARx99hIMHD5b4nlR1MLihKsHBwQH169dH8+bNsWzZMhw5cgQ//fST3mNz8/8jR45Eeno6wsLCCr1urVq1MGzYMHz33Xc4f/480tPTsWTJkop6GZKhQ4diw4YNyMrKwpo1a9C0aVOpvU55iIiIQExMDObPn4+DBw8iJiYG1atXL7Yn2JMnTzBjxgzExMRIP2fPnsXly5dhZ2dXqrIU1YapJGxsbLTWZTKZlAKpVq0aTp48ibVr18Lb2xvTpk1D8+bNDeqdlD+oAoCJEydi06ZN+OKLL7Bv3z7ExMSgadOmxb53RZWvJJRKpVbj3ydPnsDKygonTpzQei6xsbFSemvUqFH4999/MWzYMJw9exZt2rTBggULSnzvXHK5XCttCkCrfRMA9OnTB/fv38fSpUtx5MgRHDlyBAAKfZ/CwsJw/fp1fPDBB7hz5w569OiBiRMnlrqMZNkY3FCVI5fL8fHHH2PKlClaDYfze/311xEdHY3w8HCtb/tFcXV1hbe3N1JTU/XuDwwMxM2bN3Hz5k1p24ULF/Dw4UM0bty4RK+hb9++SE9Px7Zt27BmzZpCa21Ke98DBw7gvffeQ+/evREUFARbW1vcvXtX6xgbGxudnmGtWrXCpUuXUL9+fZ0fuVwulSV/7VbBrvcFBQQEQKlUIioqqtDXd/r0aa33/cCBA5DL5WjYsGGR187P2toaISEh+Oqrr3DmzBnExcVh165dAFCiXnAHDhzA8OHD0b9/fzRt2hReXl56G4aXRG77sNL0xGvZsiXUajWSkpJ0nomXl5d0nI+PD9566y1s3LgREyZMwNKlS/VeLzAwUApEchV8hjVq1NCpwcw/Xs29e/dw6dIlTJkyBT169EBgYCAePHhQ7GupUaMGIiIi8PPPP2PevHn44Ycfij2HqiYGN1QlDRw4EFZWVli4cKHe/b169UJycjI+/fRTvfu///57vP3229ixYweuXr2K8+fPY9KkSTh//jz69Omj95yQkBA0bdoUQ4cOxcmTJ3H06FGEh4eja9euOqmN4jg4OKBfv36YOnUqYmNj8eqrrxZ6bGnuGxAQgNWrVyM2NhZHjhzB0KFDdWpQ/Pz8EBUVhYSEBOmDadq0aVi1ahVmzJiB8+fPIzY2FuvWrcOUKVOksjRo0AARERE4ffo09u3bh//85z9FvlY7OztMmjQJH330EVatWoWrV6/i8OHDUs3b0KFDYWdnh4iICJw7dw67d+/Gu+++i2HDhkmNjovzxx9/4L///S9iYmJw/fp1rFq1ChqNRgqO/Pz8cOTIEcTFxeHu3btF1qgEBARg48aNiImJwenTpzFkyJAyd8f29fWFTCbDH3/8geTkZK2eYMVp0KABhg4divDwcGzcuBHXrl3D0aNHMWvWLGzduhVATk+m7du349q1azh58iR2796NwMBAvdd77733sG3bNnz99de4fPkyvvvuO2zbtk3rmGeffRbHjx/HqlWrcPnyZUyfPh3nzp2T9ru6uqJ69er44YcfcOXKFezatQvjx48v8nVMmzYNmzdvxpUrV3D+/Hn88ccfhZaRiMENVUnW1tYYO3YsvvrqK701LTKZDO7u7np7VAFAu3bt8OTJE7z11lsICgpC165dcfjwYfz+++/o2rWr3nNkMhk2b94MV1dXdOnSBSEhIahbty5+/fXXUr2GoUOH4vTp0+jcuTPq1KlT6HGlue9PP/2EBw8eoFWrVhg2bBjee+89eHh4aB3zzTffYOfOnfDx8UHLli0BAKGhofjjjz+wY8cOtG3bFs888wy+/fZb+Pr6AsipNdu0aRNUKhXatWuHUaNGaXXpLszUqVMxYcIETJs2DYGBgRg8eLDUHsXe3h7bt2/H/fv30bZtWwwYMAA9evTAd999V+x1c7m4uGDjxo149tlnERgYiCVLlmDt2rUICgoCkJNqsrKyQuPGjVGjRo0i28/MnTsXrq6u6NChA/r06YPQ0FC0atXK4LLoU6tWLcyYMQOTJ0+Gp6enTk+w4ixfvhzh4eGYMGECGjZsiH79+uHYsWPS741arcaYMWMQGBiIXr16oUGDBli0aJHeaz3zzDNYunQp5s+fj+bNm2PHjh1S8JorNDQUU6dOxUcffYS2bdvi8ePHCA8Pl/bL5XKsW7cOJ06cQJMmTfDBBx9gzpw5Rb4GhUKByMhINGvWDF26dIGVlRXWrVtXoveBqg6ZKJgYJSIiIjJjrLkhIiIii8LghoiIiCwKgxsiIiKyKAxuiIiIyKIwuCEiIiKLwuCGiIiILAqDGyIiIrIoDG6IiIjIojC4ISIiIovC4IaIiIgsCoMbIiIisigMboiIiMii/D+j6oAJuIfJVwAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots()\n", + "qoi_cols = [\"rms_vio_constr_res\"]\n", + "study_cdf_dfs = []\n", + "\n", + "for campaign_name in campaigns:\n", + " results = campaigns[campaign_name][\"campaign\"].analyse(qoi_cols=qoi_cols)\n", + "\n", + " # get_distribution() method not implemented for MCSampler in easyVVUQ\n", + " # not implemented in AnalysisResults (base) or QMCAnalysisResults (returned in MC case)\n", + " # Have to use seaborn instead to get dist for MC sampling\n", + " # For non-MC sampling case:\n", + " # if type(results) != uq.analysis.qmc_analysis.QMCAnalysisResults:\n", + " # dist = results.get_distribution(qoi=\"rms_vio_constr_res\")\n", + " # # Locations for density function to be evaluated\n", + " # x = np.linspace(dist.lower[0], dist.upper[0], num=500)\n", + " # cdf = dist.cdf(x)\n", + " # sns.lineplot(x=x, y=cdf, markers=True, ax=ax, label=campaign_name)\n", + "\n", + " # Can use ecdfplot for all data, PCE or MC-obtained\n", + " results.samples.columns = results.samples.columns.droplevel(1)\n", + " samples = results.samples[\"rms_vio_constr_res\"]\n", + " samples = samples.rename(campaign_name)\n", + " study_cdf_dfs.append(samples)\n", + "\n", + "cdfs = pd.concat(study_cdf_dfs, axis=1)\n", + "sns.ecdfplot(data=cdfs, ax=ax)\n", + "ax.set_title(\"Distribution for rms_vio_constr_res\")\n", + "ax.set_xlabel(\"RMS of violated constraint residuals\")\n", + "ax.set_ylabel(\"CDF\")\n", + "ax.set_xlim([0.0, None])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "1, 2 and 3 uncertain parameters all very similar. In the \"3p_bad\" case, making fimp_14 uncertainty range well away from solution point (i.e. likely to cause large constraint violations) shifts the curve to the right. The Monte Carlo run (625 samples) broadly agrees with the PCE CDFs. \n", + "\n", + "Reliability $R = F_s(0 \\mid \\theta)= 0$, $P = 0$ of satisfying requirements. This indicates a problem with this solution point: it is never feasible under these uncertainties." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.9" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "0d602a62c005a1edaecc467843c8abc40b106c408f7dd3fdae5e868ff234b67e" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/ra/rms_cons/ra_eval.ipynb b/ra/rms_cons/ra_eval.ipynb new file mode 100644 index 0000000..def5b26 --- /dev/null +++ b/ra/rms_cons/ra_eval.ipynb @@ -0,0 +1,43021 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Local reliability, RMS violated constraints: evaluate\n", + "\n", + "Evaluate local reliability for 1, 2 and 3 params, using the RMS violated inequality constraints as the requirement violation severity metric. This notebook has been run multiple times, starting with just `fimp_14`, then adding `psepbqarmax` and finally `triang`, each time producing a different campaign name to distinguish the campaign databases." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import easyvvuq as uq\n", + "import chaospy as cp\n", + "from pathlib import Path\n", + "from infeas.decoder import MfileDecoder" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# Define campaign\n", + "WORK_DIR = \"campaigns\"\n", + "Path(\"campaigns\").mkdir(exist_ok=True)\n", + "campaign = uq.Campaign(name=\"3p_only\", work_dir=WORK_DIR)\n", + "\n", + "# Define parameter space\n", + "# Uncertainties from Alex's SA paper\n", + "\n", + "params = {\n", + " # Default values are at solution point\n", + " \"fimp_14\": {\n", + " \"type\": \"float\",\n", + " \"min\": 5.0e-6,\n", + " \"max\": 1.0e-4,\n", + " \"default\": 5.0e-6,\n", + " }, # ok\n", + " \"psepbqarmax\": {\"type\": \"float\", \"min\": 8.7, \"max\": 10.0, \"default\": 10.0}, # ok\n", + " \"triang\": {\"type\": \"float\", \"min\": 0.4, \"max\": 0.6, \"default\": 0.5}, # ok\n", + "}\n", + "\n", + "# QoIs\n", + "# Violated constraint residuals\n", + "qois = [\n", + " \"rms_vio_constr_res\",\n", + "]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, define a custom decoder to handle Process's mfile output." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Create encoder and decoder\n", + "encoder = uq.encoders.GenericEncoder(\n", + " template_fname=\"large_tokamak_sol_IN_DAT.template\", target_filename=\"IN.DAT\"\n", + ")\n", + "\n", + "decoder = MfileDecoder(target_filename=\"MFILE.DAT\", output_columns=qois)\n", + "\n", + "cmd = \"process -i IN.DAT\"\n", + "actions = uq.actions.local_execute(encoder, cmd, decoder)\n", + "\n", + "# Add the app\n", + "campaign.add_app(name=\"feasibility\", params=params, actions=actions)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 0%| | 0/625 [00:00\n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 0%| | 1/625 [00:02<28:02, 2.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:38 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_7/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_7/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_7/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 0%| | 2/625 [00:03<13:35, 1.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:38 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_8/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_8/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_8/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 0%| | 3/625 [00:03<08:41, 1.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_9/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_9/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_9/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_12/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_12/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_12/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.The IN.DAT file does not contain any obsolete variables.\n", + "\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_4/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_4/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_4/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_2/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_2/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_2/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_11/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_11/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_11/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_6/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_6/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_6/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 1%| | 6/625 [00:04<04:36, 2.24it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:40 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_14/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_14/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_14/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_13/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_13/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_13/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 1%|▏ | 8/625 [00:05<04:30, 2.28it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_15/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_15/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_15/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 2%|▏ | 11/625 [00:05<03:23, 3.02it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 2%|▏ | 12/625 [00:06<03:23, 3.02it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 2%|▏ | 15/625 [00:06<02:51, 3.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_16/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_16/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_16/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_21/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_21/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_21/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_18/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_18/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_18/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_19/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_19/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_19/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables. tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + "\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_20/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_20/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_20/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 3%|▎ | 16/625 [00:08<04:44, 2.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_17/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_17/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_17/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_24/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_24/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_24/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_26/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_26/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_26/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_23/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_23/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_23/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_22/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_22/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_22/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_25/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_25/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_25/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 4%|▎ | 22/625 [00:09<02:29, 4.03it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 4%|▎ | 23/625 [00:10<02:57, 3.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:46 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_27/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_27/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_27/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 4%|▍ | 24/625 [00:10<03:27, 2.90it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 4%|▍ | 25/625 [00:10<03:02, 3.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables. tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_31/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_31/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_31/IN.DAT\n", + "This is longer than 110 columns.\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 4%|▍ | 26/625 [00:11<04:03, 2.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_28/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_28/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_28/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:48 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_30/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_30/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_30/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 4%|▍ | 28/625 [00:12<03:55, 2.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:48 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_33/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_33/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_33/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:48 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_29/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_29/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_29/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:48 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_37/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_37/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_37/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:48 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_35/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_35/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_35/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_32/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_32/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_32/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 5%|▍ | 29/625 [00:13<05:34, 1.78it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_34/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_34/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_34/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 5%|▌ | 33/625 [00:14<03:19, 2.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:50 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_36/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_36/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_36/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 5%|▌ | 34/625 [00:14<03:29, 2.82it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:50 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_42/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_42/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_42/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:51 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_40/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_40/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_40/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 6%|▌ | 35/625 [00:15<04:30, 2.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:51 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_39/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_39/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_39/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 6%|▌ | 37/625 [00:15<03:31, 2.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:52 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_38/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_38/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_38/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 6%|▌ | 38/625 [00:16<03:41, 2.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables." + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 6%|▌ | 39/625 [00:17<04:14, 2.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:52 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_43/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_43/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_43/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_48/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_48/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_48/IN.DAT\n", + "This is longer than 110 columns.\n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_41/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_41/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_41/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_44/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_44/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_44/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 6%|▋ | 40/625 [00:17<04:52, 2.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_47/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_47/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_47/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_45/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_45/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_45/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 7%|▋ | 41/625 [00:17<04:17, 2.27it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 7%|▋ | 43/625 [00:18<03:39, 2.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:54 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_46/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_46/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_46/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_50/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_50/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_50/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 7%|▋ | 44/625 [00:19<04:03, 2.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_49/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_49/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_49/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 7%|▋ | 46/625 [00:19<02:52, 3.35it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 8%|▊ | 47/625 [00:19<02:47, 3.45it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 8%|▊ | 48/625 [00:19<02:28, 3.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_51/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_51/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_51/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 8%|▊ | 49/625 [00:20<03:44, 2.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 8%|▊ | 50/625 [00:20<03:01, 3.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:56 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_53/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_53/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_53/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 8%|▊ | 51/625 [00:21<03:21, 2.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:57 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_52/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_52/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_52/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:57 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_56/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_56/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_56/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:57 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_54/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_54/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_54/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:57 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_55/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_55/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_55/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:57 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_57/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_57/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_57/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 8%|▊ | 53/625 [00:22<05:03, 1.88it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 9%|▊ | 54/625 [00:23<04:20, 2.19it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:59 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_62/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_62/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_62/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 9%|▉ | 56/625 [00:23<03:20, 2.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:53:59 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_58/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_58/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_58/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 9%|▉ | 57/625 [00:23<02:45, 3.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_59/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_59/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_59/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_60/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_60/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_60/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_61/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_61/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_61/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_63/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_63/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_63/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_67/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_67/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_67/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 9%|▉ | 58/625 [00:25<05:26, 1.73it/s]Traceback (most recent call last):\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 10%|▉ | 60/625 [00:25<04:21, 2.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:01 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_65/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_65/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_65/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 10%|█ | 63/625 [00:25<02:40, 3.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:01 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_64/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_64/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_64/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:02 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_66/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_66/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_66/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 10%|█ | 64/625 [00:26<03:36, 2.60it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_68/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_68/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_68/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 11%|█ | 66/625 [00:27<04:10, 2.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_75/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_75/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_75/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_69/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_69/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_69/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_73/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_73/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_73/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 11%|█ | 67/625 [00:28<03:42, 2.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_72/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_72/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_72/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_71/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_71/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_71/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_70/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_70/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_70/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 11%|█ | 68/625 [00:29<04:54, 1.89it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 11%|█ | 69/625 [00:29<04:00, 2.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:05 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_74/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_74/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_74/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 11%|█ | 70/625 [00:29<03:48, 2.42it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 11%|█▏ | 71/625 [00:29<03:36, 2.56it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + "Traceback (most recent call last):\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + "self.run_mode() Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + "\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 72/625 [00:30<04:12, 2.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:06 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_77/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_77/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_77/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:06 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_78/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_78/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_78/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 74/625 [00:31<03:11, 2.87it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_80/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_80/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_80/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_76/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_76/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_76/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_79/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_79/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_79/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 75/625 [00:32<05:13, 1.75it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 12%|█▏ | 78/625 [00:32<03:09, 2.88it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 13%|█▎ | 79/625 [00:34<06:09, 1.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_83/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_83/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_83/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_81/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_81/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_81/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_86/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_86/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_86/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_84/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_84/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_84/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 13%|█▎ | 80/625 [00:34<05:24, 1.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_82/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_82/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_82/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " 13%|█▎ | 81/625 [00:35<05:52, 1.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:11 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_85/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_85/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_85/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 13%|█▎ | 82/625 [00:35<05:39, 1.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_87/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_87/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_87/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 13%|█▎ | 83/625 [00:36<04:31, 2.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_89/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_89/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_89/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 13%|█▎ | 84/625 [00:36<04:46, 1.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_90/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_90/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_90/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_88/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_88/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_88/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 14%|█▎ | 85/625 [00:37<05:39, 1.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:13 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_91/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_91/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_91/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 14%|█▍ | 87/625 [00:38<04:17, 2.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:14 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_94/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_94/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_94/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 14%|█▍ | 88/625 [00:38<04:09, 2.16it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 14%|█▍ | 89/625 [00:38<03:53, 2.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:15 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_92/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_92/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_92/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 15%|█▍ | 91/625 [00:39<04:07, 2.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:16 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_93/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_93/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_93/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 15%|█▍ | 92/625 [00:40<03:55, 2.26it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:16 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_100/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_100/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_100/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:16 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_96/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_96/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_96/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:16 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_95/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_95/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_95/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 15%|█▌ | 95/625 [00:41<03:41, 2.40it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_99/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_99/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_99/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_98/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_98/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_98/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 15%|█▌ | 96/625 [00:42<04:27, 1.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_97/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_97/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_0-100/run_97/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 16%|█▌ | 98/625 [00:43<03:47, 2.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_102/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_102/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_102/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Traceback (most recent call last):\n", + "Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_104/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_104/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_104/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:20 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_103/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_103/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_103/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:20 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_101/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_101/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_101/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 16%|█▌ | 99/625 [00:44<05:03, 1.73it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 16%|█▋ | 102/625 [00:45<04:32, 1.92it/s]Traceback (most recent call last):\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_106/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_106/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_106/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_105/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_105/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_105/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_110/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_110/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_110/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 16%|█▋ | 103/625 [00:46<05:47, 1.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_107/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_107/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_107/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_108/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_108/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_108/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 17%|█▋ | 104/625 [00:47<05:15, 1.65it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " 17%|█▋ | 105/625 [00:47<04:12, 2.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_109/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_109/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_109/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 17%|█▋ | 106/625 [00:48<04:36, 1.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:24 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_112/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_112/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_112/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 17%|█▋ | 107/625 [00:48<04:38, 1.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:24 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_113/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_113/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_113/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 17%|█▋ | 109/625 [00:49<03:37, 2.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:25 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_111/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_111/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_111/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 18%|█▊ | 112/625 [00:50<03:27, 2.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:26 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_114/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_114/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_114/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:27 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_118/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_118/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_118/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:27 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_119/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_119/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_119/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 18%|█▊ | 113/625 [00:51<05:23, 1.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:27 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_120/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_120/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_120/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_116/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_116/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_116/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_115/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_115/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_115/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 18%|█▊ | 114/625 [00:52<06:13, 1.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_122/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_122/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_122/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 18%|█▊ | 115/625 [00:53<05:05, 1.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:29 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_117/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_117/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_117/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 19%|█▊ | 116/625 [00:53<04:08, 2.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:29 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_123/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_123/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_123/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:30 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_121/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_121/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_121/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:30 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_125/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_125/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_125/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + "Traceback (most recent call last):\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 19%|█▊ | 117/625 [00:54<06:30, 1.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 19%|█▉ | 118/625 [00:55<05:37, 1.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_124/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_124/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_124/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 20%|█▉ | 124/625 [00:56<02:31, 3.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:32 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_128/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_128/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_128/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:33 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_132/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_132/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_132/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_126/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_126/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_126/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 20%|██ | 125/625 [00:58<05:59, 1.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_127/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_127/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_127/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 20%|██ | 127/625 [00:58<04:17, 1.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_133/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_133/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_133/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:35 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_129/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_129/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_129/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:35 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_131/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_131/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_131/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:35 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_130/IN.DAT\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 20%|██ | 128/625 [00:59<05:22, 1.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_130/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_130/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 21%|██ | 129/625 [01:00<05:09, 1.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:36 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_134/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_134/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_134/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:36 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_135/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_135/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_135/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 21%|██ | 130/625 [01:00<04:47, 1.72it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 21%|██ | 132/625 [01:01<03:35, 2.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:37 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_136/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_136/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_136/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 21%|██▏ | 133/625 [01:01<02:48, 2.92it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 21%|██▏ | 134/625 [01:02<04:02, 2.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:38 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_139/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_139/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_139/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_137/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_137/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_137/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 22%|██▏ | 135/625 [01:03<05:06, 1.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_140/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_140/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_140/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 22%|██▏ | 136/625 [01:03<04:04, 2.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_138/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_138/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_138/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:40 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_142/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_142/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_142/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:40 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_141/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_141/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_141/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:40 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_143/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_143/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_143/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 22%|██▏ | 137/625 [01:05<06:55, 1.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_147/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_147/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_147/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_145/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_145/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_145/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 22%|██▏ | 138/625 [01:05<05:53, 1.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_144/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_144/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_144/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 23%|██▎ | 141/625 [01:06<03:11, 2.53it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 23%|██▎ | 142/625 [01:06<03:22, 2.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 23%|██▎ | 143/625 [01:06<02:47, 2.87it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_146/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_146/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_146/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 23%|██▎ | 144/625 [01:07<04:24, 1.82it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 23%|██▎ | 145/625 [01:08<04:19, 1.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_155/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_155/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_155/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_149/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_149/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_149/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_148/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_148/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_148/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 24%|██▎ | 147/625 [01:09<03:43, 2.14it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 24%|██▎ | 148/625 [01:09<03:55, 2.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:46 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_151/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_151/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_151/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:46 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_153/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_153/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_153/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 24%|██▍ | 149/625 [01:10<04:47, 1.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_154/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_154/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_154/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_150/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_150/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_150/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_158/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_158/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_158/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_152/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_152/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_152/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 24%|██▍ | 150/625 [01:12<06:32, 1.21it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 24%|██▍ | 151/625 [01:12<05:18, 1.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:48 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_156/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_156/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_156/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 24%|██▍ | 152/625 [01:12<04:46, 1.65it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_157/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_157/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_157/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 24%|██▍ | 153/625 [01:13<04:39, 1.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_159/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_159/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_159/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 25%|██▍ | 154/625 [01:13<04:12, 1.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_160/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_160/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_160/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 25%|██▍ | 155/625 [01:14<03:22, 2.32it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 25%|██▍ | 156/625 [01:14<03:00, 2.60it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 25%|██▌ | 158/625 [01:15<02:55, 2.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:51 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_163/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_163/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_163/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 25%|██▌ | 159/625 [01:16<04:57, 1.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 26%|██▌ | 161/625 [01:16<02:57, 2.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:52 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_161/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_161/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_161/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:52 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_165/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_165/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_165/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:52 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_162/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_162/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_162/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_169/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_169/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_169/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_164/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_164/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_164/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 26%|██▌ | 162/625 [01:18<05:09, 1.50it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 26%|██▌ | 163/625 [01:18<05:11, 1.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:54 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_167/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_167/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_167/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 26%|██▌ | 164/625 [01:19<04:33, 1.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.The IN.DAT file does not contain any obsolete variables.\n", + "\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_166/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_166/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_166/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_173/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_173/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_173/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_170/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_170/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_170/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 26%|██▋ | 165/625 [01:19<04:36, 1.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_172/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_172/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_172/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 27%|██▋ | 166/625 [01:20<04:38, 1.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:56 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_171/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_171/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_171/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:56 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_168/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_168/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_168/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 27%|██▋ | 167/625 [01:20<03:44, 2.04it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 27%|██▋ | 168/625 [01:21<03:32, 2.16it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 27%|██▋ | 169/625 [01:21<03:11, 2.38it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 28%|██▊ | 172/625 [01:22<02:10, 3.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:58 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_174/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_174/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_174/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 28%|██▊ | 173/625 [01:23<04:56, 1.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:54:59 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_180/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_180/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_180/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_175/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_175/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_175/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 28%|██▊ | 174/625 [01:24<05:39, 1.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_177/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_177/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_177/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_179/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_179/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_179/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 28%|██▊ | 176/625 [01:25<04:48, 1.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:01 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_176/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_176/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_176/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:01 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_184/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_184/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_184/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:02 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_181/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_181/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_181/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 28%|██▊ | 177/625 [01:26<04:46, 1.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:02 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_183/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_183/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_183/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:02 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_182/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_182/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_182/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 28%|██▊ | 178/625 [01:27<05:27, 1.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_186/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_186/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_186/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_178/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_178/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_178/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_185/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_185/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_185/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 29%|██▊ | 179/625 [01:27<04:24, 1.68it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 29%|██▉ | 180/625 [01:27<03:49, 1.94it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 29%|██▉ | 181/625 [01:28<04:14, 1.74it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_189/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_189/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_189/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 29%|██▉ | 184/625 [01:29<03:20, 2.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:05 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_187/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_187/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_187/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 30%|██▉ | 185/625 [01:30<02:55, 2.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 30%|██▉ | 187/625 [01:31<03:18, 2.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:06 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_191/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_191/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_191/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_190/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_190/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_190/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_188/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_188/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_188/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_196/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_196/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_196/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:08 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_192/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_192/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_192/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 30%|███ | 188/625 [01:32<04:26, 1.64it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:08 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_193/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_193/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_193/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 30%|███ | 189/625 [01:32<04:29, 1.62it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:09 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_195/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_195/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_195/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 30%|███ | 190/625 [01:33<04:47, 1.52it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_199/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_199/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_199/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 31%|███ | 191/625 [01:34<04:37, 1.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_194/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_194/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_194/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 31%|███ | 192/625 [01:34<03:39, 1.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_198/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_198/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_198/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables." + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 31%|███ | 194/625 [01:35<03:15, 2.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:11 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_197/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_197/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_100-200/run_197/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 31%|███ | 195/625 [01:36<03:53, 1.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_202/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_202/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_202/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 31%|███▏ | 196/625 [01:36<03:35, 1.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_200/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_200/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_200/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 32%|███▏ | 197/625 [01:37<03:50, 1.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 32%|███▏ | 198/625 [01:37<04:00, 1.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:13 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_201/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_201/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_201/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 32%|███▏ | 199/625 [01:38<03:35, 1.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:14 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_208/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_208/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_208/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 32%|███▏ | 200/625 [01:39<04:47, 1.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:15 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_205/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_205/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_205/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 32%|███▏ | 201/625 [01:39<04:08, 1.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:15 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_206/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_206/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_206/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:15 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_203/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_203/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_203/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 32%|███▏ | 202/625 [01:39<03:12, 2.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:15 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_207/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_207/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_207/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:16 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_204/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_204/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_204/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 32%|███▏ | 203/625 [01:40<04:20, 1.62it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 33%|███▎ | 204/625 [01:40<03:48, 1.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:17 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_209/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_209/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_209/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 33%|███▎ | 205/625 [01:41<04:07, 1.70it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 33%|███▎ | 206/625 [01:42<03:56, 1.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_210/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_210/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_210/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 33%|███▎ | 207/625 [01:42<03:25, 2.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_211/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_211/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_211/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_212/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_212/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_212/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 33%|███▎ | 209/625 [01:43<02:49, 2.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_213/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_213/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_213/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:20 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_214/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_214/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_214/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:20 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_216/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_216/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_216/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 34%|███▎ | 210/625 [01:44<04:21, 1.58it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 34%|███▍ | 212/625 [01:45<03:30, 1.96it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:21 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_215/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_215/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_215/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 34%|███▍ | 214/625 [01:46<03:26, 1.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_220/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_220/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_220/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 34%|███▍ | 215/625 [01:46<03:24, 2.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_221/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_221/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_221/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_218/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_218/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_218/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_217/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_217/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_217/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_225/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_225/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_225/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_219/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_219/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_219/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 35%|███▍ | 216/625 [01:48<05:13, 1.30it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables." + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 35%|███▌ | 219/625 [01:48<03:12, 2.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:24 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_222/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_222/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_222/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:25 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_223/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_223/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_223/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 36%|███▌ | 222/625 [01:49<02:16, 2.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:25 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_224/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_224/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_224/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:25 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_226/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_226/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_226/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 36%|███▌ | 224/625 [01:51<03:34, 1.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:27 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_228/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_228/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_228/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:27 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_232/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_232/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_232/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:27 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_227/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_227/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_227/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 36%|███▌ | 225/625 [01:52<03:52, 1.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_231/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_231/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_231/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_229/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_229/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_229/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 36%|███▋ | 227/625 [01:52<03:21, 1.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:29 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_233/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_233/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_233/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:29 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_234/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_234/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_234/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 36%|███▋ | 228/625 [01:54<04:26, 1.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:30 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_236/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_236/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_236/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 37%|███▋ | 231/625 [01:54<02:34, 2.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:30 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_230/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_230/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_230/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_239/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_239/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_239/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 37%|███▋ | 232/625 [01:55<03:16, 2.00it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_237/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_237/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_237/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 37%|███▋ | 233/625 [01:56<03:31, 1.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:32 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_235/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_235/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_235/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 38%|███▊ | 236/625 [01:56<02:08, 3.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:32 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_238/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_238/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_238/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:33 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_240/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_240/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_240/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_244/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_244/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_244/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 38%|███▊ | 237/625 [01:58<03:47, 1.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_243/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_243/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_243/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 38%|███▊ | 238/625 [01:58<03:26, 1.88it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 38%|███▊ | 239/625 [01:58<03:03, 2.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 38%|███▊ | 240/625 [01:58<02:34, 2.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:35 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_242/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_242/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_242/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:35 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_241/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_241/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_241/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 39%|███▊ | 241/625 [01:59<02:56, 2.18it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 39%|███▉ | 243/625 [02:00<02:24, 2.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:36 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_247/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_247/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_247/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:36 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_245/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_245/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_245/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:37 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_248/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_248/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_248/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:37 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_251/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_251/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_251/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:37 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_246/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_246/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_246/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 39%|███▉ | 244/625 [02:01<04:21, 1.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:37 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_249/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_249/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_249/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 39%|███▉ | 245/625 [02:02<04:24, 1.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:38 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_252/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_252/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_252/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 39%|███▉ | 246/625 [02:02<03:57, 1.60it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 40%|███▉ | 247/625 [02:03<03:13, 1.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_250/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_250/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_250/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " 40%|███▉ | 248/625 [02:03<03:02, 2.07it/s] f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 40%|███▉ | 249/625 [02:03<02:29, 2.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 40%|████ | 251/625 [02:04<02:01, 3.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:40 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_253/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_253/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_253/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:40 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_254/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_254/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_254/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_255/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_255/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_255/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_258/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_258/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_258/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_257/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_257/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_257/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_256/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_256/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_256/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 40%|████ | 252/625 [02:06<04:29, 1.38it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 41%|████ | 255/625 [02:06<02:31, 2.44it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 41%|████ | 256/625 [02:07<02:23, 2.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_260/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_260/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_260/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_263/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_263/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_263/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 41%|████▏ | 258/625 [02:07<02:14, 2.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_259/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_259/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_259/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_261/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_261/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_261/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_264/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_264/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_264/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 41%|████▏ | 259/625 [02:08<02:45, 2.21it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 42%|████▏ | 260/625 [02:09<03:03, 1.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_262/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_262/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_262/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 42%|████▏ | 262/625 [02:09<02:49, 2.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:46 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_265/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_265/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_265/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:46 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_268/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_268/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_268/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:46 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_266/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_266/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_266/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_269/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_269/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_269/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_270/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_270/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_270/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 42%|████▏ | 263/625 [02:11<04:31, 1.33it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " 43%|████▎ | 266/625 [02:11<02:16, 2.63it/s] f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:48 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_267/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_267/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_267/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 43%|████▎ | 267/625 [02:12<03:11, 1.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_274/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_274/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_274/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_271/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_271/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_271/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 43%|████▎ | 268/625 [02:13<03:02, 1.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 43%|████▎ | 269/625 [02:13<02:36, 2.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_272/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_272/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_272/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 43%|████▎ | 270/625 [02:13<02:25, 2.44it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 43%|████▎ | 271/625 [02:14<02:54, 2.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:50 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_273/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_273/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_273/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:51 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_277/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_277/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_277/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:51 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_275/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_275/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_275/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:52 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_276/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_276/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_276/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 44%|████▎ | 273/625 [02:16<03:52, 1.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:52 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_278/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_278/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_278/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:52 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_281/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_281/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_281/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 44%|████▍ | 275/625 [02:17<03:27, 1.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 44%|████▍ | 276/625 [02:17<03:22, 1.72it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_282/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_282/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_282/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_279/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_279/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_279/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 44%|████▍ | 278/625 [02:18<02:32, 2.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:54 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_280/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_280/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_280/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:54 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_284/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_284/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_284/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_286/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_286/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_286/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 45%|████▍ | 280/625 [02:19<02:48, 2.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_283/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_283/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_283/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_287/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_287/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_287/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:56 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_285/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_285/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_285/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 45%|████▌ | 283/625 [02:20<02:37, 2.17it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 46%|████▌ | 285/625 [02:21<02:11, 2.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:58 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_290/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_290/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_290/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:58 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_288/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_288/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_288/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:58 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_289/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_289/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_289/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:58 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_291/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_291/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_291/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 46%|████▌ | 287/625 [02:22<02:31, 2.23it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:59 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_292/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_292/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_292/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 46%|████▌ | 288/625 [02:23<03:05, 1.82it/s]Traceback (most recent call last):\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:55:59 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_294/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_294/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_294/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_296/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_296/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_296/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 46%|████▋ | 290/625 [02:24<02:47, 2.00it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 47%|████▋ | 291/625 [02:24<02:53, 1.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_297/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_297/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_297/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:01 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_293/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_293/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_293/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:01 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_295/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_295/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_295/IN.DAT\n", + "This is longer than 110 columns.\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:01 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_299/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_299/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_299/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 47%|████▋ | 292/625 [02:25<02:46, 2.00it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 47%|████▋ | 293/625 [02:25<02:27, 2.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:01 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_298/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_298/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_200-300/run_298/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 48%|████▊ | 297/625 [02:27<01:35, 3.43it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 48%|████▊ | 298/625 [02:27<01:49, 2.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_300/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_300/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_300/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 48%|████▊ | 299/625 [02:27<02:02, 2.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_302/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_302/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_302/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:05 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_304/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_304/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_304/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:05 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_301/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_301/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_301/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:05 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_305/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_305/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_305/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:05 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_303/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_303/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_303/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 48%|████▊ | 301/625 [02:30<03:35, 1.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:06 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_307/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_307/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_307/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 48%|████▊ | 302/625 [02:30<03:02, 1.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:06 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_309/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_309/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_309/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:06 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_310/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_310/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_310/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:06 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_306/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_306/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_306/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 48%|████▊ | 303/625 [02:31<03:07, 1.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_308/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_308/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_308/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 49%|████▊ | 304/625 [02:31<02:27, 2.17it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 49%|████▉ | 305/625 [02:32<02:57, 1.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:08 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_311/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_311/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_311/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 49%|████▉ | 307/625 [02:32<01:49, 2.91it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 49%|████▉ | 309/625 [02:32<01:36, 3.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:09 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_313/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_313/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_313/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_312/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_312/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_312/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 50%|████▉ | 311/625 [02:34<02:49, 1.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 50%|████▉ | 312/625 [02:34<02:34, 2.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:11 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_314/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_314/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_314/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:11 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_315/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_315/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_315/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 50%|█████ | 313/625 [02:36<03:24, 1.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_316/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_316/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_316/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_318/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_318/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_318/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_317/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_317/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_317/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_322/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_322/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_322/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 50%|█████ | 314/625 [02:36<03:17, 1.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_319/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_319/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_319/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 50%|█████ | 315/625 [02:37<03:04, 1.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:13 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_320/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_320/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_320/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 51%|█████ | 316/625 [02:37<02:41, 1.92it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:13 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_321/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_321/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_321/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 51%|█████ | 317/625 [02:38<02:54, 1.77it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 51%|█████ | 318/625 [02:38<02:59, 1.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:14 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_323/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_323/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_323/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:14 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_326/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_326/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_326/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:14 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_324/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_324/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_324/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 51%|█████ | 320/625 [02:39<02:17, 2.21it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 51%|█████▏ | 321/625 [02:39<02:29, 2.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:16 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_325/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_325/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_325/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 52%|█████▏ | 324/625 [02:41<02:07, 2.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:17 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_327/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_327/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_327/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 52%|█████▏ | 325/625 [02:41<01:51, 2.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.The IN.DAT file does not contain any obsolete variables.\n", + "\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:17 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_330/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_330/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_330/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:17 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_328/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_328/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_328/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 52%|█████▏ | 326/625 [02:42<02:43, 1.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_329/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_329/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_329/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 52%|█████▏ | 328/625 [02:43<02:17, 2.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_331/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_331/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_331/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.The IN.DAT file does not contain any obsolete variables.\n", + "\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_333/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_333/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_333/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_334/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_334/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_334/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_332/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_332/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_332/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 53%|█████▎ | 329/625 [02:44<02:55, 1.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:20 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_335/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_335/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_335/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:20 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_338/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_338/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_338/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:21 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_336/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_336/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_336/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:21 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_337/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_337/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_337/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 53%|█████▎ | 330/625 [02:45<04:05, 1.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 53%|█████▎ | 333/625 [02:45<02:13, 2.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_339/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_339/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_339/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 54%|█████▎ | 335/625 [02:46<01:54, 2.54it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 54%|█████▍ | 337/625 [02:47<01:42, 2.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_340/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_340/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_340/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:24 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_341/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_341/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_341/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:24 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_343/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_343/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_343/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 54%|█████▍ | 339/625 [02:48<02:30, 1.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:25 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_342/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_342/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_342/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:25 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_345/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_345/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_345/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 54%|█████▍ | 340/625 [02:50<03:19, 1.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:26 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_348/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_348/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_348/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 55%|█████▍ | 341/625 [02:50<02:36, 1.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:26 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_344/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_344/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_344/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 55%|█████▍ | 342/625 [02:50<02:37, 1.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " tmargmin_cs has been ignored.\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:26 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:26 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_346/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_346/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_347/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_347/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Inequality constraints : 00\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Total constraints : 26\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_347/IN.DAT\n", + "This is longer than 110 columns.\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_346/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:27 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_349/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_349/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_349/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:27 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_351/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_351/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_351/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 55%|█████▍ | 343/625 [02:51<02:38, 1.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 55%|█████▌ | 344/625 [02:51<02:47, 1.68it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 55%|█████▌ | 346/625 [02:52<01:41, 2.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_350/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_350/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_350/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 56%|█████▌ | 349/625 [02:52<01:12, 3.82it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 56%|█████▌ | 350/625 [02:53<02:10, 2.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:29 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_354/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_354/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_354/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 56%|█████▌ | 351/625 [02:54<02:32, 1.79it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_352/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_352/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_352/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_353/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_353/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_353/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_357/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_357/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_357/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_355/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_355/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_355/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 56%|█████▋ | 352/625 [02:55<03:13, 1.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_360/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_360/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_360/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_359/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_359/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_359/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:32 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_358/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_358/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_358/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 56%|█████▋ | 353/625 [02:56<03:37, 1.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:32 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_356/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_356/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_356/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:33 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_361/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_361/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_361/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 57%|█████▋ | 355/625 [02:57<02:57, 1.52it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " 57%|█████▋ | 356/625 [02:57<02:30, 1.79it/s] final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_362/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_362/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_362/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_363/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_363/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_363/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 57%|█████▋ | 358/625 [02:58<02:07, 2.09it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_364/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_364/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_364/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 57%|█████▋ | 359/625 [02:58<02:03, 2.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:35 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_366/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_366/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_366/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 58%|█████▊ | 361/625 [02:59<01:50, 2.38it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 58%|█████▊ | 363/625 [03:00<01:35, 2.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:36 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_368/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_368/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_368/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 58%|█████▊ | 364/625 [03:00<01:27, 2.99it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:37 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_365/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_365/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_365/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 58%|█████▊ | 365/625 [03:01<02:44, 1.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:38 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_371/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_371/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_371/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:38 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_367/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_367/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_367/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:38 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_374/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_374/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_374/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:38 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_369/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_369/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_369/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 59%|█████▊ | 366/625 [03:02<03:10, 1.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_370/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_370/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_370/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_372/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_372/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_372/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 59%|█████▊ | 367/625 [03:03<02:42, 1.58it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 59%|█████▉ | 368/625 [03:04<02:59, 1.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:40 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_376/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_376/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_376/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:40 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_373/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_373/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_373/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 59%|█████▉ | 371/625 [03:04<01:43, 2.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 60%|█████▉ | 372/625 [03:05<01:44, 2.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_375/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_375/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_375/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 60%|█████▉ | 373/625 [03:05<01:36, 2.61it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 60%|█████▉ | 374/625 [03:06<01:54, 2.20it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 60%|██████ | 375/625 [03:06<01:49, 2.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:42 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_379/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_379/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_379/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 60%|██████ | 376/625 [03:06<01:49, 2.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_377/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_377/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_377/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 60%|██████ | 377/625 [03:07<02:15, 1.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_378/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_378/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_378/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.The IN.DAT file does not contain any obsolete variables.\n", + "\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_383/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_383/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_383/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.The IN.DAT file does not contain any obsolete variables.\n", + "\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_382/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_382/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_382/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_381/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_381/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_381/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_380/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_380/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_380/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_384/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_384/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_384/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_386/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_386/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_386/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_385/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_385/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_385/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 60%|██████ | 378/625 [03:09<03:52, 1.06it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 61%|██████ | 379/625 [03:10<03:09, 1.30it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 61%|██████▏ | 383/625 [03:10<01:20, 3.00it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 61%|██████▏ | 384/625 [03:10<01:15, 3.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_388/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_388/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_388/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 62%|██████▏ | 385/625 [03:11<01:18, 3.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_389/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_389/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_389/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 62%|██████▏ | 386/625 [03:11<01:19, 3.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_387/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_387/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_387/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:48 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_392/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_392/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_392/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_390/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_390/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_390/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_391/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_391/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_391/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 62%|██████▏ | 387/625 [03:13<03:32, 1.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_395/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_395/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_395/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:50 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_396/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_396/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_396/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 62%|██████▏ | 389/625 [03:14<02:24, 1.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:50 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_398/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_398/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_398/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 62%|██████▏ | 390/625 [03:14<02:14, 1.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:50 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_394/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_394/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_394/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:51 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_393/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_393/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_393/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 63%|██████▎ | 391/625 [03:15<01:59, 1.95it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 63%|██████▎ | 392/625 [03:15<01:53, 2.05it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 63%|██████▎ | 394/625 [03:15<01:15, 3.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 63%|██████▎ | 395/625 [03:16<01:16, 3.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:52 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_397/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_397/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_397/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 63%|██████▎ | 396/625 [03:16<01:11, 3.19it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 64%|██████▎ | 397/625 [03:17<01:33, 2.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables. tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:54 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_406/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_406/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_406/IN.DAT\n", + "This is longer than 110 columns.\n", + "\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:54 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_402/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_402/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_402/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:54 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_400/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_400/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_400/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_399/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_399/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_300-400/run_399/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 64%|██████▍ | 399/625 [03:19<02:21, 1.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_404/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_404/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_404/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_408/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_408/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_408/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_407/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_407/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_407/IN.DAT\n", + "This is longer than 110 columns.\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_401/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_401/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_401/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 64%|██████▍ | 400/625 [03:20<02:34, 1.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:56 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_405/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_405/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_405/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:56 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_409/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_409/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_409/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:56 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_403/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_403/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_403/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 64%|██████▍ | 401/625 [03:20<02:18, 1.61it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 64%|██████▍ | 402/625 [03:21<02:21, 1.57it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 65%|██████▍ | 405/625 [03:21<01:18, 2.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:57 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_411/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_411/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_411/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 65%|██████▍ | 406/625 [03:22<01:19, 2.76it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 65%|██████▌ | 408/625 [03:22<00:54, 4.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:59 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_413/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_413/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_413/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 65%|██████▌ | 409/625 [03:23<01:36, 2.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:56:59 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_410/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_410/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_410/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 66%|██████▌ | 410/625 [03:24<02:04, 1.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_412/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_412/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_412/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:01 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_417/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_417/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_417/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:01 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_414/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_414/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_414/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:01 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_415/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_415/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_415/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 66%|██████▌ | 412/625 [03:25<02:16, 1.56it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 66%|██████▌ | 413/625 [03:26<02:00, 1.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:02 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_418/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_418/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_418/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 66%|██████▌ | 414/625 [03:26<01:43, 2.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:02 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_416/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_416/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_416/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 67%|██████▋ | 416/625 [03:27<01:34, 2.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_419/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_419/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_419/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_420/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_420/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_420/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 67%|██████▋ | 417/625 [03:27<01:38, 2.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_421/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_421/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_421/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_423/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_423/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_423/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_426/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_426/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_426/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_422/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_422/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_422/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 67%|██████▋ | 418/625 [03:29<02:33, 1.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:05 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_424/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_424/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_424/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 67%|██████▋ | 420/625 [03:29<01:47, 1.90it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 67%|██████▋ | 421/625 [03:30<01:34, 2.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:06 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_427/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_427/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_427/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:06 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_425/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_425/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_425/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 68%|██████▊ | 422/625 [03:30<01:55, 1.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_428/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_428/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_428/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_429/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_429/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_429/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 68%|██████▊ | 426/625 [03:31<01:04, 3.10it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 68%|██████▊ | 427/625 [03:33<01:48, 1.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:09 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_432/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_432/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_432/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 68%|██████▊ | 428/625 [03:33<01:52, 1.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:09 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_430/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_430/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_430/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:09 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_431/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_431/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_431/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_438/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_438/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_438/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_433/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_433/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_433/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_437/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_437/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_437/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_435/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_435/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_435/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:11 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_434/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_434/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_434/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:11 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_436/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_436/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_436/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 69%|██████▉ | 431/625 [03:36<02:12, 1.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:12 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_439/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_439/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_439/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 70%|██████▉ | 436/625 [03:36<00:52, 3.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:13 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_441/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_441/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_441/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:13 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_440/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_440/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_440/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 70%|███████ | 438/625 [03:38<01:20, 2.31it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 70%|███████ | 440/625 [03:39<01:12, 2.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:15 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_445/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_445/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_445/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:15 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_446/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_446/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_446/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 71%|███████ | 441/625 [03:39<01:30, 2.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:15 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_447/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_447/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_447/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:16 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_443/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_443/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_443/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:16 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_442/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_442/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_442/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 71%|███████ | 442/625 [03:41<02:08, 1.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:17 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_448/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_448/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_448/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:17 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_444/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_444/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_444/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 71%|███████ | 445/625 [03:41<01:21, 2.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_449/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_449/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_449/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_452/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_452/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_452/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 71%|███████▏ | 446/625 [03:42<01:42, 1.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_450/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_450/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_450/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_453/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_453/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_453/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 72%|███████▏ | 448/625 [03:43<01:21, 2.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_451/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_451/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_451/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 72%|███████▏ | 450/625 [03:44<01:03, 2.76it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:21 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_456/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_456/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_456/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 72%|███████▏ | 451/625 [03:45<01:49, 1.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:21 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_455/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_455/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_455/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 72%|███████▏ | 452/625 [03:45<01:44, 1.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_454/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_454/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_454/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 73%|███████▎ | 454/625 [03:46<01:24, 2.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_457/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_457/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_457/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_462/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_462/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_462/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 73%|███████▎ | 455/625 [03:47<01:37, 1.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_463/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_463/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_463/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_458/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_458/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_458/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + "op.write(models, ft.constants.nout)\n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + "models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:24 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_459/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_459/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_459/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:24 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_460/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_460/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_460/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 73%|███████▎ | 456/625 [03:48<01:53, 1.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:24 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_461/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_461/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_461/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 73%|███████▎ | 457/625 [03:48<01:47, 1.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:24 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_465/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_465/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_465/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 74%|███████▎ | 460/625 [03:49<00:55, 2.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:25 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_464/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_464/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_464/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:26 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_467/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_467/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_467/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 74%|███████▍ | 461/625 [03:50<01:38, 1.67it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 74%|███████▍ | 463/625 [03:51<01:09, 2.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:27 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_466/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_466/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_466/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 74%|███████▍ | 465/625 [03:51<01:01, 2.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_469/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_469/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_469/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_473/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_473/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_473/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_468/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_468/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_468/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 75%|███████▍ | 467/625 [03:53<01:30, 1.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:29 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_471/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_471/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_471/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:29 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_470/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_470/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_470/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 75%|███████▌ | 469/625 [03:54<01:15, 2.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:30 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_476/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_476/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_476/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 75%|███████▌ | 470/625 [03:54<01:07, 2.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:30 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_474/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_474/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_474/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 75%|███████▌ | 471/625 [03:55<01:17, 1.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_472/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_472/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_472/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 76%|███████▌ | 472/625 [03:55<01:12, 2.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_477/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_477/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_477/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 76%|███████▌ | 473/625 [03:55<01:06, 2.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:32 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_475/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_475/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_475/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:33 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_482/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_482/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_482/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 76%|███████▌ | 474/625 [03:57<01:54, 1.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:33 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_478/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_478/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_478/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 76%|███████▌ | 476/625 [03:57<01:07, 2.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_479/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_479/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_479/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_480/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_480/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 76%|███████▋ | 478/625 [03:58<00:46, 3.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_480/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_481/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_481/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_481/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 479/625 [03:59<01:06, 2.19it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:35 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_483/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_483/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_483/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 77%|███████▋ | 480/625 [04:00<01:26, 1.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:36 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_490/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_490/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_490/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 77%|███████▋ | 481/625 [04:00<01:32, 1.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:36 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_484/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_484/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_484/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 482/625 [04:01<01:16, 1.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:37 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_485/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_485/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_485/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 483/625 [04:01<01:09, 2.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:37 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_488/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_488/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_488/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:37 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_486/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_486/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_486/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:38 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_489/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_489/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_489/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 77%|███████▋ | 484/625 [04:02<01:22, 1.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:38 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_487/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_487/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_487/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 78%|███████▊ | 485/625 [04:03<01:31, 1.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_493/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_493/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_493/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 486/625 [04:03<01:14, 1.88it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 78%|███████▊ | 487/625 [04:03<01:04, 2.14it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 78%|███████▊ | 488/625 [04:04<01:09, 1.98it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 490/625 [04:04<00:54, 2.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:40 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_492/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_492/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_492/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_491/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_491/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_491/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_496/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_496/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_496/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:42 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_495/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_495/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_495/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:42 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_494/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_494/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_494/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:42 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_500/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_500/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_500/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:42 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_498/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_498/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_498/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 79%|███████▊ | 492/625 [04:06<01:29, 1.49it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 79%|███████▉ | 493/625 [04:07<01:17, 1.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 494/625 [04:07<01:07, 1.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_497/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_497/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_497/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_499/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_499/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_400-500/run_499/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 495/625 [04:07<01:04, 2.02it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_501/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_501/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_501/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 79%|███████▉ | 496/625 [04:08<01:03, 2.04it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 80%|███████▉ | 499/625 [04:09<00:41, 3.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_505/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_505/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_505/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_502/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_502/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_502/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:46 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_503/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_503/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_503/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 80%|████████ | 500/625 [04:10<01:02, 2.01it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 80%|████████ | 502/625 [04:11<00:51, 2.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_506/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_506/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_506/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_504/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_504/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_504/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_507/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_507/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_507/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 503/625 [04:11<00:56, 2.16it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:48 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_509/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_509/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_509/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 504/625 [04:12<01:05, 1.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:48 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_508/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_508/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_508/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 81%|████████ | 505/625 [04:13<01:20, 1.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:49 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_511/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_511/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_511/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 81%|████████ | 507/625 [04:13<00:52, 2.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 508/625 [04:14<00:56, 2.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:50 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_514/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_514/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_514/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:50 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_513/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_513/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_513/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:50 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_510/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_510/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_510/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:51 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_512/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_512/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_512/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:51 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_516/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_516/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_516/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 82%|████████▏ | 510/625 [04:15<01:11, 1.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 511/625 [04:16<00:56, 2.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:52 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_515/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_515/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_515/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 512/625 [04:16<00:53, 2.10it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 82%|████████▏ | 514/625 [04:16<00:38, 2.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_518/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_518/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_518/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 515/625 [04:17<00:42, 2.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_520/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_520/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_520/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:53 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_519/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_519/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_519/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:54 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_517/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_517/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_517/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 83%|████████▎ | 517/625 [04:18<00:53, 2.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_521/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_521/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_521/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:55 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_526/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_526/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_526/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:56 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_523/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_523/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_523/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 83%|████████▎ | 519/625 [04:20<01:12, 1.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:56 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_525/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_525/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_525/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 83%|████████▎ | 520/625 [04:20<00:57, 1.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:56 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_524/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_524/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_524/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 521/625 [04:21<00:56, 1.85it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 84%|████████▎ | 522/625 [04:21<00:44, 2.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:57 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_522/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_522/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_522/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 84%|████████▎ | 523/625 [04:21<00:48, 2.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:58 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_529/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_529/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_529/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:58 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_528/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_528/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_528/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:58 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_527/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_527/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_527/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 84%|████████▍ | 524/625 [04:22<01:00, 1.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:59 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_530/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_530/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_530/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 84%|████████▍ | 525/625 [04:23<00:59, 1.69it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 84%|████████▍ | 526/625 [04:23<00:56, 1.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:57:59 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_532/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_532/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_532/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 84%|████████▍ | 527/625 [04:24<00:44, 2.22it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 84%|████████▍ | 528/625 [04:24<00:41, 2.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_534/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_534/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_534/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_531/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_531/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_531/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:00 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_533/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_533/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_533/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 85%|████████▍ | 529/625 [04:25<00:47, 2.02it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 85%|████████▍ | 530/625 [04:25<00:37, 2.52it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 85%|████████▍ | 531/625 [04:26<00:50, 1.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:02 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_535/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_535/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_535/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 85%|████████▌ | 533/625 [04:26<00:36, 2.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:02 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_537/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_537/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_537/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 85%|████████▌ | 534/625 [04:26<00:31, 2.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_536/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_536/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_536/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:03 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_538/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_538/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_538/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_544/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_544/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_544/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_539/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_539/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_539/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 86%|████████▌ | 535/625 [04:28<01:03, 1.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 86%|████████▌ | 536/625 [04:28<00:49, 1.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:04 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_540/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_540/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_540/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:05 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_541/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_541/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_541/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 86%|████████▌ | 537/625 [04:29<00:53, 1.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:05 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_542/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_542/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_542/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 86%|████████▌ | 538/625 [04:29<00:51, 1.68it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 86%|████████▋ | 540/625 [04:30<00:39, 2.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:06 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_543/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_543/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_543/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 87%|████████▋ | 541/625 [04:30<00:33, 2.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_546/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_546/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_546/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 87%|████████▋ | 542/625 [04:31<00:39, 2.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_545/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_545/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_545/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:07 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_551/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_551/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_551/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " 87%|████████▋ | 543/625 [04:32<00:42, 1.93it/s] self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 87%|████████▋ | 544/625 [04:32<00:43, 1.86it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 87%|████████▋ | 546/625 [04:33<00:35, 2.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:09 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_548/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_548/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_548/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:09 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_547/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_547/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_547/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:09 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_550/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_550/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_550/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_549/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_549/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_549/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 88%|████████▊ | 547/625 [04:34<00:44, 1.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_556/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_556/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_556/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:10 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_552/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_552/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_552/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:11 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_554/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_554/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_554/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 88%|████████▊ | 548/625 [04:35<01:05, 1.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:11 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_553/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_553/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_553/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:11 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_555/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_555/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_555/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 88%|████████▊ | 549/625 [04:36<00:53, 1.43it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 88%|████████▊ | 551/625 [04:36<00:30, 2.42it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 88%|████████▊ | 552/625 [04:36<00:30, 2.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:13 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_557/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_557/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_557/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 89%|████████▊ | 554/625 [04:37<00:29, 2.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:13 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_559/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_559/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_559/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 89%|████████▉ | 556/625 [04:38<00:26, 2.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:14 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_558/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_558/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_558/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 89%|████████▉ | 557/625 [04:38<00:25, 2.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:14 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_561/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_561/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_561/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:15 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_562/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_562/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_562/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:15 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_564/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_564/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_564/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 89%|████████▉ | 558/625 [04:40<00:46, 1.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:16 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_563/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_563/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_563/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 90%|████████▉ | 560/625 [04:40<00:35, 1.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:17 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_560/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_560/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_560/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 90%|████████▉ | 561/625 [04:41<00:34, 1.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables. tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:17 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_568/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_568/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_568/IN.DAT\n", + "This is longer than 110 columns.\n", + "\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + "The IN.DAT file does not contain any obsolete variables. **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:17 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_567/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_567/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_567/IN.DAT\n", + "This is longer than 110 columns.\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_565/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_565/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_565/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_569/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_569/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_569/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:18 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_566/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_566/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_566/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 90%|█████████ | 564/625 [04:43<00:34, 1.75it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 90%|█████████ | 565/625 [04:43<00:33, 1.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_572/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_572/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_572/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:19 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_571/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_571/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_571/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 91%|█████████ | 570/625 [04:45<00:16, 3.36it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:21 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_570/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_570/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_570/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_576/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_576/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_576/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_573/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_573/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_573/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:22 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_575/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_575/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_575/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 91%|█████████▏| 571/625 [04:46<00:28, 1.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_574/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_574/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_574/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_577/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_577/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_577/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_582/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_582/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_582/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:23 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_578/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_578/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_578/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 92%|█████████▏| 572/625 [04:47<00:35, 1.48it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 92%|█████████▏| 573/625 [04:47<00:29, 1.75it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 92%|█████████▏| 574/625 [04:48<00:26, 1.90it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 92%|█████████▏| 575/625 [04:48<00:22, 2.21it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 92%|█████████▏| 576/625 [04:48<00:22, 2.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 92%|█████████▏| 578/625 [04:49<00:14, 3.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:25 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_581/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_581/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_581/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:25 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_579/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_579/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_579/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:26 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_580/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_580/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_580/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 93%|█████████▎| 579/625 [04:50<00:23, 1.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:26 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_583/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_583/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_583/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 93%|█████████▎| 581/625 [04:50<00:18, 2.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:26 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_585/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_585/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_585/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 93%|█████████▎| 583/625 [04:52<00:20, 2.03it/s]Traceback (most recent call last):\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_590/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_590/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_590/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_584/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_584/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_584/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + "The IN.DAT file does not contain any obsolete variables.\n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_587/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_587/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_587/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:28 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_591/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_591/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_591/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:29 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_588/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_588/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_588/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:29 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_589/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_589/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_589/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:29 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_586/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_586/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_586/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 93%|█████████▎| 584/625 [04:53<00:25, 1.61it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 94%|█████████▍| 586/625 [04:54<00:20, 1.89it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:30 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_592/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_592/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_592/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())Traceback (most recent call last):\n", + "\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + "Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 94%|█████████▍| 587/625 [04:55<00:24, 1.58it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 95%|█████████▍| 591/625 [04:55<00:10, 3.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:31 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_594/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_594/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_594/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:32 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_593/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_593/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_593/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:32 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_595/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_595/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_595/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:32 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_596/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_596/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_596/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:33 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_597/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_597/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_597/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 95%|█████████▍| 593/625 [04:57<00:15, 2.01it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 95%|█████████▌| 594/625 [04:58<00:16, 1.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_598/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_598/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_598/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 95%|█████████▌| 596/625 [04:58<00:11, 2.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_599/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_599/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_500-600/run_599/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:34 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_603/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_603/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_603/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:35 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_600/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_600/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_600/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 96%|█████████▌| 597/625 [04:59<00:17, 1.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:35 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_601/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_601/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_601/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 96%|█████████▌| 598/625 [05:00<00:14, 1.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:36 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_602/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_602/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_602/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:36 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_604/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_604/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_604/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 96%|█████████▌| 600/625 [05:00<00:09, 2.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:37 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_607/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_607/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_607/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:37 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_605/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_605/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_605/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 96%|█████████▌| 601/625 [05:01<00:15, 1.52it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:38 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_606/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_606/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_606/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 97%|█████████▋| 604/625 [05:02<00:07, 2.64it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 97%|█████████▋| 605/625 [05:03<00:08, 2.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_609/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_609/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_609/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:39 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_608/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_608/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_608/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 97%|█████████▋| 606/625 [05:04<00:10, 1.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:40 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_614/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_614/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_614/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 97%|█████████▋| 607/625 [05:04<00:10, 1.69it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 97%|█████████▋| 608/625 [05:05<00:09, 1.78it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 97%|█████████▋| 609/625 [05:05<00:07, 2.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_610/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_610/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_610/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_613/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_613/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_613/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:41 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_616/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_616/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_616/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:42 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_611/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_611/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_611/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 98%|█████████▊| 610/625 [05:06<00:08, 1.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:42 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_612/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_612/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_612/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:42 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_615/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_615/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_615/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_620/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_620/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_620/IN.DAT\n", + "This is longer than 110 columns.\n", + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_619/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_619/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_619/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 98%|█████████▊| 611/625 [05:07<00:12, 1.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:43 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_617/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_617/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_617/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 98%|█████████▊| 612/625 [05:08<00:08, 1.48it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 98%|█████████▊| 615/625 [05:08<00:04, 2.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 99%|█████████▊| 617/625 [05:08<00:02, 3.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:44 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_618/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_618/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_618/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 99%|█████████▉| 619/625 [05:09<00:01, 3.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_621/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_621/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_621/IN.DAT\n", + "This is longer than 110 columns.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:45 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_622/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_622/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_622/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + " 99%|█████████▉| 620/625 [05:10<00:01, 2.51it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:46 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_624/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_624/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_624/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|█████████▉| 622/625 [05:10<00:00, 3.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:46 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_625/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_625/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_625/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.0.2 Release Date :: 2024-01-25\n", + " Tag No. : v3.0.2-24-g00e1700\n", + " Branch : main\n", + " Git log : Added check to see if fimp(2) deviates from default value, if it does… ([hash]3053)\n", + " Date/time : 27 Feb 2024 11:58:47 +00:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory :\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_623/IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_623/IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 26\n", + " Inequality constraints : 00\n", + " Total constraints : 26\n", + " Iteration variables : 45\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/ra/campaigns/3p_mc10hz7esn/runs/runs_0-100000000/runs_0-1000000/runs_0-10000/runs_600-700/run_623/IN.DAT\n", + "This is longer than 110 columns.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "100%|█████████▉| 624/625 [05:11<00:00, 3.10it/s]Traceback (most recent call last):\n", + " File \"/home/jon/anaconda3/envs/easyVVUQ-process/bin/process\", line 33, in \n", + " sys.exit(load_entry_point('process', 'console_scripts', 'process')())\n", + " File \"/home/jon/code/process/process/main.py\", line 650, in main\n", + " Process(args)\n", + " File \"/home/jon/code/process/process/main.py\", line 127, in __init__\n", + " self.run_mode()\n", + " File \"/home/jon/code/process/process/main.py\", line 204, in run_mode\n", + " self.run.run()\n", + " File \"/home/jon/code/process/process/main.py\", line 363, in run\n", + " self.run_scan(self.solver)\n", + " File \"/home/jon/code/process/process/main.py\", line 475, in run_scan\n", + " final.finalise(self.models, self.ifail)\n", + " File \"/home/jon/code/process/process/final.py\", line 23, in finalise\n", + " op.write(models, ft.constants.nout)\n", + " File \"/home/jon/code/process/process/output.py\", line 44, in write\n", + " models.physics.outplas()\n", + " File \"/home/jon/code/process/process/physics.py\", line 4239, in outplas\n", + " f\"Confinement scaling law: { physics_variables.tauscl[physics_variables.isc-1]}\",\n", + "IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed\n", + "100%|██████████| 625/625 [05:11<00:00, 2.00it/s]\n" + ] + } + ], + "source": [ + "# Create PCE sampler\n", + "# Vary 3 uncertain inputs\n", + "vary = {\n", + " \"fimp_14\": cp.Uniform(\n", + " 1.0e-5,\n", + " 1.0e-4,\n", + " # Soln value: 5.0e-6: outside bounds\n", + " ),\n", + " \"psepbqarmax\": cp.Uniform(\n", + " 8.7,\n", + " 10.0,\n", + " ),\n", + " \"triang\": cp.Uniform(\n", + " 0.4,\n", + " 0.6,\n", + " ),\n", + "}\n", + "sampler = uq.sampling.PCESampler(vary=vary, polynomial_order=4)\n", + "# Optionally, try MC\n", + "# sampler = uq.sampling.MCSampler(vary=vary, n_mc_samples=125)\n", + "# Actually 625 samples in practice: Saltelli method\n", + "\n", + "# Add sampler to campaign\n", + "campaign.set_sampler(sampler)\n", + "\n", + "# Draw samples, execute and collate\n", + "campaign.execute().collate(progress_bar=True)\n", + "samples = campaign.get_collation_result()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.9" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "0d602a62c005a1edaecc467843c8abc40b106c408f7dd3fdae5e868ff234b67e" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/solution_points/large_tokamak/lt_orig_IN.DAT b/solution_points/large_tokamak/lt_orig_IN.DAT new file mode 100644 index 0000000..3810d6c --- /dev/null +++ b/solution_points/large_tokamak/lt_orig_IN.DAT @@ -0,0 +1,613 @@ +************************************************************************* +***** ***** +***** Generic large tokamak file ***** +***** James Morris, UKAEA ***** +***** 28/06/23 ***** +***** ***** +************************************************************************* + +* Run Information * +******************* + +runtitle = Generic large tokamak + +* Figure of merit - minimise major radius +minmax = 1 + +* Error tolerance for VMCON +epsvmc = 1e-7 + +* Constraint Equations - Consistency Equations * +************************************************ + +* Beta consistency * +*------------------* +icc = 1 +ixc = 5 * beta +beta = 0.03 + +* Global power balance * +*----------------------* +icc = 2 + +* Radial build consistency * +*--------------------------* +icc = 11 + +* Constraint Equations - Limit Equations * +****************************************** + +* Density upper limit * +*---------------------* +icc = 5 +ixc = 6 * dene [m-3] +fdene = 1.2 +dene = 7.5E19 + +* Neutron wall load upper limit * +*-------------------------------* +icc = 8 +ixc = 14 * fwalld +fwalld = 1.0 +* wall load limit [MW/m2] +walalw = 2.0 + +* Fusion power upper limit * +*--------------------------* + +icc = 9 +ixc = 26 * ffuspow +* Maximum allowable value fusion power [MW] +powfmax = 3000 + +* Burn time lower limit * +*-----------------------* +icc = 13 +ixc = 21 * ftburn +* minimum burn time [s] +tbrnmn = 7200.0 + +* L-H threshold scaling * +*-----------------------* +icc = 15 +ixc = 103 * flhthresh +boundu(103) = 10.0 + +* Injection power upper limit * +*-----------------------------* +icc = 30 +ixc = 46 * fpinj +* Maximum allowable value for injected power [MW] +pinjalw = 200.0 + +* Net electric power lower limit * +*--------------------------------* +icc = 16 +ixc = 25 * fpnetel +* Minimum allowable value for net eletric power [MW] +pnetelin = 400.0 + +* Beta upper limit * +*------------------* +icc = 24 +ixc = 36 * fbetatry +fbetatry = 0.5 + +* Max TF field * +*--------------* +icc = 25 +ixc = 35 * fpeakb +* Maximum allowable value for toroidal magnetic field [T] +bmxlim = 14.0 + +* Central solenoid EOF current density upper limit * +*--------------------------------------------------* +icc = 26 +ixc = 37 * coheof [A/m2] +ixc = 38 * fjohc +boundu(38) = 1.0 +coheof = 1.5E7 +fjohc = 0.6 + +* Central solenoid BOP current density upper limit * +*--------------------------------------------------* +icc = 27 +ixc = 39 * fjohc0 +ixc = 41 * fcohbop +boundu(39) = 1.0 +fjohc0 = 0.6 +fcohbop = 0.9 + +* I_op/I_Crit TF coil limit * +*---------------------------* +icc = 33 +ixc = 50 * fiooic +boundu(50) = 1.0 +fiooic = 0.65 + +* Dump voltage upper limit * +*--------------------------* +icc = 34 +ixc = 51 * fvdump +fvdump = 1.0 +vdalw = 10.0 + +* J_winding pack protection * +*---------------------------* +icc = 35 +ixc = 53 * fjprot +fjprot = 1.0 + +* TF temp marg lower limit * +*--------------------------* +icc = 36 +ixc = 54 * ftmargtf +* Minimum allowable temperature margin [K] +tmargmin = 1.5 + +* CS coil temp margin lower limit * +*---------------------------------* +icc = 60 +ixc = 106 * ftmargoh +tmargmin_cs = 1.5 + +* Lower limit on taup/taueff (ratio alpha particle/energy confinement times) * +*-------------------------------------------------------------------------------* +icc = 62 +ixc = 110 * ftaulimit +taulimit = 5.0 + +* dump time constraint for VV stresses * +*--------------------------------------* +icc = 65 +ixc = 113 * fmaxvvstress +fmaxvvstress = 1.0 + +* CS stress limit * +*-----------------* +icc = 72 +ixc = 123 * foh_stress +foh_stress = 1.0 +* allowable hoop stress in Central Solenoid structural material [Pa] +alstroh = 7.5D8 + +* neped_neped_ ,(ineq_con081) ,6.7365E-01 ,6.7365E-01 ,6.7365E-01 ,6.7365E-01 ,6.7364958927861762E-01 ,6.7364958927861829E-01 +Upper_Lim._on_Psep_*_Bt_/_q_A_R ,(ineq_con068) ,2.7816E-03 ,2.8676E-03 ,2.7816E-03 ,2.8676E-03 ,2.7816131769182739E-03 ,2.7816131769184960E-03 +TF_coil_case_stress_upper_limit ,(ineq_con031) ,1.3727E-03 ,1.3721E-03 ,1.3727E-03 ,1.3721E-03 ,1.3726682971630932E-03 ,1.3726682971826332E-03 +TF_coil_conduit_stress_upper_lim_ ,(ineq_con032) ,1.7478E-01 ,1.7478E-01 ,1.7478E-01 ,1.7478E-01 ,1.7478469926471685E-01 ,1.7478469926473483E-01 diff --git a/studies/lt_feas_non_opt_sol.ipynb b/studies/lt_feas_non_opt_sol.ipynb new file mode 100644 index 0000000..c39097b --- /dev/null +++ b/studies/lt_feas_non_opt_sol.ipynb @@ -0,0 +1,1135 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Obtaining feasible non-optimised solutions\n", + "\n", + "Convert LT to inequality problem, run optimisation to get solution vector. Then run non-optimising input at solution vector to produce a response. This response should be identical to the optimised case and also feasible." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "%load_ext autoreload\n", + "%autoreload 2\n", + "from infeas.mfile_to_in import convert\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Convert original input file to inequalities\n", + "\n", + "Take original LT IN.DAT (`lt_orig_IN.DAT`). Convert it to an inequalities input file (`lt_ineqs_IN.DAT`), maintaining any f-value initialisations." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "f-values removed as optimisation parameters = 22\n" + ] + }, + { + "data": { + "text/plain": [ + "'lt_ineqs_IN.DAT'" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "convert(\n", + " original_in_name=\"lt_orig_IN.DAT\",\n", + " new_in_name=\"lt_ineqs_IN.DAT\",\n", + " no_optimisation=False,\n", + " n_equalities=3,\n", + " remove_f_value_inits=False,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now run with VMCON, modified to converge on feasible solutions only. Result is inequality-solved, completely feasible solution (`lt_ineqs_MFILE.DAT`).\n", + "\n", + "## Create once-through input file from feasible solution point for UQ studies\n", + "\n", + "Use the feasible solution vector to create a once-through (non-optimising) input file for UQ studies." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Optimisation parameter f-values ignored = 0\n", + "f-values removed as optimisation parameters = 0\n" + ] + }, + { + "data": { + "text/plain": [ + "PosixPath('lt_ineqs_sol_IN.DAT')" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "convert(\n", + " original_in_name=\"lt_ineqs_IN.DAT\",\n", + " mfile_name=\"lt_ineqs_MFILE.DAT\",\n", + " new_in_name=\"lt_ineqs_sol_IN.DAT\",\n", + " no_optimisation=True,\n", + " n_equalities=3,\n", + " remove_f_value_inits=False,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Checking the new non-optimising (once-through) solution input file\n", + "\n", + "### Is the input file the same, just starting at the solution vector?\n", + "\n", + "Want to compare `lt_ineqs_IN.DAT` (original optimising input) with `lt_ineqs_sol_IN.DAT` (solution vector non-optimising input) to see the differences, which should just be the optimisation parameters. Loads of diffs, so get original input into standard form (using `standardise_input.ipynb`) to get `lt_ineqs_std_IN.DAT`. Then compare `lt_ineqs_std_IN.DAT` with `lt_ineqs_sol_IN.DAT`: diffs should just be solution vector.\n", + "\n", + "```\n", + "diff lt_ineqs_std_IN.DAT lt_ineqs_sol_IN.DAT --side-by-side --suppress-common-lines\n", + "```\n", + "\n", + "Result: only the solution vector is different in the new input file, `lt_ineqs_sol_IN.DAT`: the optimisation parameters are initialised at the solution point.\n", + "\n", + "### Does the once-through input produce a feasible solution?\n", + "\n", + "`lt_ineqs_sol_IN.DAT` is a once-through file that should produce a the same feasible output as in the original (optimising) case. Run the once-through input file to check this.\n", + "\n", + "When running it to produce `lt_ineqs_sol_MFILE.DAT` however, 2 inequality constraints are violated (16 and 35 are negative). The solution vector that was feasible, obtained when optimising in the previous step, doesn't produce a feasible solution when running once-through; it should.\n", + "\n", + "### Possible reasons for optimising and non-optimising solution differences\n", + "\n", + "Perhaps an example of non-idempotence: could remove by running models repetitively. Perhaps need to increase model calls to 6/10/beyond? Let's test this." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Try multiple model evaluations: 6 evals\n", + "\n", + "Use Process fork to evaluate models 6 times, with modified VMCON convergence criterion.\n", + "\n", + "Run `lt_ineqs_6_evals_IN.DAT` (copy of `lt_ineqs_IN.DAT` to avoid overwriting original MFILE): the original LT input file, but converted to inequalities. \n", + "\n", + "Converges: all ineqs feasible (positive) (`lt_ineqs_6_evals_MFILE.DAT`).\n", + "\n", + "Now convert this to a once-through input file at the solution vector." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Optimisation parameter f-values ignored = 0\n", + "f-values removed as optimisation parameters = 0\n" + ] + }, + { + "data": { + "text/plain": [ + "PosixPath('lt_ineqs_6_evals_sol_IN.DAT')" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "convert(\n", + " original_in_name=\"lt_ineqs_6_evals_IN.DAT\",\n", + " mfile_name=\"lt_ineqs_6_evals_MFILE.DAT\",\n", + " new_in_name=\"lt_ineqs_6_evals_sol_IN.DAT\",\n", + " no_optimisation=True,\n", + " n_equalities=3,\n", + " remove_f_value_inits=False,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Run this `lt_ineqs_6_evals_sol_IN.DAT`. No ineq constraints are violated (negative) in the output; the once-through solution is feasible.\n", + "\n", + "**To ensure a feasible optimised solution and a feasible once-through solution at that solution vector, need to evaluate models 6 times.**\n", + "\n", + "## Do constraint residuals differ between optimised and non-optimised case?\n", + "\n", + "The optimised solution is feasible. The once-through solution, at the same solution vector, is also feasible. But are the constraint residuals the same for `lt_ineqs_6_evals_MFILE.DAT` (opt soln) and `lt_ineqs_6_evals_sol_MFILE.DAT` (non-opt soln)? \n", + "\n", + "The constraint residuals (`constraint_residuals.csv`) are very similar, but not the same. They should be. eq constraints are all different, ineq cons agree to 1e-3 or better." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Constraint nameConstraint number6 eval opt6 eval non-opt10 eval opt10 eval non-opt
0Beta_consistency_normalised_residue ...(eq_con001)7.147300e-07-0.0000297.147300e-07-0.000029
1Global_power_balance_consistencynormalised_res...(eq_con002)1.440900e-07-0.0000331.440900e-07-0.000033
2Radial_build_consistencynormalised_residue ...(eq_con011)1.103100e-10-0.0000041.103100e-10-0.000004
3Density_upper_limit ...(ineq_con005)1.393000e-030.0013941.393000e-030.001394
4Neutron_wall_load_upper_limit ...(ineq_con008)9.578900e-010.9580109.578900e-010.958010
5Fusion_power_upper_limit_ ...(ineq_con009)8.401700e-010.8402808.401700e-010.840280
6Burn_time_lower_limit ...(ineq_con013)1.268500e-020.0126181.268500e-020.012618
7L-H_power_threshold_limit ...(ineq_con015)4.236700e-010.4236204.236700e-010.423620
8Injection_power_upper_limit ...(ineq_con030)1.646600e+001.6464001.646600e+001.646400
9Net_electric_power_lower_limit_ ...(ineq_con016)3.283600e-020.0327103.283600e-020.032710
10Beta_upper_limit ...(ineq_con024)2.152400e-020.0215182.152400e-020.021518
11Peak_toroidal_field_upper_limit ...(ineq_con025)1.443300e-010.1443301.443300e-010.144330
12CS_coil_EOF_current_density_limit ...(ineq_con026)6.120100e-020.0610856.120100e-020.061085
13CS_coil_BOP_current_density_limit ...(ineq_con027)1.492900e-010.1491901.492900e-010.149190
14I_op_/_I_critical_(TF_coil) ...(ineq_con033)1.549200e-030.0015281.549200e-030.001528
15Dump_voltage_upper_limit_ ...(ineq_con034)7.558200e-040.0007727.558200e-040.000772
16J_winding_pack/J_protection_limit ...(ineq_con035)3.219400e-030.0032083.219400e-030.003208
17TF_coil_temp._margin_lower_limit_ ...(ineq_con036)2.330600e-010.2330002.330600e-010.233000
18CS_temperature_margin_lower_limit ...(ineq_con060)2.754400e-020.0273462.754400e-020.027346
19taup/taueff_ ...(ineq_con062)5.872700e-030.0058865.872700e-030.005886
20Dump_time_set_by_VV_stress_ ...(ineq_con065)1.272300e+001.2723001.272300e+001.272300
21CS_Tresca_yield_criterion ...(ineq_con072)2.105900e-030.0020722.105900e-030.002072
22ne0_>_neped_ ...(ineq_con081)6.736500e-010.6736506.736500e-010.673650
23Upper_Lim._on_Psep_*_Bt_/_q_A_R ...(ineq_con068)2.781600e-030.0028682.781600e-030.002868
24TF_coil_case_stress_upper_limit ...(ineq_con031)1.372700e-030.0013721.372700e-030.001372
25TF_coil_conduit_stress_upper_lim_ ...(ineq_con032)1.747800e-010.1747801.747800e-010.174780
\n", + "
" + ], + "text/plain": [ + " Constraint name Constraint number \n", + "0 Beta_consistency_normalised_residue ... (eq_con001) \\\n", + "1 Global_power_balance_consistencynormalised_res... (eq_con002) \n", + "2 Radial_build_consistencynormalised_residue ... (eq_con011) \n", + "3 Density_upper_limit ... (ineq_con005) \n", + "4 Neutron_wall_load_upper_limit ... (ineq_con008) \n", + "5 Fusion_power_upper_limit_ ... (ineq_con009) \n", + "6 Burn_time_lower_limit ... (ineq_con013) \n", + "7 L-H_power_threshold_limit ... (ineq_con015) \n", + "8 Injection_power_upper_limit ... (ineq_con030) \n", + "9 Net_electric_power_lower_limit_ ... (ineq_con016) \n", + "10 Beta_upper_limit ... (ineq_con024) \n", + "11 Peak_toroidal_field_upper_limit ... (ineq_con025) \n", + "12 CS_coil_EOF_current_density_limit ... (ineq_con026) \n", + "13 CS_coil_BOP_current_density_limit ... (ineq_con027) \n", + "14 I_op_/_I_critical_(TF_coil) ... (ineq_con033) \n", + "15 Dump_voltage_upper_limit_ ... (ineq_con034) \n", + "16 J_winding_pack/J_protection_limit ... (ineq_con035) \n", + "17 TF_coil_temp._margin_lower_limit_ ... (ineq_con036) \n", + "18 CS_temperature_margin_lower_limit ... (ineq_con060) \n", + "19 taup/taueff_ ... (ineq_con062) \n", + "20 Dump_time_set_by_VV_stress_ ... (ineq_con065) \n", + "21 CS_Tresca_yield_criterion ... (ineq_con072) \n", + "22 ne0_>_neped_ ... (ineq_con081) \n", + "23 Upper_Lim._on_Psep_*_Bt_/_q_A_R ... (ineq_con068) \n", + "24 TF_coil_case_stress_upper_limit ... (ineq_con031) \n", + "25 TF_coil_conduit_stress_upper_lim_ ... (ineq_con032) \n", + "\n", + " 6 eval opt 6 eval non-opt 10 eval opt 10 eval non-opt \n", + "0 7.147300e-07 -0.000029 7.147300e-07 -0.000029 \n", + "1 1.440900e-07 -0.000033 1.440900e-07 -0.000033 \n", + "2 1.103100e-10 -0.000004 1.103100e-10 -0.000004 \n", + "3 1.393000e-03 0.001394 1.393000e-03 0.001394 \n", + "4 9.578900e-01 0.958010 9.578900e-01 0.958010 \n", + "5 8.401700e-01 0.840280 8.401700e-01 0.840280 \n", + "6 1.268500e-02 0.012618 1.268500e-02 0.012618 \n", + "7 4.236700e-01 0.423620 4.236700e-01 0.423620 \n", + "8 1.646600e+00 1.646400 1.646600e+00 1.646400 \n", + "9 3.283600e-02 0.032710 3.283600e-02 0.032710 \n", + "10 2.152400e-02 0.021518 2.152400e-02 0.021518 \n", + "11 1.443300e-01 0.144330 1.443300e-01 0.144330 \n", + "12 6.120100e-02 0.061085 6.120100e-02 0.061085 \n", + "13 1.492900e-01 0.149190 1.492900e-01 0.149190 \n", + "14 1.549200e-03 0.001528 1.549200e-03 0.001528 \n", + "15 7.558200e-04 0.000772 7.558200e-04 0.000772 \n", + "16 3.219400e-03 0.003208 3.219400e-03 0.003208 \n", + "17 2.330600e-01 0.233000 2.330600e-01 0.233000 \n", + "18 2.754400e-02 0.027346 2.754400e-02 0.027346 \n", + "19 5.872700e-03 0.005886 5.872700e-03 0.005886 \n", + "20 1.272300e+00 1.272300 1.272300e+00 1.272300 \n", + "21 2.105900e-03 0.002072 2.105900e-03 0.002072 \n", + "22 6.736500e-01 0.673650 6.736500e-01 0.673650 \n", + "23 2.781600e-03 0.002868 2.781600e-03 0.002868 \n", + "24 1.372700e-03 0.001372 1.372700e-03 0.001372 \n", + "25 1.747800e-01 0.174780 1.747800e-01 0.174780 " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.read_csv(\"constraint_residuals.csv\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 10 model evaluations\n", + "\n", + "Run `lt_ineqs_10_evals_IN.DAT` (copy of `lt_ineqs_IN.DAT` to avoid overwriting MFILE): the original LT input file, but converted to inequalities. \n", + "\n", + "Converges: all ineqs feasible (positive) (`lt_ineqs_10_evals_MFILE.DAT`).\n", + "\n", + "Now convert this to a once-through input file at the solution vector." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Optimisation parameter f-values ignored = 0\n", + "f-values removed as optimisation parameters = 0\n" + ] + }, + { + "data": { + "text/plain": [ + "PosixPath('lt_ineqs_10_evals_sol_IN.DAT')" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "convert(\n", + " original_in_name=\"lt_ineqs_10_evals_IN.DAT\",\n", + " mfile_name=\"lt_ineqs_10_evals_MFILE.DAT\",\n", + " new_in_name=\"lt_ineqs_10_evals_sol_IN.DAT\",\n", + " no_optimisation=True,\n", + " n_equalities=3,\n", + " remove_f_value_inits=False,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Run this `lt_ineqs_10_evals_sol_IN.DAT`. No ineq constraints violated (negative); again completely feasible. However, constraint residuals again differ. eq constraints all different, ineq constraints again slightly different between opt and non-opt outputs.\n", + "\n", + "In fact, the values for the opt and non-opt constraint residuals are the same for both 6 and 10 evals: going from 6 to 10 evals makes no difference. However, there is a clear difference betwen the opt and non-opt constraint residuals. The difference is minor, but there: there shouldn't be any difference." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Intermediary Conclusion\n", + "\n", + "An input file was taken and converted to inequalities. It was then run with a modified VMCON, which forces the inequality constraints to be feasible at the solution. A feasible solution was found, and used to create a once-through input at the solution point. This produced a non-feasible solution, however.\n", + "\n", + "Upping the number of model evaluations from 1 to 6, both the optimised and subsequent non-optimised solutions were feasible. The non-optimising input file is therefore a good candidate for further UQ work.\n", + "\n", + "However, the constraint residuals differ between the optimised and non-optimised solutions. Going from 6 to 10 model evaluations didn't change this. These values should be the same; further investigations need to be done to find the source of this discrepancy.\n", + "\n", + "## Reducing discrepancy between optimised solutions and corresponding non-optimised outputs\n", + "\n", + "The significant figures in the MFILE.DAT were increased from 5 to 17 (full double precision) to improve the precision on the solution vector.\n", + "\n", + "Modifications are now:\n", + "- VMCON convergence criterion (feasible solutions only)\n", + "- 6 model evaluations\n", + "- Higher precision in MFILE output (17 significant figures)\n", + "\n", + "Re-run the analysis to see what the effect is.\n", + "\n", + "```\n", + "cp lt_ineqs_IN.DAT lt_ineqs_precise_IN.DAT\n", + "process -i lt_ineqs_precise_IN.DAT\n", + "```\n", + "Then copy solution vector to new non-optimising IN.DAT:" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Optimisation parameter f-values ignored = 0\n", + "f-values removed as optimisation parameters = 0\n" + ] + }, + { + "data": { + "text/plain": [ + "PosixPath('lt_ineqs_precise_sol_IN.DAT')" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "convert(\n", + " original_in_name=\"lt_ineqs_precise_IN.DAT\",\n", + " mfile_name=\"lt_ineqs_precise_MFILE.DAT\",\n", + " new_in_name=\"lt_ineqs_precise_sol_IN.DAT\",\n", + " no_optimisation=True,\n", + " n_equalities=3,\n", + " remove_f_value_inits=False,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Then update constraint residuals data:" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Constraint nameConstraint number6 eval opt6 eval non-opt10 eval opt10 eval non-opt6 eval opt high sig figs6 eval non-opt high sig figs
0Beta_consistency_normalised_residue ...(eq_con001)7.147300e-07-0.0000297.147300e-07-0.0000297.147266e-077.147266e-07
1Global_power_balance_consistencynormalised_res...(eq_con002)1.440900e-07-0.0000331.440900e-07-0.0000331.440854e-071.440854e-07
2Radial_build_consistencynormalised_residue ...(eq_con011)1.103100e-10-0.0000041.103100e-10-0.0000041.103122e-101.103122e-10
3Density_upper_limit ...(ineq_con005)1.393000e-030.0013941.393000e-030.0013941.393037e-031.393037e-03
4Neutron_wall_load_upper_limit ...(ineq_con008)9.578900e-010.9580109.578900e-010.9580109.578915e-019.578915e-01
5Fusion_power_upper_limit_ ...(ineq_con009)8.401700e-010.8402808.401700e-010.8402808.401666e-018.401666e-01
6Burn_time_lower_limit ...(ineq_con013)1.268500e-020.0126181.268500e-020.0126181.268509e-021.268509e-02
7L-H_power_threshold_limit ...(ineq_con015)4.236700e-010.4236204.236700e-010.4236204.236693e-014.236693e-01
8Injection_power_upper_limit ...(ineq_con030)1.646600e+001.6464001.646600e+001.6464001.646602e+001.646602e+00
9Net_electric_power_lower_limit_ ...(ineq_con016)3.283600e-020.0327103.283600e-020.0327103.283599e-023.283599e-02
10Beta_upper_limit ...(ineq_con024)2.152400e-020.0215182.152400e-020.0215182.152362e-022.152362e-02
11Peak_toroidal_field_upper_limit ...(ineq_con025)1.443300e-010.1443301.443300e-010.1443301.443325e-011.443325e-01
12CS_coil_EOF_current_density_limit ...(ineq_con026)6.120100e-020.0610856.120100e-020.0610856.120150e-026.120150e-02
13CS_coil_BOP_current_density_limit ...(ineq_con027)1.492900e-010.1491901.492900e-010.1491901.492937e-011.492937e-01
14I_op_/_I_critical_(TF_coil) ...(ineq_con033)1.549200e-030.0015281.549200e-030.0015281.549169e-031.549169e-03
15Dump_voltage_upper_limit_ ...(ineq_con034)7.558200e-040.0007727.558200e-040.0007727.558231e-047.558231e-04
16J_winding_pack/J_protection_limit ...(ineq_con035)3.219400e-030.0032083.219400e-030.0032083.219420e-033.219420e-03
17TF_coil_temp._margin_lower_limit_ ...(ineq_con036)2.330600e-010.2330002.330600e-010.2330002.330586e-012.330586e-01
18CS_temperature_margin_lower_limit ...(ineq_con060)2.754400e-020.0273462.754400e-020.0273462.754400e-022.754400e-02
19taup/taueff_ ...(ineq_con062)5.872700e-030.0058865.872700e-030.0058865.872748e-035.872748e-03
20Dump_time_set_by_VV_stress_ ...(ineq_con065)1.272300e+001.2723001.272300e+001.2723001.272312e+001.272312e+00
21CS_Tresca_yield_criterion ...(ineq_con072)2.105900e-030.0020722.105900e-030.0020722.105932e-032.105932e-03
22ne0_>_neped_ ...(ineq_con081)6.736500e-010.6736506.736500e-010.6736506.736496e-016.736496e-01
23Upper_Lim._on_Psep_*_Bt_/_q_A_R ...(ineq_con068)2.781600e-030.0028682.781600e-030.0028682.781613e-032.781613e-03
24TF_coil_case_stress_upper_limit ...(ineq_con031)1.372700e-030.0013721.372700e-030.0013721.372668e-031.372668e-03
25TF_coil_conduit_stress_upper_lim_ ...(ineq_con032)1.747800e-010.1747801.747800e-010.1747801.747847e-011.747847e-01
\n", + "
" + ], + "text/plain": [ + " Constraint name Constraint number \n", + "0 Beta_consistency_normalised_residue ... (eq_con001) \\\n", + "1 Global_power_balance_consistencynormalised_res... (eq_con002) \n", + "2 Radial_build_consistencynormalised_residue ... (eq_con011) \n", + "3 Density_upper_limit ... (ineq_con005) \n", + "4 Neutron_wall_load_upper_limit ... (ineq_con008) \n", + "5 Fusion_power_upper_limit_ ... (ineq_con009) \n", + "6 Burn_time_lower_limit ... (ineq_con013) \n", + "7 L-H_power_threshold_limit ... (ineq_con015) \n", + "8 Injection_power_upper_limit ... (ineq_con030) \n", + "9 Net_electric_power_lower_limit_ ... (ineq_con016) \n", + "10 Beta_upper_limit ... (ineq_con024) \n", + "11 Peak_toroidal_field_upper_limit ... (ineq_con025) \n", + "12 CS_coil_EOF_current_density_limit ... (ineq_con026) \n", + "13 CS_coil_BOP_current_density_limit ... (ineq_con027) \n", + "14 I_op_/_I_critical_(TF_coil) ... (ineq_con033) \n", + "15 Dump_voltage_upper_limit_ ... (ineq_con034) \n", + "16 J_winding_pack/J_protection_limit ... (ineq_con035) \n", + "17 TF_coil_temp._margin_lower_limit_ ... (ineq_con036) \n", + "18 CS_temperature_margin_lower_limit ... (ineq_con060) \n", + "19 taup/taueff_ ... (ineq_con062) \n", + "20 Dump_time_set_by_VV_stress_ ... (ineq_con065) \n", + "21 CS_Tresca_yield_criterion ... (ineq_con072) \n", + "22 ne0_>_neped_ ... (ineq_con081) \n", + "23 Upper_Lim._on_Psep_*_Bt_/_q_A_R ... (ineq_con068) \n", + "24 TF_coil_case_stress_upper_limit ... (ineq_con031) \n", + "25 TF_coil_conduit_stress_upper_lim_ ... (ineq_con032) \n", + "\n", + " 6 eval opt 6 eval non-opt 10 eval opt 10 eval non-opt \n", + "0 7.147300e-07 -0.000029 7.147300e-07 -0.000029 \\\n", + "1 1.440900e-07 -0.000033 1.440900e-07 -0.000033 \n", + "2 1.103100e-10 -0.000004 1.103100e-10 -0.000004 \n", + "3 1.393000e-03 0.001394 1.393000e-03 0.001394 \n", + "4 9.578900e-01 0.958010 9.578900e-01 0.958010 \n", + "5 8.401700e-01 0.840280 8.401700e-01 0.840280 \n", + "6 1.268500e-02 0.012618 1.268500e-02 0.012618 \n", + "7 4.236700e-01 0.423620 4.236700e-01 0.423620 \n", + "8 1.646600e+00 1.646400 1.646600e+00 1.646400 \n", + "9 3.283600e-02 0.032710 3.283600e-02 0.032710 \n", + "10 2.152400e-02 0.021518 2.152400e-02 0.021518 \n", + "11 1.443300e-01 0.144330 1.443300e-01 0.144330 \n", + "12 6.120100e-02 0.061085 6.120100e-02 0.061085 \n", + "13 1.492900e-01 0.149190 1.492900e-01 0.149190 \n", + "14 1.549200e-03 0.001528 1.549200e-03 0.001528 \n", + "15 7.558200e-04 0.000772 7.558200e-04 0.000772 \n", + "16 3.219400e-03 0.003208 3.219400e-03 0.003208 \n", + "17 2.330600e-01 0.233000 2.330600e-01 0.233000 \n", + "18 2.754400e-02 0.027346 2.754400e-02 0.027346 \n", + "19 5.872700e-03 0.005886 5.872700e-03 0.005886 \n", + "20 1.272300e+00 1.272300 1.272300e+00 1.272300 \n", + "21 2.105900e-03 0.002072 2.105900e-03 0.002072 \n", + "22 6.736500e-01 0.673650 6.736500e-01 0.673650 \n", + "23 2.781600e-03 0.002868 2.781600e-03 0.002868 \n", + "24 1.372700e-03 0.001372 1.372700e-03 0.001372 \n", + "25 1.747800e-01 0.174780 1.747800e-01 0.174780 \n", + "\n", + " 6 eval opt high sig figs 6 eval non-opt high sig figs \n", + "0 7.147266e-07 7.147266e-07 \n", + "1 1.440854e-07 1.440854e-07 \n", + "2 1.103122e-10 1.103122e-10 \n", + "3 1.393037e-03 1.393037e-03 \n", + "4 9.578915e-01 9.578915e-01 \n", + "5 8.401666e-01 8.401666e-01 \n", + "6 1.268509e-02 1.268509e-02 \n", + "7 4.236693e-01 4.236693e-01 \n", + "8 1.646602e+00 1.646602e+00 \n", + "9 3.283599e-02 3.283599e-02 \n", + "10 2.152362e-02 2.152362e-02 \n", + "11 1.443325e-01 1.443325e-01 \n", + "12 6.120150e-02 6.120150e-02 \n", + "13 1.492937e-01 1.492937e-01 \n", + "14 1.549169e-03 1.549169e-03 \n", + "15 7.558231e-04 7.558231e-04 \n", + "16 3.219420e-03 3.219420e-03 \n", + "17 2.330586e-01 2.330586e-01 \n", + "18 2.754400e-02 2.754400e-02 \n", + "19 5.872748e-03 5.872748e-03 \n", + "20 1.272312e+00 1.272312e+00 \n", + "21 2.105932e-03 2.105932e-03 \n", + "22 6.736496e-01 6.736496e-01 \n", + "23 2.781613e-03 2.781613e-03 \n", + "24 1.372668e-03 1.372668e-03 \n", + "25 1.747847e-01 1.747847e-01 " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.read_csv(\"constraint_residuals.csv\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The optimised and non-optimised MFILEs agree very closely: remaining discrepancy could be due to insufficient model evaluations (could try increasing from 6 to 10).\n", + "\n", + "## Conclusion\n", + "\n", + "By modifing:\n", + "- VMCON convergence criterion (feasible solutions only)\n", + "- 6 model evaluations\n", + "- Higher precision in MFILE output (17 significant figures)\n", + "\n", + "the optimised and non-optimised solution agree very closely. By copying the solution vector from an optimised output, a non-optimising input can produce the same output. This is vital for reliability analysis at a solution point.\n", + "\n", + "Possibly increasing model evaluations could improve the agreement further (very slightly): this needs investigating." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "easyVVUQ-process", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tools/prep_sol_for_ra.ipynb b/tools/prep_sol_for_ra.ipynb new file mode 100644 index 0000000..3c7d79a --- /dev/null +++ b/tools/prep_sol_for_ra.ipynb @@ -0,0 +1,351 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Prepare Process Solution for Reliability Analysis\n", + "\n", + "Convert IN.DAT to inequality problem then run it. Take the solution vector from the MFILE.DAT and copy it back into the original inequality IN.DAT, but make it a \"once-through\" (non-optimising) input. This input file is then prepared for RA at the solution vector." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "%load_ext autoreload\n", + "%autoreload 2\n", + "from infeas.mfile_to_in import convert\n", + "import subprocess" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Convert original input file to inequalities\n", + "\n", + "Take original LT IN.DAT (`lt_orig_IN.DAT`). Convert it to an inequalities input file (`lt_ineqs_IN.DAT`), maintaining any f-value initialisations." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "f-values removed as optimisation parameters = 22\n" + ] + }, + { + "data": { + "text/plain": [ + "'lt_ineqs_before_conv_crit_mod_IN.DAT'" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "original_in_name = \"lt_orig_IN.DAT\"\n", + "ineqs_in_name = \"lt_ineqs_before_conv_crit_mod_IN.DAT\"\n", + "\n", + "convert(\n", + " original_in_name=original_in_name,\n", + " new_in_name=ineqs_in_name,\n", + " no_optimisation=False,\n", + " n_equalities=3,\n", + " remove_f_value_inits=False,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now run with VMCON. Result is inequality-solved solution." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " The total number of constraints is counted automatically and does not need to be stated in IN.DAT.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.1.0 Release Date :: 2024-03-21\n", + " Tag No. : code contains untracked changes\n", + " Branch : six-model-evals\n", + " Git log : Merge branch |ukaea:main| into six-model-evals\n", + " Date/time : 9 Apr 2024 13:54:32 +01:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory : /home/jon/code/easyVVUQ-process/solution_points/large_tokamak\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/solution_points/large_tokamak/lt_ineqs_before_conv_crit_mod_IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/solution_points/large_tokamak/lt_ineqs_before_conv_crit_mod_IN.DAT\n", + " Run title : Generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 03\n", + " Inequality constraints : 23\n", + " Total constraints : 26\n", + " Iteration variables : 22\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/solution_points/large_tokamak/lt_ineqs_before_conv_crit_mod_IN.DAT\n", + "This is longer than 110 columns.\n", + "13 | Convergence Parameter: 1.086E-08\n", + " \n", + " ************************************* PROCESS found a feasible solution **************************************\n", + " \n", + " Warning in routine OCMMNT :\n", + "Triple product = Vol-average electron density x Vol-average & electron temperature x Energy confinement time:\n", + "This is longer than 110 columns.\n", + " \n", + " ******************************************** Errors and Warnings *********************************************\n", + " \n", + " PROCESS status flag: Warning messages \n", + " \n", + " ID LEVEL MESSAGE\n", + "150 2 CHECK: Lower limit of volume averaged electron temperature (te) has been raised \n", + " \n", + "244 2 PHYSICS: Diamagnetic fraction is more than 1%, but not calculated. Consider usin\n", + " \n", + " \n", + " ******************************************* End of PROCESS Output ********************************************\n", + " \n" + ] + }, + { + "data": { + "text/plain": [ + "CompletedProcess(args=['process', '-i', 'lt_ineqs_before_conv_crit_mod_IN.DAT'], returncode=0)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "subprocess.run([\"process\", \"-i\", ineqs_in_name])" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "CompletedProcess(args='rm *SIG_TF.json *OUT.DAT', returncode=0)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Remove unwanted outputs\n", + "subprocess.run(\"rm *SIG_TF.json *OUT.DAT\", shell=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "\n", + "## Create once-through input file from solution point for UQ studies\n", + "\n", + "Use the solution vector to create a once-through (non-optimising) input file for UQ studies." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Optimisation parameter f-values ignored = 0\n", + "f-values removed as optimisation parameters = 0\n" + ] + }, + { + "data": { + "text/plain": [ + "PosixPath('lt_ineqs_before_conv_crit_mod_sol_IN.DAT')" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "input_name_stem = ineqs_in_name.split(\"_IN.DAT\")[0]\n", + "mfile_name = input_name_stem + \"_MFILE.DAT\"\n", + "sol_in_name = input_name_stem + \"_sol_IN.DAT\"\n", + "\n", + "convert(\n", + " original_in_name=ineqs_in_name,\n", + " mfile_name=mfile_name,\n", + " new_in_name=sol_in_name,\n", + " no_optimisation=True,\n", + " n_equalities=3,\n", + " remove_f_value_inits=False,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Optionally run the solution vector once-through IN.DAT." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The IN.DAT file does not contain any obsolete variables.\n", + " The total number of constraints is counted automatically and does not need to be stated in IN.DAT.\n", + " The total number of constraints is counted automatically and does not need to be stated in IN.DAT.\n", + " tmargmin_cs and tmargmin should not both be specified in IN.DAT.\n", + " tmargmin_cs has been ignored.\n", + " \n", + " **************************************************************************************************************\n", + " ************************************************** PROCESS ***************************************************\n", + " ************************************** Power Reactor Optimisation Code ***************************************\n", + " **************************************************************************************************************\n", + " \n", + " Program :\n", + " Version : 3.1.0 Release Date :: 2024-03-21\n", + " Tag No. : code contains untracked changes\n", + " Branch : six-model-evals\n", + " Git log : Merge branch |ukaea:main| into six-model-evals\n", + " Date/time : 9 Apr 2024 13:56:22 +01:00(hh:mm) UTC\n", + " User : jon\n", + " Computer : jon-Precision-3560\n", + " Directory : /home/jon/code/easyVVUQ-process/solution_points/large_tokamak\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/solution_points/large_tokamak/lt_ineqs_before_conv_crit_mod_sol_IN.DAT\n", + "This is longer than 110 columns.\n", + " Input : /home/jon/code/easyVVUQ-process/solution_points/large_tokamak/lt_ineqs_before_conv_crit_mod_sol_IN.DAT\n", + " Run title : generic large tokamak\n", + " Run type : Reactor concept design: Pulsed tokamak model, (c) CCFE\n", + " \n", + " **************************************************************************************************************\n", + " \n", + " Equality constraints : 03\n", + " Inequality constraints : 23\n", + " Total constraints : 26\n", + " Iteration variables : 22\n", + " Max iterations : 200\n", + " Figure of merit : +01 -- minimise major radius.\n", + " Convergence parameter : 1.00E-07\n", + " \n", + " **************************************************************************************************************\n", + " Warning in routine OCMMNT :\n", + " Input : /home/jon/code/easyVVUQ-process/solution_points/large_tokamak/lt_ineqs_before_conv_crit_mod_sol_IN.DAT\n", + "This is longer than 110 columns.\n", + " Warning in routine OCMMNT :\n", + "Triple product = Vol-average electron density x Vol-average & electron temperature x Energy confinement time:\n", + "This is longer than 110 columns.\n", + " \n", + " ******************************************** Errors and Warnings *********************************************\n", + " \n", + " PROCESS status flag: Warning messages \n", + " \n", + " ID LEVEL MESSAGE\n", + "244 2 PHYSICS: Diamagnetic fraction is more than 1%, but not calculated. Consider usin\n", + " \n", + " \n", + " ******************************************* End of PROCESS Output ********************************************\n", + " \n" + ] + }, + { + "data": { + "text/plain": [ + "CompletedProcess(args='rm *SIG_TF.json *OUT.DAT', returncode=0)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "subprocess.run([\"process\", \"-i\", sol_in_name])\n", + "# Remove unwanted outputs\n", + "subprocess.run(\"rm *SIG_TF.json *OUT.DAT\", shell=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Could extend to convert solution IN.DAT to template for UQ." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "easyVVUQ-process", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tools/standardise_input.ipynb b/tools/standardise_input.ipynb new file mode 100644 index 0000000..5fbd306 --- /dev/null +++ b/tools/standardise_input.ipynb @@ -0,0 +1,59 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Standardise IN.DAT\n", + "\n", + "Read in and write out an IN.DAT to get it into a standard form: useful for comparisons/diffs." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from process.io.in_dat import InDat\n", + "from pathlib import Path" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "original_in_name = \"lt_ineqs_IN.DAT\"\n", + "standardised_in_dat_name = \"lt_ineqs_std_IN.DAT\"\n", + "\n", + "original_in_dat_path = Path(original_in_name)\n", + "standardised_in_dat_path = Path(standardised_in_dat_name)\n", + "in_dat = InDat(original_in_dat_path)\n", + "in_dat.write_in_dat(standardised_in_dat_path)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "easyVVUQ-process", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}