├── .gitignore ├── .landscape.yaml ├── .travis.yml ├── AUTHORS.rst ├── CODE-OF-CONDUCT.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.md ├── dakotathon ├── __init__.py ├── bmi.py ├── dakota.py ├── environment │ ├── __init__.py │ ├── base.py │ └── environment.py ├── experiment.py ├── interface │ ├── __init__.py │ ├── base.py │ ├── direct.py │ └── fork.py ├── method │ ├── __init__.py │ ├── base.py │ ├── centered_parameter_study.py │ ├── multidim_parameter_study.py │ ├── polynomial_chaos.py │ ├── psuade_moat.py │ ├── sampling.py │ ├── stoch_collocation.py │ └── vector_parameter_study.py ├── plugins │ ├── __init__.py │ ├── base.py │ └── hydrotrend.py ├── responses │ ├── __init__.py │ ├── base.py │ └── response_functions.py ├── run_component.py ├── run_plugin.py ├── tests │ ├── __init__.py │ ├── data │ │ ├── HYDRO.IN.defaults │ │ ├── HYDRO.IN.dtmpl │ │ ├── HYDRO0.HYPS │ │ ├── dakota.dat │ │ ├── dakota.yaml │ │ ├── default_cps_dakota.yaml │ │ ├── default_mps_dakota.yaml │ │ ├── default_sampling_dakota.yaml │ │ ├── default_vps_dakota.in │ │ ├── default_vps_dakota.yaml │ │ ├── hydrotrend.in.tmpl │ │ ├── parameters.yaml │ │ ├── params.in │ │ ├── results.out │ │ ├── rosenbrock_sampling.in │ │ └── vector_parameter_study.in │ ├── test_dakota.py │ ├── test_environment.py │ ├── test_environment_base.py │ ├── test_experiment.py │ ├── test_interface_base.py │ ├── test_interface_direct.py │ ├── test_interface_fork.py │ ├── test_irf.py │ ├── test_irf_centered_parameter_study.py │ ├── test_irf_multidim_parameter_study.py │ ├── test_irf_polynomial_chaos.py │ ├── test_irf_psuade_moat.py │ ├── test_irf_sampling.py │ ├── test_irf_stoch_collocation.py │ ├── test_irf_vector_parameter_study.py │ ├── test_method_base.py │ ├── test_method_base_uq.py │ ├── test_method_centered_parameter_study.py │ ├── test_method_multidim_parameter_study.py │ ├── test_method_polynomial_chaos.py │ ├── test_method_psuade_moat.py │ ├── test_method_sampling.py │ ├── test_method_stoch_collocation.py │ ├── test_method_vector_parameter_study.py │ ├── test_plugin_base.py │ ├── test_plugin_hydrotrend.py │ ├── test_plugin_hydrotrend_run.py │ ├── test_responses_base.py │ ├── test_responses_response_functions.py │ ├── test_rosenbrock_sampling.py │ ├── test_run_component.py │ ├── test_run_plugin.py │ ├── test_utils.py │ ├── test_variables_base.py │ ├── test_variables_continuous_design.py │ ├── test_variables_normal_uncertain.py │ └── test_variables_uniform_uncertain.py ├── utils.py └── variables │ ├── __init__.py │ ├── base.py │ ├── continuous_design.py │ ├── normal_uncertain.py │ └── uniform_uncertain.py ├── docs ├── Makefile └── source │ ├── _static │ ├── csdms.css │ └── csdms_banner.png │ ├── _templates │ └── layout.html │ ├── analysis_methods.rst │ ├── conf.py │ ├── console_scripts.rst │ ├── dakotathon.bmi.rst │ ├── dakotathon.dakota.rst │ ├── dakotathon.experiment.rst │ ├── dakotathon.utils.rst │ ├── environment.rst │ ├── index.rst │ ├── interfaces.rst │ ├── model_plugins.rst │ ├── responses.rst │ └── variables.rst ├── examples ├── README.md ├── data │ ├── HYDRO0.HYPS │ ├── hydrotrend.in.tmpl │ └── parameters.yaml ├── hydrotrend-centered-parameter-study.ipynb ├── hydrotrend-polynomial-chaos-study.ipynb ├── hydrotrend-sampling-study.ipynb ├── hydrotrend-stochastic-collocation-study.ipynb ├── pymt-frostnumbermodel-multidim-parameter-study.py ├── pymt-frostnumbermodel-vector-parameter-study.py ├── pymt-hydrotrend-centered-parameter-study.py └── rosenbrock-vector-parameter-study.ipynb ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/.landscape.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/CODE-OF-CONDUCT.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/README.md -------------------------------------------------------------------------------- /dakotathon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/__init__.py -------------------------------------------------------------------------------- /dakotathon/bmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/bmi.py -------------------------------------------------------------------------------- /dakotathon/dakota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/dakota.py -------------------------------------------------------------------------------- /dakotathon/environment/__init__.py: -------------------------------------------------------------------------------- 1 | """Top-level settings for Dakota.""" 2 | -------------------------------------------------------------------------------- /dakotathon/environment/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/environment/base.py -------------------------------------------------------------------------------- /dakotathon/environment/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/environment/environment.py -------------------------------------------------------------------------------- /dakotathon/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/experiment.py -------------------------------------------------------------------------------- /dakotathon/interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/interface/__init__.py -------------------------------------------------------------------------------- /dakotathon/interface/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/interface/base.py -------------------------------------------------------------------------------- /dakotathon/interface/direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/interface/direct.py -------------------------------------------------------------------------------- /dakotathon/interface/fork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/interface/fork.py -------------------------------------------------------------------------------- /dakotathon/method/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/method/__init__.py -------------------------------------------------------------------------------- /dakotathon/method/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/method/base.py -------------------------------------------------------------------------------- /dakotathon/method/centered_parameter_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/method/centered_parameter_study.py -------------------------------------------------------------------------------- /dakotathon/method/multidim_parameter_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/method/multidim_parameter_study.py -------------------------------------------------------------------------------- /dakotathon/method/polynomial_chaos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/method/polynomial_chaos.py -------------------------------------------------------------------------------- /dakotathon/method/psuade_moat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/method/psuade_moat.py -------------------------------------------------------------------------------- /dakotathon/method/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/method/sampling.py -------------------------------------------------------------------------------- /dakotathon/method/stoch_collocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/method/stoch_collocation.py -------------------------------------------------------------------------------- /dakotathon/method/vector_parameter_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/method/vector_parameter_study.py -------------------------------------------------------------------------------- /dakotathon/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | """Components that can be called by Dakota.""" 2 | -------------------------------------------------------------------------------- /dakotathon/plugins/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/plugins/base.py -------------------------------------------------------------------------------- /dakotathon/plugins/hydrotrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/plugins/hydrotrend.py -------------------------------------------------------------------------------- /dakotathon/responses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/responses/__init__.py -------------------------------------------------------------------------------- /dakotathon/responses/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/responses/base.py -------------------------------------------------------------------------------- /dakotathon/responses/response_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/responses/response_functions.py -------------------------------------------------------------------------------- /dakotathon/run_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/run_component.py -------------------------------------------------------------------------------- /dakotathon/run_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/run_plugin.py -------------------------------------------------------------------------------- /dakotathon/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/__init__.py -------------------------------------------------------------------------------- /dakotathon/tests/data/HYDRO.IN.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/HYDRO.IN.defaults -------------------------------------------------------------------------------- /dakotathon/tests/data/HYDRO.IN.dtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/HYDRO.IN.dtmpl -------------------------------------------------------------------------------- /dakotathon/tests/data/HYDRO0.HYPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/HYDRO0.HYPS -------------------------------------------------------------------------------- /dakotathon/tests/data/dakota.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/dakota.dat -------------------------------------------------------------------------------- /dakotathon/tests/data/dakota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/dakota.yaml -------------------------------------------------------------------------------- /dakotathon/tests/data/default_cps_dakota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/default_cps_dakota.yaml -------------------------------------------------------------------------------- /dakotathon/tests/data/default_mps_dakota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/default_mps_dakota.yaml -------------------------------------------------------------------------------- /dakotathon/tests/data/default_sampling_dakota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/default_sampling_dakota.yaml -------------------------------------------------------------------------------- /dakotathon/tests/data/default_vps_dakota.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/default_vps_dakota.in -------------------------------------------------------------------------------- /dakotathon/tests/data/default_vps_dakota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/default_vps_dakota.yaml -------------------------------------------------------------------------------- /dakotathon/tests/data/hydrotrend.in.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/hydrotrend.in.tmpl -------------------------------------------------------------------------------- /dakotathon/tests/data/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/parameters.yaml -------------------------------------------------------------------------------- /dakotathon/tests/data/params.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/params.in -------------------------------------------------------------------------------- /dakotathon/tests/data/results.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/results.out -------------------------------------------------------------------------------- /dakotathon/tests/data/rosenbrock_sampling.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/rosenbrock_sampling.in -------------------------------------------------------------------------------- /dakotathon/tests/data/vector_parameter_study.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/data/vector_parameter_study.in -------------------------------------------------------------------------------- /dakotathon/tests/test_dakota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_dakota.py -------------------------------------------------------------------------------- /dakotathon/tests/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_environment.py -------------------------------------------------------------------------------- /dakotathon/tests/test_environment_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_environment_base.py -------------------------------------------------------------------------------- /dakotathon/tests/test_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_experiment.py -------------------------------------------------------------------------------- /dakotathon/tests/test_interface_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_interface_base.py -------------------------------------------------------------------------------- /dakotathon/tests/test_interface_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_interface_direct.py -------------------------------------------------------------------------------- /dakotathon/tests/test_interface_fork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_interface_fork.py -------------------------------------------------------------------------------- /dakotathon/tests/test_irf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_irf.py -------------------------------------------------------------------------------- /dakotathon/tests/test_irf_centered_parameter_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_irf_centered_parameter_study.py -------------------------------------------------------------------------------- /dakotathon/tests/test_irf_multidim_parameter_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_irf_multidim_parameter_study.py -------------------------------------------------------------------------------- /dakotathon/tests/test_irf_polynomial_chaos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_irf_polynomial_chaos.py -------------------------------------------------------------------------------- /dakotathon/tests/test_irf_psuade_moat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_irf_psuade_moat.py -------------------------------------------------------------------------------- /dakotathon/tests/test_irf_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_irf_sampling.py -------------------------------------------------------------------------------- /dakotathon/tests/test_irf_stoch_collocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_irf_stoch_collocation.py -------------------------------------------------------------------------------- /dakotathon/tests/test_irf_vector_parameter_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_irf_vector_parameter_study.py -------------------------------------------------------------------------------- /dakotathon/tests/test_method_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_method_base.py -------------------------------------------------------------------------------- /dakotathon/tests/test_method_base_uq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_method_base_uq.py -------------------------------------------------------------------------------- /dakotathon/tests/test_method_centered_parameter_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_method_centered_parameter_study.py -------------------------------------------------------------------------------- /dakotathon/tests/test_method_multidim_parameter_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_method_multidim_parameter_study.py -------------------------------------------------------------------------------- /dakotathon/tests/test_method_polynomial_chaos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_method_polynomial_chaos.py -------------------------------------------------------------------------------- /dakotathon/tests/test_method_psuade_moat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_method_psuade_moat.py -------------------------------------------------------------------------------- /dakotathon/tests/test_method_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_method_sampling.py -------------------------------------------------------------------------------- /dakotathon/tests/test_method_stoch_collocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_method_stoch_collocation.py -------------------------------------------------------------------------------- /dakotathon/tests/test_method_vector_parameter_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_method_vector_parameter_study.py -------------------------------------------------------------------------------- /dakotathon/tests/test_plugin_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_plugin_base.py -------------------------------------------------------------------------------- /dakotathon/tests/test_plugin_hydrotrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_plugin_hydrotrend.py -------------------------------------------------------------------------------- /dakotathon/tests/test_plugin_hydrotrend_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_plugin_hydrotrend_run.py -------------------------------------------------------------------------------- /dakotathon/tests/test_responses_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_responses_base.py -------------------------------------------------------------------------------- /dakotathon/tests/test_responses_response_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_responses_response_functions.py -------------------------------------------------------------------------------- /dakotathon/tests/test_rosenbrock_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_rosenbrock_sampling.py -------------------------------------------------------------------------------- /dakotathon/tests/test_run_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_run_component.py -------------------------------------------------------------------------------- /dakotathon/tests/test_run_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_run_plugin.py -------------------------------------------------------------------------------- /dakotathon/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_utils.py -------------------------------------------------------------------------------- /dakotathon/tests/test_variables_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_variables_base.py -------------------------------------------------------------------------------- /dakotathon/tests/test_variables_continuous_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_variables_continuous_design.py -------------------------------------------------------------------------------- /dakotathon/tests/test_variables_normal_uncertain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_variables_normal_uncertain.py -------------------------------------------------------------------------------- /dakotathon/tests/test_variables_uniform_uncertain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/tests/test_variables_uniform_uncertain.py -------------------------------------------------------------------------------- /dakotathon/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/utils.py -------------------------------------------------------------------------------- /dakotathon/variables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/variables/__init__.py -------------------------------------------------------------------------------- /dakotathon/variables/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/variables/base.py -------------------------------------------------------------------------------- /dakotathon/variables/continuous_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/variables/continuous_design.py -------------------------------------------------------------------------------- /dakotathon/variables/normal_uncertain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/variables/normal_uncertain.py -------------------------------------------------------------------------------- /dakotathon/variables/uniform_uncertain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/dakotathon/variables/uniform_uncertain.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/_static/csdms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/_static/csdms.css -------------------------------------------------------------------------------- /docs/source/_static/csdms_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/_static/csdms_banner.png -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/analysis_methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/analysis_methods.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/console_scripts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/console_scripts.rst -------------------------------------------------------------------------------- /docs/source/dakotathon.bmi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/dakotathon.bmi.rst -------------------------------------------------------------------------------- /docs/source/dakotathon.dakota.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/dakotathon.dakota.rst -------------------------------------------------------------------------------- /docs/source/dakotathon.experiment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/dakotathon.experiment.rst -------------------------------------------------------------------------------- /docs/source/dakotathon.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/dakotathon.utils.rst -------------------------------------------------------------------------------- /docs/source/environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/environment.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/interfaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/interfaces.rst -------------------------------------------------------------------------------- /docs/source/model_plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/model_plugins.rst -------------------------------------------------------------------------------- /docs/source/responses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/responses.rst -------------------------------------------------------------------------------- /docs/source/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/docs/source/variables.rst -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/data/HYDRO0.HYPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/data/HYDRO0.HYPS -------------------------------------------------------------------------------- /examples/data/hydrotrend.in.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/data/hydrotrend.in.tmpl -------------------------------------------------------------------------------- /examples/data/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/data/parameters.yaml -------------------------------------------------------------------------------- /examples/hydrotrend-centered-parameter-study.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/hydrotrend-centered-parameter-study.ipynb -------------------------------------------------------------------------------- /examples/hydrotrend-polynomial-chaos-study.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/hydrotrend-polynomial-chaos-study.ipynb -------------------------------------------------------------------------------- /examples/hydrotrend-sampling-study.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/hydrotrend-sampling-study.ipynb -------------------------------------------------------------------------------- /examples/hydrotrend-stochastic-collocation-study.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/hydrotrend-stochastic-collocation-study.ipynb -------------------------------------------------------------------------------- /examples/pymt-frostnumbermodel-multidim-parameter-study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/pymt-frostnumbermodel-multidim-parameter-study.py -------------------------------------------------------------------------------- /examples/pymt-frostnumbermodel-vector-parameter-study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/pymt-frostnumbermodel-vector-parameter-study.py -------------------------------------------------------------------------------- /examples/pymt-hydrotrend-centered-parameter-study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/pymt-hydrotrend-centered-parameter-study.py -------------------------------------------------------------------------------- /examples/rosenbrock-vector-parameter-study.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/examples/rosenbrock-vector-parameter-study.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pyyaml 3 | nose 4 | bmipy <2.0 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/dakotathon/HEAD/setup.py --------------------------------------------------------------------------------