diff --git a/docs/source/conf.py b/docs/source/conf.py index 3bf47ccbf..eedd76bf5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -168,7 +168,6 @@ # Add any paths that contain custom themes here, relative to this directory. # html_theme_path = [] # html_theme_path = ['_themes', ] -html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # The name for this set of Sphinx documents. # " v documentation" by default. diff --git a/examples/test_files/Smoke_Tests/fs_smoke_test.py b/examples/test_files/Smoke_Tests/fs_smoke_test.py index f308f81b3..739200dc2 100644 --- a/examples/test_files/Smoke_Tests/fs_smoke_test.py +++ b/examples/test_files/Smoke_Tests/fs_smoke_test.py @@ -164,7 +164,7 @@ def add_UQ_yes(MainWin=MainWin, getButton=getButton, timers=timers): def uq_sampling_scheme_MC(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme with Monte Carlo, stops timer once window comes up""" + """Setup up an ensemble sampling scheme with Monte Carlo, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Monte Carlo" @@ -188,7 +188,7 @@ def uq_sampling_scheme_MC(MainWin=MainWin, getButton=getButton, timers=timers, g def uq_sampling_scheme_QMC(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme with Quasi Monte Carlo, stops timer once window comes up""" + """Setup up an ensemble sampling scheme with Quasi Monte Carlo, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Quasi Monte Carlo/Lognormal Dist" @@ -214,7 +214,7 @@ def uq_sampling_scheme_QMC(MainWin=MainWin, getButton=getButton, timers=timers, def uq_sampling_scheme_LH(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme with Latin Hypercube, stops timer once window comes up""" + """Setup up an ensemble sampling scheme with Latin Hypercube, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Latin Hypercube/Triangle Distribution" @@ -238,7 +238,7 @@ def uq_sampling_scheme_LH(MainWin=MainWin, getButton=getButton, timers=timers, g def uq_sampling_scheme_OA(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme with Orthogonal Array, stops timer once window comes up""" + """Setup up an ensemble sampling scheme with Orthogonal Array, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Orthogonal Array/Gamma Distribution" @@ -262,7 +262,7 @@ def uq_sampling_scheme_OA(MainWin=MainWin, getButton=getButton, timers=timers, g def uq_sampling_scheme_MD(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme with Morris Design, stops timer once window comes up""" + """Setup up an ensemble sampling scheme with Morris Design, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Morris Design/Beta Distribution" @@ -288,7 +288,7 @@ def uq_sampling_scheme_MD(MainWin=MainWin, getButton=getButton, timers=timers, g def uq_sampling_scheme_GMD(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme with Generalized Morris Design, stops timer once window comes up""" + """Setup up an ensemble sampling scheme with Generalized Morris Design, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Generalized Morris Design/Exponential Distribution" @@ -314,7 +314,7 @@ def uq_sampling_scheme_GMD(MainWin=MainWin, getButton=getButton, timers=timers, def uq_sampling_scheme_GS(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme with Gradient Sample, stops timer once window comes up""" + """Setup up an ensemble sampling scheme with Gradient Sample, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Gradient Sample/Weibull Distribution" @@ -340,7 +340,7 @@ def uq_sampling_scheme_GS(MainWin=MainWin, getButton=getButton, timers=timers, g def uq_sampling_scheme_METIS( MainWin=MainWin, getButton=getButton, timers=timers, go=go ): - """Setup up an enseble sampling scheme with METIS, stops timer once window comes up""" + """Setup up an ensemble sampling scheme with METIS, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "METIS" diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test.py b/examples/test_files/Smoke_Tests/optimization_smoke_test.py index 86066217b..5c9ea99a4 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_BFGS.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_BFGS.py index a0a1f0340..adc6d6a89 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_BFGS.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_BFGS.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_COBYLA.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_COBYLA.py index 1b6db0986..6501c9d17 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_COBYLA.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_COBYLA.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_CRS2.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_CRS2.py index 147f93bff..888943ce6 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_CRS2.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_CRS2.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT-L-RAND.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT-L-RAND.py index 23cf23493..a1faeaf07 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT-L-RAND.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT-L-RAND.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT-L.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT-L.py index 494ac8c01..86db21d03 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT-L.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT-L.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT.py index 26746697c..3f8a6effc 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_DIRECT.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_ESCH.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_ESCH.py index 432004781..38c692571 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_ESCH.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_ESCH.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_ISRES.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_ISRES.py index d6150e2b2..d9d212b4c 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_ISRES.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_ISRES.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_NEWUOA.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_NEWUOA.py index 14f30edd9..9eb091938 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_NEWUOA.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_NEWUOA.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_Nelder-Mead.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_Nelder-Mead.py index a81b4d409..278d3355d 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_Nelder-Mead.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_Nelder-Mead.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_OptCMA.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_OptCMA.py index d5961b050..58da22f0b 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_OptCMA.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_OptCMA.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_PE.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_PE.py index 8463a15cf..d457f7de8 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_PE.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_PE.py @@ -139,7 +139,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_PRAXIS.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_PRAXIS.py index a58ed596f..0da8926bf 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_PRAXIS.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_PRAXIS.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_PSUADE.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_PSUADE.py index e10e57d11..460adb66c 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_PSUADE.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_PSUADE.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_SLSQP.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_SLSQP.py index 768dda006..fc23ff76b 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_SLSQP.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_SLSQP.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_Sbplx.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_Sbplx.py index 2efd4d6da..0c9bae689 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_Sbplx.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_Sbplx.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/optimization_smoke_test_constraint.py b/examples/test_files/Smoke_Tests/optimization_smoke_test_constraint.py index ca919342e..b7ff4a3ec 100644 --- a/examples/test_files/Smoke_Tests/optimization_smoke_test_constraint.py +++ b/examples/test_files/Smoke_Tests/optimization_smoke_test_constraint.py @@ -142,7 +142,7 @@ def msg_no(MainWin=MainWin, getButton=getButton, timers=timers): def start_opt_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "optMonitor" in str(type(w)): timers["start_opt_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/smoke_test_01 - Full.py b/examples/test_files/Smoke_Tests/smoke_test_01 - Full.py index 38d44ead0..b2ee56582 100644 --- a/examples/test_files/Smoke_Tests/smoke_test_01 - Full.py +++ b/examples/test_files/Smoke_Tests/smoke_test_01 - Full.py @@ -74,7 +74,7 @@ def add_UQ_okay(MainWin=MainWin, getButton=getButton, timers=timers): def uq_sampling_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "SimSetup" in str(type(w)): timers["uq_sampling_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/smoke_test_01.py b/examples/test_files/Smoke_Tests/smoke_test_01.py index 70a362cfe..429026c7e 100644 --- a/examples/test_files/Smoke_Tests/smoke_test_01.py +++ b/examples/test_files/Smoke_Tests/smoke_test_01.py @@ -74,7 +74,7 @@ def add_UQ_okay(MainWin=MainWin, getButton=getButton, timers=timers): def uq_sampling_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "SimSetup" in str(type(w)): timers["uq_sampling_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/uq_smoke_test_data_analysis.py b/examples/test_files/Smoke_Tests/uq_smoke_test_data_analysis.py index f1cdd1fd0..690a4f758 100644 --- a/examples/test_files/Smoke_Tests/uq_smoke_test_data_analysis.py +++ b/examples/test_files/Smoke_Tests/uq_smoke_test_data_analysis.py @@ -160,7 +160,7 @@ def add_UQ_okay(MainWin=MainWin, getButton=getButton, timers=timers): def uq_sampling_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Set Up Sampling Scheme" diff --git a/examples/test_files/Smoke_Tests/uq_smoke_test_data_visualization.py b/examples/test_files/Smoke_Tests/uq_smoke_test_data_visualization.py index af14784c5..85b3e75b9 100644 --- a/examples/test_files/Smoke_Tests/uq_smoke_test_data_visualization.py +++ b/examples/test_files/Smoke_Tests/uq_smoke_test_data_visualization.py @@ -158,7 +158,7 @@ def add_UQ_okay(MainWin=MainWin, getButton=getButton, timers=timers): def uq_sampling_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Set Up Sampling Scheme" diff --git a/examples/test_files/Smoke_Tests/uq_smoke_test_inference.py b/examples/test_files/Smoke_Tests/uq_smoke_test_inference.py index 753a2678b..779b7ca63 100644 --- a/examples/test_files/Smoke_Tests/uq_smoke_test_inference.py +++ b/examples/test_files/Smoke_Tests/uq_smoke_test_inference.py @@ -162,7 +162,7 @@ def add_UQ_okay(MainWin=MainWin, getButton=getButton, timers=timers): def uq_sampling_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Set Up Sampling Scheme" diff --git a/examples/test_files/Smoke_Tests/uq_smoke_test_input_importance.py b/examples/test_files/Smoke_Tests/uq_smoke_test_input_importance.py index 0f1d00c43..585d91466 100644 --- a/examples/test_files/Smoke_Tests/uq_smoke_test_input_importance.py +++ b/examples/test_files/Smoke_Tests/uq_smoke_test_input_importance.py @@ -158,7 +158,7 @@ def add_UQ_okay(MainWin=MainWin, getButton=getButton, timers=timers): def uq_sampling_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "SimSetup" in str(type(w)): timers["uq_sampling_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/uq_smoke_test_polynomial.py b/examples/test_files/Smoke_Tests/uq_smoke_test_polynomial.py index b7db8af09..b08b3a60a 100644 --- a/examples/test_files/Smoke_Tests/uq_smoke_test_polynomial.py +++ b/examples/test_files/Smoke_Tests/uq_smoke_test_polynomial.py @@ -74,7 +74,7 @@ def add_UQ_okay(MainWin=MainWin, getButton=getButton, timers=timers): def uq_sampling_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "SimSetup" in str(type(w)): timers["uq_sampling_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/uq_smoke_test_response_surface_validation.py b/examples/test_files/Smoke_Tests/uq_smoke_test_response_surface_validation.py index 3b274909c..9d4b2eb6a 100644 --- a/examples/test_files/Smoke_Tests/uq_smoke_test_response_surface_validation.py +++ b/examples/test_files/Smoke_Tests/uq_smoke_test_response_surface_validation.py @@ -158,7 +158,7 @@ def add_UQ_okay(MainWin=MainWin, getButton=getButton, timers=timers): def uq_sampling_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() if "SimSetup" in str(type(w)): timers["uq_sampling_scheme"].stop() diff --git a/examples/test_files/Smoke_Tests/uq_smoke_test_response_surface_visualization.py b/examples/test_files/Smoke_Tests/uq_smoke_test_response_surface_visualization.py index 0f8b21ba2..1b24d6100 100644 --- a/examples/test_files/Smoke_Tests/uq_smoke_test_response_surface_visualization.py +++ b/examples/test_files/Smoke_Tests/uq_smoke_test_response_surface_visualization.py @@ -158,7 +158,7 @@ def add_UQ_okay(MainWin=MainWin, getButton=getButton, timers=timers): def uq_sampling_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Setting up Sampling Scheme" diff --git a/examples/test_files/Smoke_Tests/uq_smoke_test_response_uq_analysis.py b/examples/test_files/Smoke_Tests/uq_smoke_test_response_uq_analysis.py index 8cb986caa..1b9222099 100644 --- a/examples/test_files/Smoke_Tests/uq_smoke_test_response_uq_analysis.py +++ b/examples/test_files/Smoke_Tests/uq_smoke_test_response_uq_analysis.py @@ -160,7 +160,7 @@ def add_UQ_okay(MainWin=MainWin, getButton=getButton, timers=timers): def uq_sampling_scheme(MainWin=MainWin, getButton=getButton, timers=timers, go=go): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" w = MainWin.app.activeWindow() global errorTitle errorTitle = "Latin Hypercube" diff --git a/foqus_lib/gui/main/mainWindow.py b/foqus_lib/gui/main/mainWindow.py index 6c27e4bda..79359e1eb 100644 --- a/foqus_lib/gui/main/mainWindow.py +++ b/foqus_lib/gui/main/mainWindow.py @@ -293,7 +293,7 @@ def enable(self, b): This function enables or disables forms that allow editing of the flowsheet or other session data while something is running in another thread. This is to prevent - inconsitencies when a problem is running but the problem + inconsistencies when a problem is running but the problem or flowsheet have been changed in the meantime ---args--- b: bool true to enable false to disable diff --git a/test/system_test/ui_test_01.py b/test/system_test/ui_test_01.py index c29f39471..67488e7cc 100644 --- a/test/system_test/ui_test_01.py +++ b/test/system_test/ui_test_01.py @@ -157,7 +157,7 @@ def add_UQ_okay(MainWin=MainWin): def uq_sampling_scheme(MainWin=MainWin): - """Setup up an enseble sampling scheme, stops timer once window comes up""" + """Setup up an ensemble sampling scheme, stops timer once window comes up""" global timers, exit_code, getButton, go w = MainWin.app.activeWindow() if "SimSetup" in str(type(w)): @@ -268,7 +268,7 @@ def time_out(): assert self.flowsheet.errorStat == 0 _log.info("SUCCESS: Test03: Flowsheet run") - # 4) Start to add a UQ enseble, but cancel it. + # 4) Start to add a UQ ensemble, but cancel it. MainWin.uqSetupAction.trigger() if not go(): break