parameter_sweep.functions
Module Contents
Functions
|
This function offers a general way to perform repeated optimizations |
|
This function is similar to the parameter_sweep function for exploring the parameter space while guranteeing a required number of solves. |
|
This function is similar to the parameter_sweep function for exploring the parameter space while guranteeing a required number of solves. |
- parameter_sweep.functions.parameter_sweep(build_model, build_sweep_params, build_outputs=None, csv_results_file_name=None, h5_results_file_name=None, h5_parent_group_name=None, optimize_function=None, optimize_kwargs=None, reinitialize_function=None, reinitialize_kwargs=None, reinitialize_before_sweep=False, probe_function=None, debugging_data_dir=None, interpolate_nan_outputs=False, num_samples=None, seed=None, number_of_subprocesses=None, build_model_kwargs=None, build_sweep_params_kwargs=None, build_outputs_kwargs=None)
This function offers a general way to perform repeated optimizations of a model for the purposes of exploring a parameter space while monitoring multiple outputs. If provided, writes single CSV file to
results_filewith all inputs and resulting outputs.- Parameters:
build_model – A function that can be called to build a Pyomo ConcreteModel, OR (deprecated) a Pyomo ConcreteModel containing a watertap flowsheet.
build_sweep_params – A function that can be called to build a dictionary containing the values to vary with the format
sweep_params['Short/Pretty-print Name'] = (model.fs.variable_or_param[index], lower_limit, upper_limit, num_samples). A uniform number of samplesnum_sampleswill be take between thelower_limitandupper_limit. OR (deprecated) the dictionary itself rather than a function for creating it.outputs (optional) – An optional function to produce a dictionary containing “short names” as keys and and Pyomo objects on
modelwhose values to report as values. E.g.,outputs['Short/Pretty-print Name'] = model.fs.variable_or_expression_to_report. OR (deprecated) the dictionary itself rather than a function for creating it. If neither is provided, i.e., outputs = None, the default behavior is to save all model variables, parameters, and expressions which provides very thorough results at the cost of large file sizes.csv_results_file_name (optional) – The path and file name to write a csv file. The default None does not write a csv file.
h5_results_file_name (optional) – The path and file name to write a h5 file. The default None does not write a file. Writing an h5 file will also create a companion text file {h5_results_file_name}.txt which contains the variable names contained within the H5 file.
h5_parent_group_name (optional) – Parent h5 groups for the parameter sweep inputs and outputs to be embedded in. The default is None and it accepts a string for the h5 group.
optimize_function (optional) – A user-defined function to perform the optimization of flowsheet
modeland loads the results back intomodel. The first argument of this function ismodel. The default uses the default IDAES solver, raising an exception if the termination condition is not optimal.optimize_kwargs (optional) – Dictionary of kwargs to pass into every call to
optimize_function. The first arg will always bemodel, e.g.,optimize_function(model, **optimize_kwargs). The default uses no kwargs.reinitialize_function (optional) – A user-defined function to perform the re-initialize the flowsheet
modelif the first call tooptimize_functionfails for any reason. Afterreinitialize_function, the parameter sweep tool will immediately calloptimize_functionagain.reinitialize_kwargs (optional) – Dictionary or kwargs to pass into every call to
reinitialize_function. The first arg will always bemodel, e.g.,reinitialize_function(model, **reinitialize_kwargs). The default uses no kwargs.reinitialize_before_sweep (optional) – Boolean option to reinitialize the flow sheet model before every parameter sweep realization. The default is False. Note the parameter sweep model will try to reinitialize the solve regardless of the option if the run fails.
probe_function (optional) – A user-defined function that can cheaply check if a current model configuration is solvable without actually reinitializing or solving.
debugging_data_dir (optional) – Save results on a per-process basis for parallel debugging purposes. If None no debugging data will be saved.
interpolate_nan_outputs (optional) – When the parameter sweep has finished, interior values of np.nan will be replaced with a value obtained via a linear interpolation of their surrounding valid neighbors. If true, a second output file with the extension “_clean” will be saved alongside the raw (un-interpolated) values.
num_samples (optional) – If the user is using sampling techniques rather than a linear grid of values, they need to set the number of samples
seed (optional) – If the user is using a random sampling technique, this sets the seed
number_of_subprocesses (optional) – Directive for fanning out subprocesses to perform parallel computation.
build_model_kwargs (optional) – A dictionary of kwargs to pass into the build_model function.
build_sweep_params_kwargs (optional) – A dictionary of kwargs to pass into the build_sweep_params function.
- Returns:
- A list were the first N columns are the values of the parameters passed
by
sweep_paramsand the remaining columns are the values of the simulation identified by theoutputsargument.
- Return type:
save_data
- parameter_sweep.functions.recursive_parameter_sweep(build_model, build_sweep_params, build_outputs=None, csv_results_file_name=None, h5_results_file_name=None, h5_parent_group_name=None, optimize_function=None, optimize_kwargs=None, reinitialize_function=None, reinitialize_kwargs=None, reinitialize_before_sweep=False, probe_function=None, debugging_data_dir=None, interpolate_nan_outputs=False, num_samples=None, seed=None, number_of_subprocesses=None)
This function is similar to the parameter_sweep function for exploring the parameter space while guranteeing a required number of solves. If provided, writes single CSV file to
results_filewith all inputs and resulting outputs.- Parameters:
model – A Pyomo ConcreteModel containing a watertap flowsheet, for best results it should be initialized before being passed to this function.
sweep_params – A dictionary containing the values to vary with the format
sweep_params['Short/Pretty-print Name'] = (model.fs.variable_or_param[index], lower_limit, upper_limit, num_samples). A uniform number of samplesnum_sampleswill be take between thelower_limitandupper_limit.outputs – An optional dictionary containing “short names” as keys and and Pyomo objects on
modelwhose values to report as values. E.g.,outputs['Short/Pretty-print Name'] = model.fs.variable_or_expression_to_report. If not provided, i.e., outputs = None, the default behavior is to save all model variables, parameters, and expressions which provides very thorough results at the cost of large file sizes.csv_results_file_name (optional) – The path and file name to write a csv file. The default None does not write a csv file.
h5_results_file_name (optional) – The path and file name to write a h5 file. The default None does not write a file. Writing an h5 file will also create a companion text file {h5_results_file_name}.txt which contains the variable names contained within the H5 file.
h5_parent_group_name (optional) – Parent h5 groups for the parameter sweep inputs and outputs to be embedded in. The default is None and it accepts a string for the h5 group.
optimize_function (optional) – A user-defined function to perform the optimization of flowsheet
modeland loads the results back intomodel. The first argument of this function ismodel. The default uses the default IDAES solver, raising an exception if the termination condition is not optimal.optimize_kwargs (optional) – Dictionary of kwargs to pass into every call to
optimize_function. The first arg will always bemodel, e.g.,optimize_function(model, **optimize_kwargs). The default uses no kwargs.reinitialize_function (optional) – A user-defined function to perform the re-initialize the flowsheet
modelif the first call tooptimize_functionfails for any reason. Afterreinitialize_function, the parameter sweep tool will immediately calloptimize_functionagain.reinitialize_kwargs (optional) – Dictionary or kwargs to pass into every call to
reinitialize_function. The first arg will always bemodel, e.g.,reinitialize_function(model, **reinitialize_kwargs). The default uses no kwargs.reinitialize_before_sweep (optional) – Boolean option to reinitialize the flow sheet model before every parameter sweep realization. The default is False. Note the parameter sweep model will try to reinitialize the solve regardless of the option if the run fails.
probe_function (optional) – A user-defined function that can cheaply check if a current model configuration is solvable without actually reinitializing or solving.
debugging_data_dir (optional) – Save results on a per-process basis for parallel debugging purposes. If None no debugging data will be saved.
interpolate_nan_outputs (optional) – When the parameter sweep has finished, interior values of np.nan will be replaced with a value obtained via a linear interpolation of their surrounding valid neighbors. If true, a second output file with the extension “_clean” will be saved alongside the raw (un-interpolated) values.
num_samples (optional) – If the user is using sampling techniques rather than a linear grid of values, they need to set the required number of samples. This is the guaranteed number of solves that the user requires.
seed (optional) – If the user is using a random sampling technique, this sets the seed
- Returns:
- A list were the first N columns are the values of the parameters passed
by
sweep_paramsand the remaining columns are the values of the simulation identified by theoutputsargument.
- Return type:
save_data
- parameter_sweep.functions.differential_parameter_sweep(build_model, build_sweep_params, build_differential_sweep_specs, build_outputs=None, csv_results_file_name=None, h5_results_file_name=None, h5_parent_group_name=None, optimize_function=None, optimize_kwargs=None, initialize_function=None, initialize_kwargs=None, initialize_before_sweep=False, probe_function=None, debugging_data_dir=None, interpolate_nan_outputs=False, num_samples=None, num_diff_samples=1, seed=None, guarantee_solves=False)
This function is similar to the parameter_sweep function for exploring the parameter space while guranteeing a required number of solves. If provided, writes single CSV file to
results_filewith all inputs and resulting outputs.- Parameters:
model – A Pyomo ConcreteModel containing a watertap flowsheet, for best results it should be initialized before being passed to this function.
sweep_params – A dictionary containing the values to vary with the format
sweep_params['Short/Pretty-print Name'] = (model.fs.variable_or_param[index], lower_limit, upper_limit, num_samples). A uniform number of samplesnum_sampleswill be take between thelower_limitandupper_limit.differential_sweep_specs – A specification dictionary that contains details for how to construct the parameter sweep dictionary for differential sweep. This is a nested dictionary where the first level denotes the variable names for which the differential sweep needs to be carried out. The second level denotes various options to be used for wach variable. The number of samples for each differential sweep is specified while initializing the DifferentialParameterSweep object wsing the keyword num_diff_samples e.g.
highlight:: (..) – {“fs.a”: {“diff_mode”: “sum”, “diff_sample_type”: NormalSample, “std_dev”: 0.01, “pyomo_object”: m.fs.input[“a”]}, “fs.b”: {“diff_mode”: “product”, “diff_sample_type”: UniformSample, “relative_lb”: 0.01, “relative_ub”: 0.01, “pyomo_object”: m.fs.input[“b”]}, “fs.c”: {“diff_mode”: “sum”, “diff_sample_type”: GeomSample, “relative_lb”: 0.01, “relative_ub”: 10.0, “pyomo_object”: m.fs.input[“c”]}}
outputs (optional) – An optional dictionary containing “short names” as keys and and Pyomo objects on
modelwhose values to report as values. E.g.,outputs['Short/Pretty-print Name'] = model.fs.variable_or_expression_to_report. If not provided, i.e., outputs = None, the default behavior is to save all model variables, parameters, and expressions which provides very thorough results at the cost of large file sizes.csv_results_file_name (optional) – The path and file name to write a csv file. The default None does not write a csv file.
h5_results_file_name (optional) – The path and file name to write a h5 file. The default None does not write a file. Writing an h5 file will also create a companion text file {h5_results_file_name}.txt which contains the variable names contained within the H5 file.
h5_parent_group_name (optional) – Parent h5 groups for the parameter sweep inputs and outputs to be embedded in. The default is None and it accepts a string for the h5 group.
optimize_function (optional) – A user-defined function to perform the optimization of flowsheet
modeland loads the results back intomodel. The first argument of this function ismodel. The default uses the default IDAES solver, raising an exception if the termination condition is not optimal.optimize_kwargs (optional) – Dictionary of kwargs to pass into every call to
optimize_function. The first arg will always bemodel, e.g.,optimize_function(model, **optimize_kwargs). The default uses no kwargs.reinitialize_function (optional) – A user-defined function to perform the re-initialize the flowsheet
modelif the first call tooptimize_functionfails for any reason. Afterreinitialize_function, the parameter sweep tool will immediately calloptimize_functionagain.reinitialize_kwargs (optional) – Dictionary or kwargs to pass into every call to
reinitialize_function. The first arg will always bemodel, e.g.,reinitialize_function(model, **reinitialize_kwargs). The default uses no kwargs.reinitialize_before_sweep (optional) – Boolean option to reinitialize the flow sheet model before every parameter sweep realization. The default is False. Note the parameter sweep model will try to reinitialize the solve regardless of the option if the run fails.
probe_function (optional) – A user-defined function that can cheaply check if a current model configuration is solvable without actually reinitializing or solving.
debugging_data_dir (optional) – Save results on a per-process basis for parallel debugging purposes. If None no debugging data will be saved.
interpolate_nan_outputs (optional) – When the parameter sweep has finished, interior values of np.nan will be replaced with a value obtained via a linear interpolation of their surrounding valid neighbors. If true, a second output file with the extension “_clean” will be saved alongside the raw (un-interpolated) values.
num_samples (optional) – If the user is using sampling techniques rather than a grid of values, they need to set the required number of samples. This is the number of base solves that the user desires. The differential sweep will be performed on these base solves.
num_diff_samples (optional) – Number of samples for the differential sweep at a given base value.
seed (optional) – If the user is using a random sampling technique, this sets the seed
- Returns:
- A list were the first N columns are the values of the parameters passed
by
sweep_paramsand the remaining columns are the values of the simulation identified by theoutputsargument.
- Return type:
save_data