Skip to content
Snippets Groups Projects
Commit 4f435fcc authored by kohlhaasrebecca's avatar kohlhaasrebecca
Browse files

Minimal test for umbridge model

Added a minimal test based on pylink classification. More work needed for higher-dim. model outputs here
parent 7e936e61
No related branches found
No related tags found
4 merge requests!22Update bvr in branch,!17Version 1.0.0,!16Test,!14Rebase changes for tests, decoupling and new features
Showing
with 30 additions and 101 deletions
% Input file for the simply supported beam model
<X1> % b in m
<X2> % h in m
5 % L in m
<X3> % E in Pa
<X4> % p in N/m
% Input file for the simply supported beam model % Input file for the simply supported beam model
1.4655e-01 % b in m 1.5557e-01 % b in m
3.3846e-01 % h in m 2.8052e-01 % h in m
5 % L in m 5 % L in m
3.3176e+10 % E in Pa 2.2558e+10 % E in Pa
1.0602e+04 % p in N/m 9.2858e+03 % p in N/m
% Input file for the simply supported beam model
1.5840e-01 % b in m
3.0670e-01 % h in m
5 % L in m
3.2339e+10 % E in Pa
8.4849e+03 % p in N/m
% Input file for the simply supported beam model
1.4481e-01 % b in m
3.1684e-01 % h in m
5 % L in m
3.1333e+10 % E in Pa
1.0731e+04 % p in N/m
% Input file for the simply supported beam model
1.5144e-01 % b in m
2.9167e-01 % h in m
5 % L in m
2.3100e+10 % E in Pa
1.1144e+04 % p in N/m
% Input file for the simply supported beam model
1.5096e-01 % b in m
3.0226e-01 % h in m
5 % L in m
2.7474e+10 % E in Pa
1.0793e+04 % p in N/m
% Input file for the simply supported beam model
1.5213e-01 % b in m
3.3620e-01 % h in m
5 % L in m
2.8416e+10 % E in Pa
9.9956e+03 % p in N/m
% Input file for the simply supported beam model
1.4885e-01 % b in m
2.9753e-01 % h in m
5 % L in m
2.6591e+10 % E in Pa
1.0295e+04 % p in N/m
% Input file for the simply supported beam model
1.6154e-01 % b in m
3.1872e-01 % h in m
5 % L in m
3.3120e+10 % E in Pa
1.0979e+04 % p in N/m
% Input file for the simply supported beam model
1.4694e-01 % b in m
2.7683e-01 % h in m
5 % L in m
3.0449e+10 % E in Pa
8.2768e+03 % p in N/m
% Input file for the simply supported beam model
1.2675e-01 % b in m
2.8491e-01 % h in m
5 % L in m
2.1823e+10 % E in Pa
8.3106e+03 % p in N/m
% Input file for the simply supported beam model
1.4293e-01 % b in m
2.8763e-01 % h in m
5 % L in m
3.4093e+10 % E in Pa
1.1213e+04 % p in N/m
% Input file for the simply supported beam model
1.4975e-01 % b in m
3.0996e-01 % h in m
5 % L in m
3.7285e+10 % E in Pa
8.6074e+03 % p in N/m
% Input file for the simply supported beam model
1.4510e-01 % b in m
2.7309e-01 % h in m
5 % L in m
4.0027e+10 % E in Pa
8.1605e+03 % p in N/m
% Input file for the simply supported beam model
1.4667e-01 % b in m
3.1306e-01 % h in m
5 % L in m
3.3472e+10 % E in Pa
1.0376e+04 % p in N/m
% Input file for the simply supported beam model
1.5249e-01 % b in m
3.2183e-01 % h in m
5 % L in m
3.1622e+10 % E in Pa
9.1722e+03 % p in N/m
% Input file for the simply supported beam model
1.3551e-01 % b in m
2.9724e-01 % h in m
5 % L in m
3.3928e+10 % E in Pa
8.9118e+03 % p in N/m
...@@ -45,7 +45,7 @@ matplotlib.use('agg') ...@@ -45,7 +45,7 @@ matplotlib.use('agg')
from multiprocessing import set_start_method from multiprocessing import set_start_method
if __name__ == "__main__": if __name__ == "__main__":
set_start_method('spawn', force = True) #set_start_method('fork', force = True)
# ===================================================== # =====================================================
# ============= COMPUTATIONAL MODEL ================ # ============= COMPUTATIONAL MODEL ================
......
# -*- coding: utf-8 -*-
__version__ = "0.0.5"
from .pylink.pylink import PyLinkForwardModel
from .surrogate_models.surrogate_models import MetaModel
#from .surrogate_models.meta_model_engine import MetaModelEngine
from .surrogate_models.engine import Engine
from .surrogate_models.inputs import Input
from .post_processing.post_processing import PostProcessing
from .bayes_inference.bayes_inference import BayesInference
from .bayes_inference.bayes_model_comparison import BayesModelComparison
from .bayes_inference.discrepancy import Discrepancy
__all__ = [
"__version__",
"PyLinkForwardModel",
"Input",
"Discrepancy",
"MetaModel",
#"MetaModelEngine",
"Engine",
"PostProcessing",
"BayesInference",
"BayesModelComparison"
]
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment