iam-git / WellMet (public) (License: MIT) (since 2021-08-31) (hash sha1)
WellMet is pure Python framework for spatial structural reliability analysis. Or, more specifically, for "failure probability estimation and detection of failure surfaces by adaptive sequential decomposition of the design domain".
List of commits:
Subject Hash Author Date (UTC)
plot: messages fix 336481a61c2d8ac302437b65f641c7d39767c7ea I am 2020-11-04 02:32:08
plot: no more that annoying error message 3929e09841abea504e152935bb6009a57eb8f7a9 I am 2020-11-04 01:24:50
qt_plot.SimpleSimplexEstimationGraph: context menu reworked 28eed9a1b3dad2e3d4441383640e83312c7fac9c I am 2020-11-04 01:13:14
qt_plot: start in box's tri_space by default 909b86f0cb63713bbc02028e93cfbbea1f53071c I am 2020-11-03 19:40:34
qt_plot: ConvexHull2D added bc95406166c081db1df39c60099b908bf24aa16e I am 2020-11-03 19:33:28
dicebox.Chrt.assess_candidates: hračky s hustotama 0fa8f1fe51cebbca7010f3c8cda13525dfbb8fd6 I am 2020-11-03 03:38:52
dicebox: get_pf_estimations() fix 6eda04f0abf77b2586b599dd72c82e438464be4d I am 2020-11-03 02:21:37
dicebox: Erjee class added ef1a9e5b9c0de5d842e2580d3fe7c669d68d95f5 I am 2020-11-03 01:16:04
dicebox.Chrt: .get_pf_estimation() added 7b6685587ad2d7922ae12520c9aede226febe219 I am 2020-10-27 16:05:32
simplex.Shull: нельзя так просто взять и написать IS интегровалку 128ee86c97c82e555fb8b94a90eaa071f873737a I am 2020-10-27 16:03:07
simplex.Shull: move sball sampling distribution to the conter of convex_hull 5703fa4c8e4e70965040e9381cf888220ac543dc I am 2020-10-26 21:03:34
gl_plot: show first 3 dims of nD problems eedca2d89211340a8c2f1131b35c83c65f8f3bc7 Alex 2020-10-26 18:38:21
dicebox.Chrt: explore .convex_hull for gl_plot f2b7777c01638a72b8ca3b38aa3d75bfd55bbdc0 Alex 2020-10-26 18:37:17
gl_plot.ConvexHull: ConvexHull reabilitation 188903a3b14611f8a36d22120fc5fd398d7a79b2 Alex 2020-10-26 17:46:32
blackbox.OptimizedCensoringSampling: double adding to ConvexHull fix (only historical meaning) ddd2fbdf40aed2840a66685e30c6e3aa8078b11f Alex 2020-10-26 17:42:24
restore blackbox version from 16.9.20 5947a853d65c32afaf5151a9b04e738f3c27fbeb Alex 2020-10-26 17:12:00
dicebox: add fee and fee2 criteria 54b3e5bcc54f17fa5695653a73e66a8d0f9d84b1 I am 2020-10-25 21:31:37
simplex.Shull: dirty hack to eliminate looping at very beginnig, where Shull cannot hit convex_hull 792607729c198940b8b8c7bece5be846f41a351e I am 2020-10-25 18:14:29
f_models: 1D input error fix 022d2024ff3a3114c8e73c977892992cdb6e0512 I am 2020-10-25 09:20:12
qt_plot: draw boundaries and circles even in nD (don't ask me about its meaning) 96dd44b3c7822dde2de6465663ce90e5a95742f6 I am 2020-10-24 20:09:17
Commit 336481a61c2d8ac302437b65f641c7d39767c7ea - plot: messages fix
Author: I am
Author date (UTC): 2020-11-04 02:32
Committer name: I am
Committer date (UTC): 2020-11-04 02:32
Parent(s): 3929e09841abea504e152935bb6009a57eb8f7a9
Signer:
Signing key:
Signing status: N
Tree: 4b2adb6532dab9d0e6a5baa0399f5bff36a0f9c5
File Lines added Lines deleted
plot.py 8 8
File plot.py changed (mode: 100644) (index 005e45a..993a88f)
... ... try:# gnuplot
16 16 from . import gp_plot from . import gp_plot
17 17 plot2D = gp_plot.gp_plot plot2D = gp_plot.gp_plot
18 18 except BaseException as e: except BaseException as e:
19 error_str = "plot2D import error: " + repr(e)
20 plot2D = lambda *args, **kwargs:print(error_str)
19 plot2D_error_str = "plot2D import error: " + repr(e)
20 plot2D = lambda *args, **kwargs:print(plot2D_error_str)
21 21
22 22 try:# plot.ly try:# plot.ly
23 23 from . import plotly_plot from . import plotly_plot
 
... ... try:# matplotlib
30 30 from . import mplot from . import mplot
31 31 plot3D = mplot.plot3D plot3D = mplot.plot3D
32 32 except BaseException as e: except BaseException as e:
33 error_str = "plot3D import error: " + repr(e)
34 plot3D = lambda *args, **kwargs:print(error_str)
33 plot3D_error_str = "plot3D import error: " + repr(e)
34 plot3D = lambda *args, **kwargs:print(plot3D_error_str)
35 35
36 36 try: # pyqtgraph try: # pyqtgraph
37 37 from . import qt_plot from . import qt_plot
38 38 show2D = qt_plot.qt_gui_plot_2d show2D = qt_plot.qt_gui_plot_2d
39 39 except BaseException as e: except BaseException as e:
40 error_str = "show2D import error: " + repr(e)
41 show2D = lambda *args, **kwargs:print(error_str)
40 show2D_error_str = "show2D import error: " + repr(e)
41 show2D = lambda *args, **kwargs:print(show2D_error_str)
42 42
43 43 #č tohle vůbec nemusí bežet všude #č tohle vůbec nemusí bežet všude
44 44 try: # pyqtgraph try: # pyqtgraph
45 45 from . import gl_plot from . import gl_plot
46 46 show3D = gl_plot.qt_gui_plot_3d show3D = gl_plot.qt_gui_plot_3d
47 47 except BaseException as e: except BaseException as e:
48 error_str = "show3D import error: " + repr(e)
49 show3D = lambda *args, **kwargs:print(error_str)
48 show3D_error_str = "show3D import error: " + repr(e)
49 show3D = lambda *args, **kwargs:print(show3D_error_str)
50 50
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/iam-git/WellMet

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/iam-git/WellMet

Clone this repository using git:
git clone git://git.rocketgit.com/user/iam-git/WellMet

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main